-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBooks.vue
113 lines (109 loc) · 4.02 KB
/
Books.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
<template>
<div class="books">
<h1>Books</h1>
<datatable :columns="columns" :sortKey="sortKey" :sortOrders="sortOrders" @sort="sortBy">
<tbody>
<tr v-for="book in books" :key="book.id">
<td>
<router-link :to="{name: 'book', params: {id: book.id}}">
{{ book.title }}
</router-link>
</td>
<td>
<router-link :to="{name: 'author', params: {id: book.author.id}}">
{{book.author.first_name}}
</router-link>
</td>
<td>
<router-link :to="{name: 'author', params: {id: book.author.id}}">
{{book.author.last_name}}
</router-link>
</td>
</tr>
</tbody>
</datatable>
<pagination :pagination="pagination"
@prev="getBooks(pagination.prevPageUrl)"
@next="getBooks(pagination.nextPageUrl)">
</pagination>
</div>
</template>
<script>
import Datatable from './Datatable.vue';
import Pagination from './Pagination.vue'
export default {
components: {datatable: Datatable, pagination: Pagination},
created() {
this.getBooks();
},
data() {
let sortOrders = {};
let columns = [
{width: '33%', label: 'Title', name: 'title'},
{width: '33%', label: 'First Name', name: 'authors.first_name'},
{width: '33%', label: 'Last Name', name: 'authors.last_name'}
];
columns.forEach((column) => {
sortOrders[column.name] = -1;
});
return {
books: [],
columns: columns,
sortKey: 'title',
sortOrders: sortOrders,
tableData: {
sort: 'title',
direction: 'ASC',
},
pagination: {
lastPage: '',
currentPage: '',
total: '',
lastPageUrl: '',
nextPageUrl: '',
prevPageUrl: '',
from: '',
to: ''
},
}
},
methods: {
getBooks(url = '/api/books') {
axios.get(url, {params: this.tableData})
.then(response => {
let data = response.data;
this.books = data.data;
this.configPagination(data.pagination);
this.$router.push({
path: '/',
query: {
page: data.pagination.current_page,
sort: this.tableData.sort,
direction: this.tableData.direction
}
});
})
.catch(errors => {
console.log(errors);
});
},
configPagination(data) {
this.pagination.lastPage = data.last_page;
this.pagination.currentPage = data.current_page;
this.pagination.total = data.total;
this.pagination.lastPageUrl = data.last_page_url;
this.pagination.nextPageUrl = data.next_page_url;
this.pagination.prevPageUrl = data.prev_page_url;
this.pagination.from = data.from;
this.pagination.to = data.to;
},
sortBy(key) {
this.sortKey = key;
this.sortOrders[key] = this.sortOrders[key] * -1;
this.tableData.sort = key;
this.tableData.direction = this.sortOrders[key] === 1 ? 'ASC' : 'DESC';
this.getBooks();
},
}
};
</script>