mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-30 21:24:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			145 lines
		
	
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="magic-items">
 | |
| 
 | |
|     <div class="d-flex flex-wrap align-center">
 | |
|       <Breadcrumb class="mr-auto mb-4" />
 | |
|       <div class="d-flex flex-wrap align-center">
 | |
|         <v-btn color="primary" class="mr-4 mb-4" depressed link to="/creation-d-objet-magique/"><v-icon left>mdi-plus</v-icon> Créer un objet magique</v-btn>
 | |
|         <v-btn color="primary" class="mb-4" depressed link to="/mes-objets-magiques/">Mes objets magiques</v-btn>
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <h1>Liste des objets magiques</h1>
 | |
| 
 | |
|     <v-data-table
 | |
|       class="data-table"
 | |
|       :headers="headers"
 | |
|       :items="magicitems"
 | |
|       item-key="key"
 | |
|       :sort-by.sync="sortBy"
 | |
|       :sort-desc.sync="sortDesc"
 | |
|       must-sort
 | |
|       :search="search"
 | |
|     >
 | |
| 
 | |
|       <template v-slot:item.isInTreasureChest="{ item }">
 | |
|         <v-simple-checkbox off-icon="mdi-bookmark-outline" on-icon="mdi-bookmark" @input="toggleItemInTreasureChest(item)" :value="isItemInTreasureChest(item)"></v-simple-checkbox>
 | |
|       </template>
 | |
| 
 | |
|       <template v-slot:item.title="{ item }">
 | |
|         <router-link :to="{ path: item.path }" class="subtitle-2">{{ item.title }}</router-link>
 | |
|       </template>
 | |
| 
 | |
|       <template v-slot:item.frontmatter.attunement="{ item }">
 | |
|         <span v-if="item.frontmatter.attunement">{{ item.frontmatter.attunement }}</span>
 | |
|       </template>
 | |
| 
 | |
|     </v-data-table>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import { mapState } from 'vuex'
 | |
| import Breadcrumb from '@theme/components/Breadcrumb'
 | |
| 
 | |
| export default {
 | |
|   components: { Breadcrumb },
 | |
| 
 | |
|   data () {
 | |
|     return {
 | |
|       sortBy: 'title',
 | |
|       sortDesc: false,
 | |
|       headers: [
 | |
|         { text: "", align: 'center', sortable: false, value: 'isInTreasureChest' },
 | |
|         { text: "Nom", align: 'start', sortable: true, value: 'title' },
 | |
|         { text: "Type", align: 'start', sortable: false, value: 'frontmatter.type' },
 | |
|         { text: "Rareté", align: 'start', sortable: false, value: 'frontmatter.rarity' },
 | |
|         { text: "Harmonisation", align: 'start', sortable: false, value: 'frontmatter.attunement' },
 | |
|       ],
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   computed: {
 | |
|     ...mapState({
 | |
|       search: state => state.magicItemFilters.search,
 | |
|       types: state => state.magicItemFilters.types,
 | |
|       rarities: state => state.magicItemFilters.rarities,
 | |
|       hasAttunement: state => state.magicItemFilters.hasAttunement,
 | |
|     }),
 | |
| 
 | |
|     magicitems() {
 | |
|       let results = this.$pagination.pages
 | |
| 
 | |
|       // Filter attunement
 | |
|       if (this.hasAttunement !== undefined) {
 | |
|         if (this.hasAttunement === true) {
 | |
|           results = results.filter(item => {
 | |
|             return item.frontmatter.attunement
 | |
|           })
 | |
|         } else {
 | |
|           results = results.filter(item => {
 | |
|             return item.frontmatter.attunement === false
 | |
|           })
 | |
|         }
 | |
|       }
 | |
| 
 | |
|       // Filter types
 | |
|       let selectedTypes = []
 | |
|       for (var i = 0; i < this.types.length; i++) {
 | |
|         if (this.types[i].value) {
 | |
|           selectedTypes.push(this.types[i].label)
 | |
|         }
 | |
|       }
 | |
|       if (selectedTypes.length) {
 | |
|         results = results.filter(item => {
 | |
|           return selectedTypes.indexOf(item.frontmatter.type) > -1
 | |
|         })
 | |
|       }
 | |
| 
 | |
|       // Filter rarities
 | |
|       let selectedRarities = []
 | |
|       for (var i = 0; i < this.rarities.length; i++) {
 | |
|         if (this.rarities[i].value) {
 | |
|           selectedRarities.push(this.rarities[i].label)
 | |
|         }
 | |
|       }
 | |
|       if (selectedRarities.length) {
 | |
|         results = results.filter(item => {
 | |
|           return selectedRarities.indexOf(item.frontmatter.rarity) > -1
 | |
|         })
 | |
|       }
 | |
| 
 | |
|       return results
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   methods: {
 | |
|     isItemInTreasureChest (magicItem) {
 | |
|       let isInTreasureChest = false
 | |
|       for (let mi of this.$store.state.myMagicItems.magicItems) {
 | |
|         if (mi.key == magicItem.key) {
 | |
|           isInTreasureChest = true
 | |
|         }
 | |
|       }
 | |
|       return isInTreasureChest
 | |
|     },
 | |
|     toggleItemInTreasureChest (magicItem) {
 | |
|       if (this.isItemInTreasureChest(magicItem)) {
 | |
|         this.$store.commit('myMagicItems/removeMagicItem', magicItem)
 | |
|       } else {
 | |
|         this.$store.commit('myMagicItems/addMagicItem', magicItem)
 | |
|       }
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   mounted () {
 | |
|     this.$store.commit('setHasRightDrawer', true)
 | |
|     this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
 | |
|     this.$store.commit('setInRightDrawer', 'magicItemFilters')
 | |
|   }
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
| 
 | |
| </style>
 | 
