mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-31 21:44:20 +00:00
le nombre de lignes par page et le numéro de page est stocké dans l'url. fix #16
This commit is contained in:
parent
0ad718bbc6
commit
8446d5b998
3 changed files with 124 additions and 3 deletions
|
|
@ -20,6 +20,10 @@
|
||||||
:sort-desc.sync="sortDesc"
|
:sort-desc.sync="sortDesc"
|
||||||
must-sort
|
must-sort
|
||||||
:search="search"
|
:search="search"
|
||||||
|
:items-per-page.sync="itemsPerPage"
|
||||||
|
:page.sync="page"
|
||||||
|
@page-count="pageCount = $event"
|
||||||
|
hide-default-footer
|
||||||
>
|
>
|
||||||
|
|
||||||
<template v-slot:item.isInTreasureChest="{ item }">
|
<template v-slot:item.isInTreasureChest="{ item }">
|
||||||
|
|
@ -35,12 +39,22 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
|
|
||||||
|
<v-row class="align-center">
|
||||||
|
<v-col :cols="12" md="3">
|
||||||
|
<v-select v-model="itemsPerPage" :items="itemsPerPageChoices" label="Lignes par page" @change="selectItemPerPage"></v-select>
|
||||||
|
</v-col>
|
||||||
|
<v-col :cols="12" md="9">
|
||||||
|
<v-pagination v-model="page" :length="pageCount" :total-visible="7" @input="changePage"></v-pagination>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
import Breadcrumb from '@theme/components/Breadcrumb'
|
import Breadcrumb from '@theme/components/Breadcrumb'
|
||||||
|
import { setUrlParams, getUrlParameter } from '@theme/util/filterHelpers'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Breadcrumb },
|
components: { Breadcrumb },
|
||||||
|
|
@ -49,6 +63,15 @@ export default {
|
||||||
return {
|
return {
|
||||||
sortBy: 'title',
|
sortBy: 'title',
|
||||||
sortDesc: false,
|
sortDesc: false,
|
||||||
|
itemsPerPage: 10,
|
||||||
|
itemsPerPageChoices: [
|
||||||
|
{text: '5', value: 5},
|
||||||
|
{text: '10', value: 10},
|
||||||
|
{text: '15', value: 15},
|
||||||
|
{text: 'Tous', value: -1},
|
||||||
|
],
|
||||||
|
page: 1,
|
||||||
|
pageCount: 0,
|
||||||
headers: [
|
headers: [
|
||||||
{ text: "", align: 'center', sortable: false, value: 'isInTreasureChest' },
|
{ text: "", align: 'center', sortable: false, value: 'isInTreasureChest' },
|
||||||
{ text: "Nom", align: 'start', sortable: true, value: 'title' },
|
{ text: "Nom", align: 'start', sortable: true, value: 'title' },
|
||||||
|
|
@ -129,6 +152,15 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
this.$store.commit('myMagicItems/addMagicItem', magicItem)
|
this.$store.commit('myMagicItems/addMagicItem', magicItem)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
selectItemPerPage (value) {
|
||||||
|
setUrlParams("lignes", [value])
|
||||||
|
},
|
||||||
|
|
||||||
|
changePage (page) {
|
||||||
|
console.log(page)
|
||||||
|
setUrlParams("page", [page])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -136,6 +168,15 @@ export default {
|
||||||
this.$store.commit('setHasRightDrawer', true)
|
this.$store.commit('setHasRightDrawer', true)
|
||||||
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
||||||
this.$store.commit('setInRightDrawer', 'magicItemFilters')
|
this.$store.commit('setInRightDrawer', 'magicItemFilters')
|
||||||
|
|
||||||
|
let itemsPerPage = parseInt(getUrlParameter(window.location.href, "lignes"))
|
||||||
|
if (itemsPerPage) {
|
||||||
|
this.itemsPerPage = itemsPerPage
|
||||||
|
}
|
||||||
|
let page = parseInt(getUrlParameter(window.location.href, "page"))
|
||||||
|
if (page) {
|
||||||
|
this.page = page
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,10 @@
|
||||||
:sort-desc.sync="sortDesc"
|
:sort-desc.sync="sortDesc"
|
||||||
must-sort
|
must-sort
|
||||||
:search="search"
|
:search="search"
|
||||||
|
:items-per-page.sync="itemsPerPage"
|
||||||
|
:page.sync="page"
|
||||||
|
@page-count="pageCount = $event"
|
||||||
|
hide-default-footer
|
||||||
>
|
>
|
||||||
|
|
||||||
<template v-slot:item.isInBestiary="{ item }">
|
<template v-slot:item.isInBestiary="{ item }">
|
||||||
|
|
@ -43,15 +47,23 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
|
|
||||||
|
<v-row class="align-center">
|
||||||
|
<v-col :cols="12" md="3">
|
||||||
|
<v-select v-model="itemsPerPage" :items="itemsPerPageChoices" label="Lignes par page" @change="selectItemPerPage"></v-select>
|
||||||
|
</v-col>
|
||||||
|
<v-col :cols="12" md="9">
|
||||||
|
<v-pagination v-model="page" :length="pageCount" :total-visible="7" @input="changePage"></v-pagination>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
import Breadcrumb from '@theme/components/Breadcrumb'
|
import Breadcrumb from '@theme/components/Breadcrumb'
|
||||||
import {
|
import { displayChallenge } from '@theme/util/monsterHelpers'
|
||||||
displayChallenge
|
import { setUrlParams, getUrlParameter } from '@theme/util/filterHelpers'
|
||||||
} from '@theme/util/monsterHelpers'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Breadcrumb },
|
components: { Breadcrumb },
|
||||||
|
|
@ -60,6 +72,15 @@ export default {
|
||||||
return {
|
return {
|
||||||
sortBy: 'title',
|
sortBy: 'title',
|
||||||
sortDesc: false,
|
sortDesc: false,
|
||||||
|
itemsPerPage: 10,
|
||||||
|
itemsPerPageChoices: [
|
||||||
|
{text: '5', value: 5},
|
||||||
|
{text: '10', value: 10},
|
||||||
|
{text: '15', value: 15},
|
||||||
|
{text: 'Tous', value: -1},
|
||||||
|
],
|
||||||
|
page: 1,
|
||||||
|
pageCount: 0,
|
||||||
headers: [
|
headers: [
|
||||||
{ text: "", align: 'center', sortable: false, value: 'isInBestiary' },
|
{ text: "", align: 'center', sortable: false, value: 'isInBestiary' },
|
||||||
{ text: "Nom", align: 'start', sortable: true, value: 'title' },
|
{ text: "Nom", align: 'start', sortable: true, value: 'title' },
|
||||||
|
|
@ -179,6 +200,15 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
this.$store.commit('myMonsters/addMonster', monster)
|
this.$store.commit('myMonsters/addMonster', monster)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
selectItemPerPage (value) {
|
||||||
|
setUrlParams("lignes", [value])
|
||||||
|
},
|
||||||
|
|
||||||
|
changePage (page) {
|
||||||
|
console.log(page)
|
||||||
|
setUrlParams("page", [page])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -186,6 +216,15 @@ export default {
|
||||||
this.$store.commit('setHasRightDrawer', true)
|
this.$store.commit('setHasRightDrawer', true)
|
||||||
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
||||||
this.$store.commit('setInRightDrawer', 'monsterFilters')
|
this.$store.commit('setInRightDrawer', 'monsterFilters')
|
||||||
|
|
||||||
|
let itemsPerPage = parseInt(getUrlParameter(window.location.href, "lignes"))
|
||||||
|
if (itemsPerPage) {
|
||||||
|
this.itemsPerPage = itemsPerPage
|
||||||
|
}
|
||||||
|
let page = parseInt(getUrlParameter(window.location.href, "page"))
|
||||||
|
if (page) {
|
||||||
|
this.page = page
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,10 @@
|
||||||
:sort-desc.sync="sortDesc"
|
:sort-desc.sync="sortDesc"
|
||||||
must-sort
|
must-sort
|
||||||
:search="search"
|
:search="search"
|
||||||
|
:items-per-page.sync="itemsPerPage"
|
||||||
|
:page.sync="page"
|
||||||
|
@page-count="pageCount = $event"
|
||||||
|
hide-default-footer
|
||||||
>
|
>
|
||||||
|
|
||||||
<template v-slot:item.isInSpellBook="{ item }">
|
<template v-slot:item.isInSpellBook="{ item }">
|
||||||
|
|
@ -57,12 +61,22 @@
|
||||||
</template> -->
|
</template> -->
|
||||||
|
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
|
|
||||||
|
<v-row class="align-center">
|
||||||
|
<v-col :cols="12" md="3">
|
||||||
|
<v-select v-model="itemsPerPage" :items="itemsPerPageChoices" label="Lignes par page" @change="selectItemPerPage"></v-select>
|
||||||
|
</v-col>
|
||||||
|
<v-col :cols="12" md="9">
|
||||||
|
<v-pagination v-model="page" :length="pageCount" :total-visible="7" @input="changePage"></v-pagination>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
import Breadcrumb from '@theme/components/Breadcrumb'
|
import Breadcrumb from '@theme/components/Breadcrumb'
|
||||||
|
import { setUrlParams, getUrlParameter } from '@theme/util/filterHelpers'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Breadcrumb },
|
components: { Breadcrumb },
|
||||||
|
|
@ -71,6 +85,15 @@ export default {
|
||||||
return {
|
return {
|
||||||
sortBy: 'title',
|
sortBy: 'title',
|
||||||
sortDesc: false,
|
sortDesc: false,
|
||||||
|
itemsPerPage: 10,
|
||||||
|
itemsPerPageChoices: [
|
||||||
|
{text: '5', value: 5},
|
||||||
|
{text: '10', value: 10},
|
||||||
|
{text: '15', value: 15},
|
||||||
|
{text: 'Tous', value: -1},
|
||||||
|
],
|
||||||
|
page: 1,
|
||||||
|
pageCount: 0,
|
||||||
headers: [
|
headers: [
|
||||||
{ text: "", align: 'center', sortable: false, value: 'isInSpellBook' },
|
{ text: "", align: 'center', sortable: false, value: 'isInSpellBook' },
|
||||||
{ text: "Nom", align: 'start', sortable: true, value: 'title' },
|
{ text: "Nom", align: 'start', sortable: true, value: 'title' },
|
||||||
|
|
@ -200,6 +223,15 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
this.$store.commit('mySpells/addSpell', spell)
|
this.$store.commit('mySpells/addSpell', spell)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
selectItemPerPage (value) {
|
||||||
|
setUrlParams("lignes", [value])
|
||||||
|
},
|
||||||
|
|
||||||
|
changePage (page) {
|
||||||
|
console.log(page)
|
||||||
|
setUrlParams("page", [page])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -208,6 +240,15 @@ export default {
|
||||||
this.$store.commit('setHasRightDrawer', true)
|
this.$store.commit('setHasRightDrawer', true)
|
||||||
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
||||||
this.$store.commit('setInRightDrawer', 'spellFilters')
|
this.$store.commit('setInRightDrawer', 'spellFilters')
|
||||||
|
|
||||||
|
let itemsPerPage = parseInt(getUrlParameter(window.location.href, "lignes"))
|
||||||
|
if (itemsPerPage) {
|
||||||
|
this.itemsPerPage = itemsPerPage
|
||||||
|
}
|
||||||
|
let page = parseInt(getUrlParameter(window.location.href, "page"))
|
||||||
|
if (page) {
|
||||||
|
this.page = page
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue