|
@@ -16,9 +16,10 @@ import { mdiChevronRight } from '@mdi/js';
|
|
import { mdiChevronDown } from '@mdi/js';
|
|
import { mdiChevronDown } from '@mdi/js';
|
|
|
|
|
|
export default {
|
|
export default {
|
|
- props: ['id', 'eid', 'entite'],
|
|
|
|
|
|
+ props: ['cid', 'eid', 'entite'],
|
|
data(){
|
|
data(){
|
|
return {
|
|
return {
|
|
|
|
+ concernement: null,
|
|
history_value: 0,
|
|
history_value: 0,
|
|
history_slider_ops: null,
|
|
history_slider_ops: null,
|
|
infos_opened: false,
|
|
infos_opened: false,
|
|
@@ -29,16 +30,17 @@ export default {
|
|
computed: {
|
|
computed: {
|
|
...mapState(ConcernementsStore,['map_mode',
|
|
...mapState(ConcernementsStore,['map_mode',
|
|
'opened_concernement',
|
|
'opened_concernement',
|
|
|
|
+ 'concernementsByID',
|
|
'ct_concernement',
|
|
'ct_concernement',
|
|
'ct_entite']),
|
|
'ct_entite']),
|
|
...mapState(UserStore,['name']),
|
|
...mapState(UserStore,['name']),
|
|
created(){
|
|
created(){
|
|
- let d = new Date(this.opened_concernement.created);
|
|
|
|
|
|
+ let d = new Date(this.concernement.created);
|
|
console.log('d', d);
|
|
console.log('d', d);
|
|
return d.toLocaleDateString("fr-FR");//.toISOString().split('T')[0];
|
|
return d.toLocaleDateString("fr-FR");//.toISOString().split('T')[0];
|
|
},
|
|
},
|
|
changed(){
|
|
changed(){
|
|
- let d = new Date(this.opened_concernement.changed);
|
|
|
|
|
|
+ let d = new Date(this.concernement.changed);
|
|
console.log('d', d);
|
|
console.log('d', d);
|
|
return d.toLocaleDateString("fr-FR");//.toISOString().split('T')[0];
|
|
return d.toLocaleDateString("fr-FR");//.toISOString().split('T')[0];
|
|
},
|
|
},
|
|
@@ -47,12 +49,14 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created () {
|
|
created () {
|
|
- console.log(`terrain de vie content created, id: ${this.id}, eid: ${this.eid}, opened_concernement:`, this.opened_concernement);
|
|
|
|
|
|
+ this.concernement = this.concernementsByID[this.cid];
|
|
|
|
+
|
|
|
|
+ console.log(`terraindevie created, cid: ${this.cid}, eid: ${this.eid}, this.concernement:`, this.concernement);
|
|
|
|
|
|
// revisions
|
|
// revisions
|
|
|
|
|
|
let data=[];
|
|
let data=[];
|
|
- this.opened_concernement.revisions.forEach(rev => {
|
|
|
|
|
|
+ this.concernement.revisions.forEach(rev => {
|
|
if (rev.entites.length > 3) {
|
|
if (rev.entites.length > 3) {
|
|
let d = new Date(rev.changed);
|
|
let d = new Date(rev.changed);
|
|
data.push({
|
|
data.push({
|
|
@@ -80,7 +84,7 @@ export default {
|
|
history_value: {
|
|
history_value: {
|
|
handler (n, o) {
|
|
handler (n, o) {
|
|
console.log(`TerrainDeVie watch history_value o:${o}, n:${n}`);
|
|
console.log(`TerrainDeVie watch history_value o:${o}, n:${n}`);
|
|
- this.setActiveRevision(this.opened_concernement.id, n);
|
|
|
|
|
|
+ this.setActiveRevision(this.concernement.id, n);
|
|
},
|
|
},
|
|
deep: true
|
|
deep: true
|
|
}
|
|
}
|
|
@@ -102,12 +106,12 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<template>
|
|
- <CartoucheLayout>
|
|
|
|
|
|
+ <CartoucheLayout :cid="cid">
|
|
<template v-slot:header>
|
|
<template v-slot:header>
|
|
<div class="entite">
|
|
<div class="entite">
|
|
<!-- TODO update entite with revisions -->
|
|
<!-- TODO update entite with revisions -->
|
|
- <span v-if="entite && opened_concernement.entites_byid[eid].menacemaintien < 0" class="menacemaintient">est menacé par</span>
|
|
|
|
- <span v-if="entite && opened_concernement.entites_byid[eid].menacemaintien > 0" class="menacemaintient">est maintenu par</span>
|
|
|
|
|
|
+ <span v-if="entite && concernement.entites_byid[eid].menacemaintien < 0" class="menacemaintient">est menacé par</span>
|
|
|
|
+ <span v-if="entite && concernement.entites_byid[eid].menacemaintien > 0" class="menacemaintient">est maintenu par</span>
|
|
<h3 v-if="entite"><span class="entite-point">•</span> {{ entite.title }}</h3>
|
|
<h3 v-if="entite"><span class="entite-point">•</span> {{ entite.title }}</h3>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -115,13 +119,13 @@ export default {
|
|
<template v-slot:main>
|
|
<template v-slot:main>
|
|
<!-- concernement -->
|
|
<!-- concernement -->
|
|
<template v-if="!entite">
|
|
<template v-if="!entite">
|
|
- <section v-if="opened_concernement.description" class="description">
|
|
|
|
|
|
+ <section v-if="concernement.description" class="description">
|
|
<label v-if="ct_concernement">{{ ct_concernement.field_description.description }}</label>
|
|
<label v-if="ct_concernement">{{ ct_concernement.field_description.description }}</label>
|
|
- <div v-html="opened_concernement.description"/>
|
|
|
|
|
|
+ <div v-html="concernement.description"/>
|
|
</section>
|
|
</section>
|
|
- <section v-if="opened_concernement.caillou" class="caillou">
|
|
|
|
|
|
+ <section v-if="concernement.caillou" class="caillou">
|
|
<label v-if="ct_concernement">{{ ct_concernement.field_caillou.description }}</label>
|
|
<label v-if="ct_concernement">{{ ct_concernement.field_caillou.description }}</label>
|
|
- <div v-html="opened_concernement.caillou"/>
|
|
|
|
|
|
+ <div v-html="concernement.caillou"/>
|
|
</section>
|
|
</section>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -140,14 +144,14 @@ export default {
|
|
<div
|
|
<div
|
|
class="author info"
|
|
class="author info"
|
|
@click="onClickInfos">
|
|
@click="onClickInfos">
|
|
- <span>une enquête de</span> {{ opened_concernement.author.username }}<br/>
|
|
|
|
|
|
+ <span>une enquête de</span> {{ concernement.author.username }}<br/>
|
|
</div>
|
|
</div>
|
|
<div class="wrapper" :class="{ 'opened': infos_opened }">
|
|
<div class="wrapper" :class="{ 'opened': infos_opened }">
|
|
- <div class="info structure" v-if="opened_concernement.author.structure.length"><span>avec</span> {{ opened_concernement.author.structure[0].name }}<br/></div>
|
|
|
|
- <div class="info lieu" v-if="opened_concernement.lieu.length"><span>à</span> {{ opened_concernement.lieu[0].name }}<br/></div>
|
|
|
|
|
|
+ <div class="info structure" v-if="concernement.author.structure.length"><span>avec</span> {{ concernement.author.structure[0].name }}<br/></div>
|
|
|
|
+ <div class="info lieu" v-if="concernement.lieu.length"><span>à</span> {{ concernement.lieu[0].name }}<br/></div>
|
|
<div class="info created"><span>démarrée le</span> {{ created }}<br/></div>
|
|
<div class="info created"><span>démarrée le</span> {{ created }}<br/></div>
|
|
<div class="info changed"><span>mise à jour le</span> {{ changed }}</div>
|
|
<div class="info changed"><span>mise à jour le</span> {{ changed }}</div>
|
|
- <div class="info recit-colophon" v-if="opened_concernement.recit_colophon" v-html="opened_concernement.recit_colophon"/>
|
|
|
|
|
|
+ <div class="info recit-colophon" v-if="concernement.recit_colophon" v-html="concernement.recit_colophon"/>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</section>
|
|
|
|
|