mock data an implement basic datatable
This commit is contained in:
parent
66b1e070d6
commit
46be8e8629
7 changed files with 74 additions and 17 deletions
10
src/App.vue
10
src/App.vue
|
@ -3,7 +3,11 @@
|
|||
<Navbar/>
|
||||
|
||||
<div class="container mt-2">
|
||||
<Table/>
|
||||
<Table
|
||||
:columns="['uid', 'description', 'box', 'image']"
|
||||
:items="loadedItems"
|
||||
:keyName="'uid'"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -11,15 +15,17 @@
|
|||
<script>
|
||||
import Table from '@/components/Table';
|
||||
import Navbar from '@/components/Navbar';
|
||||
import { mapState } from 'vuex';
|
||||
|
||||
export default {
|
||||
name: 'app',
|
||||
components: { Navbar, Table },
|
||||
computed: mapState(['loadedItems'])
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
body, html, #app {
|
||||
background: #222;
|
||||
background: #000;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -1,23 +1,59 @@
|
|||
<template>
|
||||
<table class="table table-striped table-dark">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" v-for="(column, index) in columns" :key="index">{{ column.name }}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col" v-for="(column, index) in columns" :key="index">
|
||||
<button class="btn text-light" v-on:click="toggleSort(column)">
|
||||
{{ column }}
|
||||
<span :class="{ 'text-info': column === sortBy }">
|
||||
<font-awesome-icon :icon="sortIcon(column)"/>
|
||||
</span>
|
||||
</button>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="item in internalItems" :key="item[keyName]">
|
||||
<td v-for="(column, index) in columns" :key="index">{{ item[column] }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import * as R from 'ramda';
|
||||
|
||||
export default {
|
||||
name: 'Table',
|
||||
data: () => ({
|
||||
columns: [
|
||||
{ name: 'uid', sortFn: (items) => items },
|
||||
{ name: 'description', sortFn: (items) => items },
|
||||
{ name: 'box', sortFn: (items) => items },
|
||||
{ name: 'image', sortFn: (items) => items }
|
||||
]
|
||||
})
|
||||
props: ['columns', 'items', 'keyName'],
|
||||
data: (self) => ({
|
||||
sortBy: self.keyName,
|
||||
ascend: true
|
||||
}),
|
||||
computed: {
|
||||
internalItems() {
|
||||
const sortByOrd = R.sortBy(R.prop(this.sortBy));
|
||||
const sorted = sortByOrd(this.items, [this.sortBy]);
|
||||
return this.ascend ? sorted : R.reverse(sorted);
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
sortIcon(column) {
|
||||
if (column !== this.sortBy) return 'sort';
|
||||
if (this.ascend) return 'sort-up';
|
||||
return 'sort-down';
|
||||
},
|
||||
toggleSort(column) {
|
||||
if (column === this.sortBy)
|
||||
this.ascend = !this.ascend;
|
||||
this.sortBy = column;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.table-body-move {
|
||||
transition: transform 1s;
|
||||
}
|
||||
</style>
|
|
@ -9,10 +9,10 @@ import 'bootstrap/dist/js/bootstrap.min.js';
|
|||
|
||||
// fontawesome
|
||||
import { library } from '@fortawesome/fontawesome-svg-core';
|
||||
import { faPlus, faCheckCircle, faEdit, faTrash, faCat, faSyncAlt } from '@fortawesome/free-solid-svg-icons';
|
||||
import { faPlus, faCheckCircle, faEdit, faTrash, faCat, faSyncAlt, faSort, faSortUp, faSortDown } from '@fortawesome/free-solid-svg-icons';
|
||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
||||
|
||||
library.add(faPlus, faCheckCircle, faEdit, faTrash, faCat, faSyncAlt);
|
||||
library.add(faPlus, faCheckCircle, faEdit, faTrash, faCat, faSyncAlt, faSort, faSortUp, faSortDown);
|
||||
|
||||
Vue.component('font-awesome-icon', FontAwesomeIcon);
|
||||
|
||||
|
|
|
@ -7,7 +7,15 @@ export default new Vuex.Store({
|
|||
state: {
|
||||
events: ['35c3', 'camp19', '36c3'],
|
||||
activeEvent: '36c3',
|
||||
loadedItems: []
|
||||
loadedItems: [
|
||||
{ uid: 1, description: 'sleeping bag', box: 7, image: 41 },
|
||||
{ uid: 2, description: 'tent', box: 7, image: 23 },
|
||||
{ uid: 3, description: 'chest', box: 7, image: 52 },
|
||||
{ uid: 4, description: 'power supply black', box: 5, image: 62 },
|
||||
{ uid: 5, description: 'pullover yellow "pesthörnchen"', box: 5, image: 84 },
|
||||
{ uid: 6, description: '"blue black second skin"', box: 6, image: 72 },
|
||||
{ uid: 7, description: '"the bike blog" bottle orange', box: 6, image: 71 }
|
||||
]
|
||||
},
|
||||
mutations: {
|
||||
changeEvent(state, event) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue