This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/routes/profileCard.vue

42 lines
1.2 KiB
Vue
Raw Permalink Normal View History

2021-07-10 07:46:29 -07:00
<template>
2022-01-04 07:04:37 -08:00
<Profile v-if="profile" :user="user" :profile="profile" class="pb-3 mt-5" expandLinks>
2021-07-10 07:46:29 -07:00
<nuxt-link to="/">
<h1 class="text-nowrap h5">
2022-01-25 13:40:43 -08:00
<Logo/>
<T>domain</T><span v-if="profile">/@{{user.username}}</span>
2021-07-10 07:46:29 -07:00
</h1>
</nuxt-link>
</Profile>
<NotFound v-else/>
</template>
<script>
import { head } from "../src/helpers";
export default {
layout: 'basic',
async asyncData({ app, route }) {
return {
user: await app.$axios.$get(`/profile/get/${encodeURIComponent(route.params.pathMatch)}`),
2021-07-10 07:46:29 -07:00
};
},
computed: {
profile() {
for (let locale in this.user.profiles) {
2021-07-10 07:46:29 -07:00
if (locale === this.config.locale) {
return this.user.profiles[locale];
2021-07-10 07:46:29 -07:00
}
}
return null;
},
},
head() {
return head({
title: `@${this.$route.params.pathMatch}`,
banner: `api/banner/@${this.$route.params.pathMatch}.png`,
});
},
}
</script>