mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
128 lines
4.7 KiB
Vue
128 lines
4.7 KiB
Vue
<template>
|
|
<WidgetWrapper :icon="icon" :title="title">
|
|
<DatatableWrapper v-if="users" :paginator="false" :columns="columns" :data="users" class="table table-users">
|
|
<template scope="{ row }">
|
|
<tr>
|
|
<td style="width: 300px">
|
|
<router-link :to="{name: 'UserDetail', params: {id: row.data.id}}">
|
|
<DatatableCellImage
|
|
:image="row.data.attributes.avatar"
|
|
:title="row.data.attributes.name"
|
|
:description="row.data.attributes.email"
|
|
/>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
<ColorLabel :color="getRoleColor(row.data.attributes.role)">
|
|
{{ row.data.attributes.role }}
|
|
</ColorLabel>
|
|
</td>
|
|
<td>
|
|
<span class="cell-item">
|
|
{{ row.relationships.storage.data.attributes.used }}%
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<span class="cell-item">
|
|
{{ row.data.attributes.created_at_formatted }}
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<div class="action-icons">
|
|
<router-link :to="{name: 'UserDetail', params: {id: row.data.id}}">
|
|
<edit-2-icon size="15" class="icon icon-edit"></edit-2-icon>
|
|
</router-link>
|
|
<router-link :to="{name: 'UserDelete', params: {id: row.data.id}}">
|
|
<trash2-icon size="15" class="icon icon-trash"></trash2-icon>
|
|
</router-link>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
</DatatableWrapper>
|
|
</WidgetWrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import DatatableCellImage from '@/components/Others/Tables/DatatableCellImage'
|
|
import DatatableWrapper from '@/components/Others/Tables/DatatableWrapper'
|
|
import WidgetWrapper from '@/components/Admin/WidgetWrapper'
|
|
import {Trash2Icon, Edit2Icon} from "vue-feather-icons"
|
|
import ColorLabel from '@/components/Others/ColorLabel'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'WidgetLatestRegistrations',
|
|
props: ['icon', 'title'],
|
|
components: {
|
|
DatatableCellImage,
|
|
DatatableWrapper,
|
|
WidgetWrapper,
|
|
Trash2Icon,
|
|
ColorLabel,
|
|
Edit2Icon,
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: false,
|
|
users: undefined,
|
|
columns: [
|
|
{
|
|
label: this.$t('admin_page_user.table.name'),
|
|
field: 'data.attributes.name',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_page_user.table.role'),
|
|
field: 'data.attributes.role',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_page_user.table.storage_used'),
|
|
field: 'data.attributes.storage.used',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_page_user.table.created_at'),
|
|
field: 'data.attributes.created_at_formatted',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_page_user.table.action'),
|
|
field: 'data.action',
|
|
sortable: false
|
|
},
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
getRoleColor(role) {
|
|
switch(role) {
|
|
case 'admin':
|
|
return 'purple'
|
|
break;
|
|
case 'user':
|
|
return 'yellow'
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
axios.get('/api/dashboard/new-users')
|
|
.then(response => {
|
|
this.users = response.data.data
|
|
this.isLoading = false
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
}
|
|
</style>
|