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/components/Authors.vue

45 lines
1.4 KiB
Vue
Raw Normal View History

2020-09-23 12:16:56 -07:00
<template>
2021-01-12 11:06:59 -08:00
<ul class="list-unstyled">
<li class="mb-2">
2021-06-27 04:03:02 -07:00
<Icon v="collective-logo.svg" class="invertible"/>
2021-01-12 11:06:59 -08:00
<nuxt-link :to="`/${config.contact.team.route}`">
<T>contact.team.name</T>
2020-12-29 09:44:06 -08:00
</nuxt-link>
2020-09-23 12:16:56 -07:00
</li>
2021-01-12 11:06:59 -08:00
<li v-if="authors === undefined">
<Spinner/>
</li>
<template v-else>
<li v-for="author in authors" class="mb-2">
2021-04-06 11:48:44 -07:00
<Icon :v="author.group ? 'users' : 'user'"/>
<a v-if="author.link" :href="author.link" target="_blank" rel="noopener">
<Spelling :text="author.footerName"/>
</a>
<span v-else>
<Spelling :text="author.footerName"/>
</span>
<nuxt-link v-if="author.username" :to="`/@${author.username}`" class="badge bg-light text-dark border">
2021-01-12 11:06:59 -08:00
@{{author.username}}
</nuxt-link>
2021-04-06 11:48:44 -07:00
<br v-if="author.footerAreas"/>
<small v-if="author.footerAreas">
2021-01-12 11:06:59 -08:00
{{author.footerAreas.replace(/,/g, ', ')}}
</small>
</li>
</template>
2020-09-23 12:16:56 -07:00
</ul>
</template>
<script>
export default {
2021-01-12 11:06:59 -08:00
data() {
return {
authors: undefined,
}
},
async mounted() {
this.authors = await this.$axios.$get(`/admin/list/footer`);
2020-09-23 12:16:56 -07:00
},
}
</script>