Hangar/frontend/pages/staff.vue
2021-02-12 22:37:28 -08:00

95 lines
2.7 KiB
Vue

<template>
<v-data-table
v-if="staff"
:headers="headers"
:items="staff.result"
:options.sync="options"
:server-items-length="staff.pagination.count"
:loading="loading"
class="elevation-1"
>
<template #item.pic="{ item }">
<UserAvatar :username="item.name" :avatar-url="$util.avatarUrl(item.name)" clazz="user-avatar-xs" />
</template>
<template #item.roles="{ item }">
{{ item.roles.map((r) => r.title).join(', ') }}
</template>
<template #item.joinDate="{ item }">
{{ $util.prettyDate(item.joinDate) }}
</template>
</v-data-table>
</template>
<script lang="ts">
import { Component, Vue, Watch } from 'nuxt-property-decorator';
import { PaginatedResult, User } from 'hangar-api';
import { DataOptions, DataTableHeader } from 'vuetify';
import { Context } from '@nuxt/types';
import UserAvatar from '~/components/UserAvatar.vue';
@Component({
components: { UserAvatar },
})
export default class StaffPage extends Vue {
headers: DataTableHeader[] = [
{ text: '', value: 'pic' },
{ text: 'Username', value: 'name' },
{ text: 'Roles', value: 'roles' },
{ text: 'Joined', value: 'joinDate' },
];
staff?: PaginatedResult<User>;
loading = false;
options = { page: 1, itemsPerPage: 10 } as DataOptions;
initialLoad = true;
head() {
return {
title: this.$t('pages.staff'),
};
}
@Watch('options', { deep: true })
onOptionsChanged() {
if (this.initialLoad) {
this.initialLoad = false;
return;
}
this.loading = true;
this.$api.request<PaginatedResult<User>>('staff', false, 'get', this.requestOptions).then((staff) => {
this.staff = staff;
this.loading = false;
});
}
get requestOptions() {
if (!this.options) {
return {};
}
let sort = '';
if (this.options.sortBy.length === 1) {
sort = this.options.sortBy[0];
if (this.options.sortDesc[0]) {
sort = '-' + sort;
}
}
return {
limit: this.options.itemsPerPage,
offset: (this.options.page - 1) * this.options.itemsPerPage,
sort,
};
}
async asyncData({ $api, $util }: Context): Promise<{ staff: PaginatedResult<User> | void }> {
const staff = await $api
.request<PaginatedResult<User>>('staff', false, 'get', { limit: 10, offset: 0 })
.catch($util.handlePageRequestError);
return { staff };
}
}
</script>
<style lang="scss" scoped></style>