|
@@ -1,11 +1,18 @@
|
|
<template>
|
|
<template>
|
|
<component-debug :component="this">
|
|
<component-debug :component="this">
|
|
|
|
+ <div class="py-3">
|
|
|
|
+ <b-button @click="openText">
|
|
|
|
+ add text 50
|
|
|
|
+ </b-button>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
<component :is="mode" />
|
|
<component :is="mode" />
|
|
|
|
+ <text-card v-for="group in groups" :key="group.id" :id="group.id" />
|
|
</component-debug>
|
|
</component-debug>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { CardList, CardMap, TreeMap } from './biblio'
|
|
|
|
|
|
+import { CardList, CardMap, TreeMap, TextCard } from './biblio'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -14,11 +21,43 @@ export default {
|
|
components: {
|
|
components: {
|
|
CardList,
|
|
CardList,
|
|
CardMap,
|
|
CardMap,
|
|
- TreeMap
|
|
|
|
|
|
+ TreeMap,
|
|
|
|
+ TextCard
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ metaInfo () {
|
|
|
|
+ return {
|
|
|
|
+ title: this.groups.length ? 'Bibliothèque - ' + this.groups[0].id : 'Bibliothèque',
|
|
|
|
+ meta: [
|
|
|
|
+ { charset: 'utf-8' },
|
|
|
|
+ { name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
},
|
|
},
|
|
|
|
|
|
props: {
|
|
props: {
|
|
- mode: { type: String, required: true }
|
|
|
|
|
|
+ mode: { type: String, required: true },
|
|
|
|
+ texts: { type: Array, required: true }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ computed: {
|
|
|
|
+ groups () {
|
|
|
|
+ return this.texts.map(text => {
|
|
|
|
+ const [id, ...prod] = text
|
|
|
|
+ return { id, prod }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ methods: {
|
|
|
|
+ openText () {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ query: {
|
|
|
|
+ mode: this.mode,
|
|
|
|
+ texts: [...this.texts, [50]]
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|