mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-29 12:44:20 +00:00
223 lines
8.6 KiB
Vue
223 lines
8.6 KiB
Vue
<template>
|
|
<main class="page content">
|
|
<div class="theme-default-content">
|
|
<div v-if="spells.length > 0">
|
|
<div class="d-print-none mb-12">
|
|
|
|
<v-data-table
|
|
class="data-table"
|
|
:headers="headers"
|
|
:items="spells"
|
|
item-key="key"
|
|
:sort-by="sortBy"
|
|
:sort-desc="sortDesc"
|
|
group-by="frontmatter.level"
|
|
must-sort
|
|
:items-per-page="-1"
|
|
hide-default-footer
|
|
show-expand
|
|
@click:row="onClickRow"
|
|
>
|
|
|
|
<template v-slot:expanded-item="{ headers, item }">
|
|
<td :colspan="headers.length" class="pa-4">
|
|
<Spell :spell="getSpell(item)" />
|
|
</td>
|
|
</template>
|
|
|
|
<template v-slot:group.header="{ group, headers, isOpen, toggle }">
|
|
<td class="group-header" :colspan="headers.length">
|
|
<div class="d-block d-md-flex align-center">
|
|
<div class="mr-md-12">
|
|
<v-btn dark small depressed icon @click.stop="toggle"><v-icon v-if="isOpen">mdi-minus</v-icon><v-icon v-else>mdi-plus</v-icon></v-btn>
|
|
<span class="subtitle-2"><strong>{{ displayLevel(group) }}</strong></span>
|
|
</div>
|
|
<div class="mx-md-12">
|
|
<div v-if="group > 0" style="width: 125px;">
|
|
<v-text-field dark hide-details outlined dense label="Emplacements" type="number" min="0" v-model="spellSlots[group]" @input="onInputSpellSlots"></v-text-field>
|
|
</div>
|
|
</div>
|
|
<div class="ml-md-12">
|
|
<div class="d-flex" v-if="spellSlots[group] > 0">
|
|
<div v-for="(slot, idx) in Number(spellSlots[group])" :key="idx">
|
|
<v-checkbox dark hide-details class="spell-slot"></v-checkbox>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</template>
|
|
|
|
<template v-slot:item.title="{ item }">
|
|
<span class="subtitle-2">{{ item.title }}</span>
|
|
</template>
|
|
|
|
<template v-slot:item.frontmatter.level="{ item }">
|
|
<span v-if="item.frontmatter.level == 0">Tour de magie</span>
|
|
<span v-else>{{ item.frontmatter.level }}</span>
|
|
</template>
|
|
|
|
<template v-slot:item.frontmatter.concentration="{ item }">
|
|
<span v-if="item.frontmatter.concentration">concentration</span>
|
|
</template>
|
|
|
|
<template v-slot:item.frontmatter.ritual="{ item }">
|
|
<span v-if="item.frontmatter.ritual">rituel</span>
|
|
</template>
|
|
|
|
<template v-slot:item.frontmatter.components="{ item }">
|
|
<template v-if="item.frontmatter.components">
|
|
<template v-if="item.frontmatter.components.verbal">V</template><template v-if="item.frontmatter.components.verbal && (item.frontmatter.components.somatic || item.frontmatter.components.material)">,</template>
|
|
<template v-if="item.frontmatter.components.somatic">S</template><template v-if="item.frontmatter.components.somatic && item.frontmatter.components.material">,</template>
|
|
<template v-if="item.frontmatter.components.material">M</template>
|
|
</template>
|
|
</template>
|
|
|
|
<template v-slot:item.actions="{ item }">
|
|
<div class="text-no-wrap">
|
|
<v-btn class="d-print-none" v-if="item.custom" small depressed icon @click="share(item)"><v-icon>mdi-share-variant</v-icon></v-btn>
|
|
<v-btn class="d-print-none mr-2" small depressed icon @click.stop="toggleHidePrint(item)">
|
|
<v-icon v-if="isHiddenPrint(item)">mdi-printer-off</v-icon>
|
|
<v-icon v-else>mdi-printer</v-icon>
|
|
</v-btn>
|
|
<v-btn class="d-print-none mr-2" small depressed link icon :to="{ path: '/creation-de-sort/', query: { key: item.key } }"><v-icon>mdi-pencil</v-icon></v-btn>
|
|
<v-btn color="error" class="d-print-none" small depressed icon @click="removeSpell(item)"><v-icon>mdi-delete</v-icon></v-btn>
|
|
</div>
|
|
</template>
|
|
|
|
</v-data-table>
|
|
</div>
|
|
<div class="d-none d-print-block">
|
|
<template v-for="(n, level) in 10" v-if="hasSpellOfLevel(level)">
|
|
<h2 v-if="level == 0">Tours de magie</h2>
|
|
<h2 v-else>Sorts de niveau {{ level }}</h2>
|
|
<div class="column-count-2">
|
|
<div v-for="spell in spells">
|
|
<template v-if="spell.frontmatter.level == level && !isHiddenPrint(spell)">
|
|
<h3 class="d-flex align-center title">
|
|
<div class="mr-4">{{ spell.title }}</div>
|
|
<v-btn class="d-print-none mr-2" small depressed link :to="{ path: '/creation-de-sort/', query: { key: spell.key } }"><v-icon left>mdi-pencil</v-icon> Modifier</v-btn>
|
|
<v-btn color="error" class="d-print-none" small depressed @click="removeSpell(spell)"><v-icon left>mdi-delete</v-icon> Supprimer</v-btn>
|
|
</h3>
|
|
<Spell :spell="getSpell(spell)" :isList="true" :hideTitle="true" />
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<template v-else>
|
|
Vous n'avez écrit aucun sort dans votre grimoire.
|
|
</template>
|
|
</div>
|
|
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import Spell from '@theme/components/Spell'
|
|
import { encode } from '@theme/util/homebrew'
|
|
|
|
export default {
|
|
name: 'MySpells',
|
|
|
|
components: {
|
|
Spell
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
sortBy: 'frontmatter.level',
|
|
sortDesc: false,
|
|
headers: [
|
|
{ text: "Nom", align: 'start', sortable: false, value: 'title' },
|
|
{ text: "Niveau", align: 'center', sortable: false, value: 'frontmatter.level' },
|
|
{ text: "École", align: 'start', sortable: false, value: 'frontmatter.school' },
|
|
{ text: "Temps d'incantation", align: 'start', sortable: false, value: 'frontmatter.casting_time' },
|
|
{ text: "Durée", align: 'start', sortable: false, value: 'frontmatter.duration' },
|
|
{ text: "Concentration", align: 'center', sortable: false, value: 'frontmatter.concentration' },
|
|
{ text: "Rituel", align: 'center', sortable: false, value: 'frontmatter.ritual' },
|
|
{ text: "Composantes", align: 'center', sortable: false, value: 'frontmatter.components' },
|
|
{ text: "", align: 'center', sortable: false, value: 'actions' },
|
|
]
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
spells () {
|
|
return this.$store.state.mySpells.spells
|
|
},
|
|
spellSlots: {
|
|
get () {
|
|
return this.$store.state.mySpells.spellSlots
|
|
},
|
|
set (value) {
|
|
this.$store.commit('mySpells/setSpells', value)
|
|
}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
displayLevel (level) {
|
|
if (level == 0 || level == "0") {
|
|
return 'Tours de magie'
|
|
} else {
|
|
return 'Sorts de niveau ' + level
|
|
}
|
|
},
|
|
onInputSpellSlots () {
|
|
this.$store.commit('mySpells/setSpellSlots', this.spellSlots)
|
|
},
|
|
hasSpellOfLevel (level) {
|
|
for (let spell of this.spells) {
|
|
if (spell.frontmatter.level == level && !this.isHiddenPrint(spell)) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
},
|
|
toggleHidePrint (spell) {
|
|
if (this.isHiddenPrint(spell)) {
|
|
this.$store.commit('mySpells/removeNotPrintedSpell', spell)
|
|
} else {
|
|
this.$store.commit('mySpells/addNotPrintedSpell', spell)
|
|
}
|
|
},
|
|
isHiddenPrint (spell) {
|
|
if (this.$store.state.mySpells.notPrintedSpells) {
|
|
let idx = this.$store.state.mySpells.notPrintedSpells.findIndex(item => item.key == spell.key)
|
|
if (idx >= 0) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
},
|
|
onClickRow (row, item) {
|
|
item.expand(!item.isExpanded)
|
|
},
|
|
removeSpell (spell) {
|
|
this.$store.commit('mySpells/removeSpell', spell)
|
|
this.$store.commit('setSnackbarText', "Le sort " + spell.title + " a été supprimé de votre grimoire")
|
|
this.$store.commit('setIsOpenSnackbar', true)
|
|
},
|
|
share (item) {
|
|
this.$store.commit('setShareURI', encode(item))
|
|
this.$store.commit('setIsOpenShareHomebrewDialog', true)
|
|
},
|
|
getSpell (item) {
|
|
if (!item.custom && item.path) {
|
|
let spell = this.$site.pages.find((el) => el.path === item.path || el.path === item.path + "/")
|
|
return spell
|
|
}
|
|
return item
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "../styles/colors";
|
|
.spell-slot {
|
|
margin: 0;
|
|
}
|
|
</style>
|