1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<style lang="scss" scoped>
.underline { text-decoration: underline; }
</style>
<template>
<section class="section is-fullheight dashboard">
<div class="container">
<div class="columns">
<div class="column is-narrow">
<Sidebar />
</div>
<div class="column">
<h2 class="subtitle">User details</h2>
<hr>
<b-field label="User Id"
horizontal>
<span>{{ user.id }}</span>
</b-field>
<b-field label="Username"
horizontal>
<span>{{ user.username }}</span>
</b-field>
<b-field label="Enabled"
horizontal>
<span>{{ user.enabled }}</span>
</b-field>
<b-field label="Registered"
horizontal>
<span><timeago :since="user.createdAt" /></span>
</b-field>
<b-field label="Files"
horizontal>
<span>{{ files.length }}</span>
</b-field>
<div class="mb2 mt2 text-center">
<button class="button is-danger"
@click="promptDisableUser">Disable user</button>
</div>
<Grid v-if="files.length"
:files="files" />
</div>
</div>
</div>
</section>
</template>
<script>
import Sidebar from '~/components/sidebar/Sidebar.vue';
import Grid from '~/components/grid/Grid.vue';
export default {
components: {
Sidebar,
Grid
},
middleware: ['auth', 'admin'],
data() {
return {
options: {},
files: null,
user: null
};
},
async asyncData({ $axios, route }) {
try {
const response = await $axios.$get(`/admin/users/${route.params.id}`);
return {
files: response.files ? response.files : null,
user: response.user ? response.user : null
};
} catch (error) {
console.error(error);
return {
files: null,
user: null
};
}
},
methods: {
promptDisableUser() {
this.$buefy.dialog.confirm({
message: 'Are you sure you want to disable the account of the user that uploaded this file?',
onConfirm: () => this.disableUser()
});
},
async disableUser() {
const response = await this.$axios.$post('admin/users/disable', {
id: this.user.id
});
this.$buefy.toast.open(response.message);
}
}
};
</script>
|