funquail/front/src/components/manage/users/InvitationsTable.vue
2022-11-28 10:16:58 +00:00

234 lines
7.3 KiB
Vue

<script setup lang="ts">
import type { OrderingProps } from '~/composables/navigation/useOrdering'
import type { RouteRecordName } from 'vue-router'
import type { OrderingField } from '~/store/ui'
import { watchDebounced } from '@vueuse/core'
import { computed, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import moment from 'moment'
import axios from 'axios'
import ActionTable from '~/components/common/ActionTable.vue'
import Pagination from '~/components/vui/Pagination.vue'
import useSharedLabels from '~/composables/locale/useSharedLabels'
import useOrdering from '~/composables/navigation/useOrdering'
import useErrorHandler from '~/composables/useErrorHandler'
import usePage from '~/composables/navigation/usePage'
interface Props extends OrderingProps {
filters?: object
// TODO(wvffle): Remove after https://github.com/vuejs/core/pull/4512 is merged
orderingConfigName?: RouteRecordName
}
const props = withDefaults(defineProps<Props>(), {
filters: () => ({}),
orderingConfigName: undefined
})
const page = usePage()
type ResponseType = { count: number, results: any[] }
const result = ref<null | ResponseType>(null)
const { onOrderingUpdate, orderingString, paginateBy, ordering } = useOrdering(props)
const orderingOptions: [OrderingField, keyof typeof sharedLabels.filters][] = [
['expiration_date', 'expiration_date'],
['creation_date', 'creation_date']
]
const query = ref('')
const isOpen = ref(false)
const { t } = useI18n()
const actionFilters = computed(() => ({ q: query.value, ...props.filters }))
const actions = computed(() => [
{
name: 'delete',
label: t('components.manage.users.InvitationsTable.action.delete'),
filterCheckable: (obj: { users: unknown[], expiration_date: Date }) => {
return obj.users.length === 0 && moment().isBefore(obj.expiration_date)
}
}
])
const isLoading = ref(false)
const fetchData = async () => {
isLoading.value = true
const params = {
page: page.value,
page_size: paginateBy.value,
q: query.value,
ordering: orderingString.value,
is_open: isOpen.value,
...props.filters
}
try {
const response = await axios.get('/manage/users/invitations/', {
params
})
result.value = response.data
} catch (error) {
useErrorHandler(error as Error)
result.value = null
} finally {
isLoading.value = false
}
}
watchDebounced(query, () => (page.value = 1), { debounce: 300 })
watch(isOpen, () => (page.value = 1))
watch(page, fetchData)
onOrderingUpdate(fetchData)
fetchData()
const sharedLabels = useSharedLabels()
const labels = computed(() => ({
searchPlaceholder: t('components.manage.users.InvitationsTable.placeholder.search')
}))
</script>
<template>
<div>
<div class="ui inline form">
<div class="fields">
<div class="ui field">
<label for="invitations-search">{{ $t('components.manage.users.InvitationsTable.label.search') }}</label>
<input
id="invitations-search"
v-model="query"
name="search"
type="text"
:placeholder="labels.searchPlaceholder"
>
</div>
<div class="field">
<label for="invitations-ordering">{{ $t('components.manage.users.InvitationsTable.ordering.label') }}</label>
<select
id="invitations-ordering"
v-model="ordering"
class="ui dropdown"
>
<option
v-for="(option, key) in orderingOptions"
:key="key"
:value="option[0]"
>
{{ sharedLabels.filters[option[1]] }}
</option>
</select>
</div>
<div class="field">
<label for="invitations-status">{{ $t('components.manage.users.InvitationsTable.label.status') }}</label>
<select
id="invitations-status"
v-model="isOpen"
class="ui dropdown"
>
<option :value="null">
{{ $t('components.manage.users.InvitationsTable.option.all') }}
</option>
<option :value="true">
{{ $t('components.manage.users.InvitationsTable.option.open') }}
</option>
<option :value="false">
{{ $t('components.manage.users.InvitationsTable.option.expired') }}
</option>
</select>
</div>
</div>
</div>
<div class="dimmable">
<div
v-if="isLoading"
class="ui active inverted dimmer"
>
<div class="ui loader" />
</div>
<action-table
v-if="result"
:objects-data="result"
:actions="actions"
:action-url="'manage/users/invitations/action/'"
:filters="actionFilters"
@action-launched="fetchData"
>
<template #header-cells>
<th>
{{ $t('components.manage.users.InvitationsTable.table.invitation.header.owner') }}
</th>
<th>
{{ $t('components.manage.users.InvitationsTable.table.invitation.header.user') }}
</th>
<th>
{{ $t('components.manage.users.InvitationsTable.table.invitation.header.status') }}
</th>
<th>
{{ $t('components.manage.users.InvitationsTable.table.invitation.header.creationDate') }}
</th>
<th>
{{ $t('components.manage.users.InvitationsTable.table.invitation.header.expirationDate') }}
</th>
<th>
{{ $t('components.manage.users.InvitationsTable.table.invitation.header.code') }}
</th>
</template>
<template
#row-cells="scope"
>
<td>
<router-link :to="{name: 'manage.users.users.detail', params: {id: scope.obj.id }}">
{{ scope.obj.owner.username }}
</router-link>
</td>
<td>
<span v-if="scope.obj.invited_user">
{{ scope.obj.invited_user.username }}
</span>
</td>
<td>
<span
v-if="scope.obj.users.length > 0"
class="ui success basic label"
>{{ $t('components.manage.users.InvitationsTable.label.used') }}</span>
<span
v-else-if="moment().isAfter(scope.obj.expiration_date)"
class="ui danger basic label"
>{{ $t('components.manage.users.InvitationsTable.label.expired') }}</span>
<span
v-else
class="ui basic label"
>{{ $t('components.manage.users.InvitationsTable.label.unused') }}</span>
</td>
<td>
<human-date :date="scope.obj.creation_date" />
</td>
<td>
<human-date :date="scope.obj.expiration_date" />
</td>
<td>
{{ scope.obj.code.toUpperCase() }}
</td>
</template>
</action-table>
</div>
<div>
<pagination
v-if="result && result.count > paginateBy"
v-model:current="page"
:compact="true"
:paginate-by="paginateBy"
:total="result.count"
/>
<span v-if="result && result.results.length > 0">
{{ $t('components.manage.users.InvitationsTable.pagination.results', { start: ((page-1) * paginateBy) + 1, end: ((page-1) * paginateBy) + result.results.length, total: result.count }, result.results.length) }}
</span>
</div>
</div>
</template>