forked from Cambalab/vue-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListMagazines.vue
172 lines (165 loc) · 4.35 KB
/
ListMagazines.vue
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<template>
<v-card class="extra-margin">
<v-img src="banner.png" aspect-ratio="4" max-height="300px" />
<v-data-table
:headers="headers"
:items="magazines"
class="elevation-1"
:footer-props="footerProps"
:options.sync="options"
:dark="true"
>
<template v-slot:top>
<v-toolbar dark>
<v-toolbar-title>Magazines</v-toolbar-title>
<v-spacer />
<router-link :to="{ name: `magazines/create` }" class="no-decoration">
<v-btn color="orange" dark class="mb-2">New Magazine</v-btn>
</router-link>
</v-toolbar>
</template>
<template slot="no-data">
<v-alert :value="true" color="warning" icon="warning">
Sorry, nothing to display here :(
</v-alert>
</template>
<template v-slot:body="{ items }">
<tbody>
<tr
v-for="(item, index) in items"
:key="names.containerFields(item.id)"
:name="names.containerFields(index)"
>
<td :name="names.elementField('id', index)">{{ item.id }}</td>
<td :name="names.elementField('name', index)" class="text-xs-left">
{{ item.name }}
</td>
<td
:name="names.elementField('issue', index)"
class="text-xs-center"
>
{{ item.issue }}
</td>
<td
:name="names.elementField('publisher', index)"
class="text-xs-right"
>
{{ item.publisher }}
</td>
<td class="text-xs-center">
<EditButton
:vBtnProps="buttonProps"
:vIconProps="iconProps"
:name="names.editButtonName(index)"
:resourceId="item.id"
resourceName="magazines"
/>
<DeleteButton
:vBtnProps="buttonProps"
:vIconProps="iconProps"
:name="names.deleteButtonName(index)"
:resourceId="item.id"
:resourceIdName="resourceIdName"
resourceName="magazines"
/>
</td>
</tr>
</tbody>
</template>
</v-data-table>
</v-card>
</template>
<script>
import UI_NAMES from '@constants/ui.element.names'
import { rowsPerPage } from '../../constants'
import { DeleteButton, EditButton } from '@components/UiComponents'
import { resourceIdName } from '../../App'
export default {
name: 'ListMagazines',
props: {
// This prop will be assigned by Vue Admin for you to use the functions
// shown below.
va: {
type: Object,
required: true,
},
},
components: {
DeleteButton,
EditButton,
},
data() {
// This is only needed for e2e demo tests
const resourceName = 'magazines'
const view = 'list'
const names = {
containerFields: index =>
UI_NAMES.RESOURCE_VIEW_CONTAINER_FIELDS.with({
resourceName,
view,
index,
}),
elementField: (field, index) =>
UI_NAMES.RESOURCE_VIEW_ELEMENT_FIELD.with({
resourceName,
view,
field,
index,
}),
editButtonName: index =>
UI_NAMES.RESOURCE_EDIT_BUTTON.with({
resourceName,
index,
}),
deleteButtonName: index =>
UI_NAMES.RESOURCE_DELETE_BUTTON.with({
resourceName,
index,
}),
}
return {
names,
footerProps: {
itemsPerPageText: 'Magazines per page',
},
options: {
pagination: {
itemsPerPage: rowsPerPage,
},
},
buttonProps: {
small: true,
},
iconProps: {
small: true,
},
resourceIdName,
}
},
computed: {
headers: function() {
return [
{ text: 'ID', align: 'left', sortable: true, value: 'id' },
{ text: 'Name', value: 'name' },
{ text: 'Issue', value: 'issue' },
{ text: 'Publisher', value: 'publisher' },
{ text: 'Actions', value: 'action', sortable: false, width: '160px' },
]
},
magazines: function() {
return this.va.getList()
},
},
created() {
this.va.fetchList()
},
}
</script>
<style>
.no-decoration {
text-decoration: none;
}
.extra-margin {
margin-bottom: 10px;
}
</style>