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
|
<template lang="pug">
.mx-auto.w-90p.py-6(class="sm:px-6 lg:px-8 md:max-w-7xl")
h1.text-3xl.font-bold(class="dark:text-white") Reports
.grid.grid-cols-6.mt-3
div
admin-sidebar
section#tables.col-span-5
v-table(
:keys="['id', 'model_id', 'created', 'updated', 'user', 'resolved', 'note', 'admin_note']"
:fields="warnings"
)
pagination(:page="page" :pages="pages" v-if="count" path="/admin/reports")
</template>
<script>
import { mapGetters } from "vuex";
import AdminSidebar from "@/components/AdminSidebar.vue";
import Pagination from "@/components/Pagination.vue";
import VTable from "@/components/VTable.vue";
export default {
name: "AdminView",
head: { title: "Reports · Verden" },
computed: {
...mapGetters("auth", ["isLogged", "me"]),
...mapGetters("warnings", ["warnings", "count"]),
},
data() {
return {
page: 0,
pages: 0,
};
},
components: {
AdminSidebar,
pagination: Pagination,
"v-table": VTable,
},
async mounted() {
await this.$store.dispatch("auth/findMe");
if (!(this.isLogged && this.me && this.me.is_staff)) {
window.location.href = "/";
}
this.page = this.$route.query.page ?? 0;
this.$store.dispatch("warnings/getWarnings", this.page).then(() => {
this.pages = Math.ceil(this.count / 20);
});
},
};
</script>
|