2020-12-01 23:02:35 +01:00
|
|
|
<template>
|
2020-12-23 19:11:46 +01:00
|
|
|
<div class="loading" v-if="!material || loading">
|
|
|
|
<span>Loading ...</span>
|
|
|
|
</div>
|
|
|
|
<article v-else class="card modal-card">
|
2020-12-01 23:02:35 +01:00
|
|
|
<section class="col col-right">
|
|
|
|
<header>
|
2020-12-23 19:11:46 +01:00
|
|
|
<h1>{{ material.title }}</h1>
|
|
|
|
<h4>{{ material.short_description }}</h4>
|
|
|
|
<span class="ref">{{ material.reference }}</span>
|
2020-12-01 23:02:35 +01:00
|
|
|
</header>
|
|
|
|
<nav class="tools">
|
2020-12-07 23:11:31 +01:00
|
|
|
<section class="tool close">
|
|
|
|
<span
|
|
|
|
class="btn mdi mdi-close"
|
|
|
|
@click.prevent="onCloseModalCard"
|
|
|
|
/>
|
|
|
|
</section>
|
2020-12-01 23:02:35 +01:00
|
|
|
<section class="tool flags">
|
|
|
|
<span class="btn mdi mdi-folder-outline"/>
|
|
|
|
<div class="tool-content">
|
2021-01-22 12:12:31 +01:00
|
|
|
<span class="label">{{ $t("materio.My folders") }}</span>
|
2020-12-01 23:02:35 +01:00
|
|
|
<ul>
|
|
|
|
<li v-if="flagcolls" v-for="coll in flagcolls" :key="coll.id">
|
|
|
|
<span
|
|
|
|
class="flag mdi"
|
|
|
|
:class="[
|
|
|
|
flagIsLoading(coll.id) ? 'mdi-loading mdi-spin' : flagIsActive(coll.id) ? 'mdi-close-circle isActive' : 'mdi-plus'
|
|
|
|
]"
|
|
|
|
:collid="coll.id"
|
|
|
|
@click.prevent="onFlagActionCard"
|
|
|
|
>
|
|
|
|
{{ coll.name }}
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-01-26 16:44:21 +01:00
|
|
|
<!-- <section class="tool samples" v-if="item.samples && item.samples.length">
|
2021-01-22 12:12:31 +01:00
|
|
|
<span class="btn mdi mdi-beaker-outline"/>
|
|
|
|
<div class="tool-content">
|
|
|
|
<span class="label">{{ $t("materio.Samples") }}</span>
|
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
v-for="sample in material.samples"
|
|
|
|
:key="sample.showroom.id"
|
|
|
|
>
|
|
|
|
<span class="showroom">{{ sample.showroom.name }}</span>: {{ sample.location }}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2021-01-26 16:44:21 +01:00
|
|
|
</section> -->
|
2021-01-26 16:36:27 +01:00
|
|
|
<section class="tool note">
|
|
|
|
<span class="btn mdi mdi-square-edit-outline"/>
|
|
|
|
<div class="tool-content">
|
|
|
|
<textarea spellcheck="false" v-model="note" name="note"/>
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-01-25 22:19:21 +01:00
|
|
|
<section class="tool print">
|
|
|
|
<a :href="material.path+'/printable/print'" target="_blank">
|
|
|
|
<span class="btn mdi mdi-printer"/>
|
|
|
|
</a>
|
|
|
|
</section>
|
2021-01-25 17:13:38 +01:00
|
|
|
<!-- <section class="tool industriels" v-if="material.manufacturer || material.distributor">
|
2021-01-22 12:12:31 +01:00
|
|
|
<span class="btn mdi mdi-factory"/>
|
|
|
|
<div class="tool-content">
|
|
|
|
<section v-if="material.distributor">
|
|
|
|
<span class="label">{{ $t("materio.Distributor") }}</span>
|
|
|
|
<ul>
|
|
|
|
<li v-for="distrib in material.distributor" v-bind:key="distrib.id">
|
|
|
|
<h2>{{ distrib.name }}</h2>
|
|
|
|
<p v-if="distrib.website">
|
|
|
|
<a target="_blank" :href="distrib.website.url">distrib.website.url</a>
|
|
|
|
</p>
|
|
|
|
<p v-if="distrib.email"><a :href="'mailto:'+distrib.email">{{ distrib.email }}</a></p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
<section v-if="material.manufacturer">
|
|
|
|
<span class="label">{{ $t("materio.Manufacturer") }}</span>
|
|
|
|
<ul>
|
|
|
|
<li v-for="manu in material.manufacturer" v-bind:key="manu.id">
|
|
|
|
<h2>{{ manu.name }}</h2>
|
|
|
|
<p v-if="manu.website">
|
|
|
|
<a target="_blank" :href="manu.website.url">manu.website.url</a>
|
|
|
|
</p>
|
|
|
|
<p v-if="manu.email"><a :href="'mailto:'+manu.email">{{ manu.email }}</a></p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</div>
|
2021-01-25 17:13:38 +01:00
|
|
|
</section> -->
|
2020-12-01 23:02:35 +01:00
|
|
|
</nav>
|
2021-01-25 17:13:38 +01:00
|
|
|
<vsa-list>
|
2021-01-26 11:29:23 +01:00
|
|
|
<vsa-item :initActive="true">
|
|
|
|
<vsa-heading>
|
|
|
|
<span class="label">Description</span>
|
|
|
|
</vsa-heading>
|
|
|
|
<vsa-content>
|
|
|
|
<section class="body" v-html="material.body"/>
|
|
|
|
</vsa-content>
|
|
|
|
</vsa-item>
|
|
|
|
|
2021-01-26 16:44:21 +01:00
|
|
|
<vsa-item v-if="item.samples && item.samples.length">
|
|
|
|
<vsa-heading>
|
|
|
|
<span class="label">{{ $t("materio.Samples") }}</span>
|
|
|
|
</vsa-heading>
|
|
|
|
<vsa-content>
|
|
|
|
<section class="samples">
|
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
v-for="sample in material.samples"
|
|
|
|
:key="sample.showroom.id"
|
|
|
|
>
|
|
|
|
<span class="showroom">{{ sample.showroom.name }}</span>: {{ sample.location }}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</vsa-content>
|
|
|
|
</vsa-item>
|
|
|
|
|
2021-01-25 17:13:38 +01:00
|
|
|
<vsa-item v-if="material.linked_materials">
|
|
|
|
<vsa-heading>
|
|
|
|
<span class="label">{{ $t("materio.Linked materials") }}</span>
|
|
|
|
</vsa-heading>
|
|
|
|
<vsa-content>
|
|
|
|
<section class="linked-materials">
|
|
|
|
<ul>
|
|
|
|
<li v-for="m in material.linked_materials" v-bind:key="m.id">
|
|
|
|
<LinkedMaterialCard :item="m"/>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</vsa-content>
|
|
|
|
</vsa-item>
|
|
|
|
|
|
|
|
<vsa-item v-if="material.manufacturer || material.distributor">
|
|
|
|
<vsa-heading>
|
|
|
|
<span class="label">{{ $t("default.Contact") }}</span>
|
|
|
|
</vsa-heading>
|
|
|
|
<vsa-content>
|
|
|
|
<section class="industriels">
|
|
|
|
<section v-if="material.manufacturer">
|
|
|
|
<span class="label">{{ $t("materio.Manufacturer") }}</span>
|
|
|
|
<ul>
|
|
|
|
<li v-for="manu in material.manufacturer" v-bind:key="manu.id">
|
|
|
|
<h2>{{ manu.name }}</h2>
|
|
|
|
<p v-if="manu.website">
|
2021-01-26 11:43:42 +01:00
|
|
|
<a target="_blank" :href="manu.website.url">{{shortUrl(manu.website.url)}}</a>
|
2021-01-25 17:13:38 +01:00
|
|
|
</p>
|
|
|
|
<p v-if="manu.email"><a :href="'mailto:'+manu.email">{{ manu.email }}</a></p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
2021-01-26 11:43:42 +01:00
|
|
|
<section v-if="material.distributor">
|
|
|
|
<span class="label">{{ $t("materio.Distributor") }}</span>
|
|
|
|
<ul>
|
|
|
|
<li v-for="distrib in material.distributor" v-bind:key="distrib.id">
|
|
|
|
<h2>{{ distrib.name }}</h2>
|
|
|
|
<p v-if="distrib.website">
|
|
|
|
<a target="_blank" :href="distrib.website.url">{{shortUrl(distrib.website.url)}}</a>
|
|
|
|
</p>
|
|
|
|
<p v-if="distrib.email"><a :href="'mailto:'+distrib.email">{{ distrib.email }}</a></p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
2021-01-25 17:13:38 +01:00
|
|
|
</section>
|
|
|
|
</vsa-content>
|
|
|
|
</vsa-item>
|
|
|
|
|
|
|
|
<vsa-item v-if="material.attachments && material.attachments.length">
|
|
|
|
<vsa-heading>
|
|
|
|
<span class="label">{{ $t("materio.Attachments") }}</span>
|
|
|
|
</vsa-heading>
|
|
|
|
<vsa-content>
|
|
|
|
<section class="attachments">
|
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
v-for="attachmt in material.attachments" :key="attachmt.file.fid"
|
|
|
|
>
|
|
|
|
<a target="_blank" :href="attachmt.file.url">{{ attachmt.file.filename}} <span>({{ prettyFileSize(attachmt.file.filesize) }})</span></a>
|
|
|
|
<p v-if="attachmt.description" class="description" v-html="attachmt.description" />
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</vsa-content>
|
|
|
|
</vsa-item>
|
|
|
|
</vsa-list>
|
2020-12-01 23:02:35 +01:00
|
|
|
</section>
|
|
|
|
<section class="col col-left images" v-switcher>
|
|
|
|
<figure
|
2020-12-23 19:11:46 +01:00
|
|
|
v-for="(img, index) in material.images"
|
2020-12-01 23:02:35 +01:00
|
|
|
:key="img.url"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
class="lazy"
|
|
|
|
v-lazy="index"
|
2020-12-23 19:11:46 +01:00
|
|
|
:data-src="img.style_cardfull.url"
|
2020-12-01 23:02:35 +01:00
|
|
|
:title="img.title"
|
|
|
|
/>
|
|
|
|
<img
|
|
|
|
class="blank"
|
|
|
|
:src="blanksrc"
|
|
|
|
@click="lightbox_index = index"
|
|
|
|
>
|
|
|
|
</figure>
|
|
|
|
</section>
|
|
|
|
<CoolLightBox
|
2020-12-23 19:11:46 +01:00
|
|
|
:items="material.images"
|
2020-12-01 23:02:35 +01:00
|
|
|
:index="lightbox_index"
|
2020-12-23 19:11:46 +01:00
|
|
|
srcName="url"
|
2020-12-07 23:11:31 +01:00
|
|
|
:loop="true"
|
2020-12-01 23:02:35 +01:00
|
|
|
@close="lightbox_index = null">
|
|
|
|
</CoolLightBox>
|
|
|
|
</article>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { mapState, mapActions } from 'vuex'
|
2021-01-20 12:09:22 +01:00
|
|
|
|
|
|
|
import LinkedMaterialCard from 'vuejs/components/Content/LinkedMaterialCard'
|
|
|
|
|
2020-12-01 23:02:35 +01:00
|
|
|
import cardMixins from 'vuejs/components/cardMixins'
|
|
|
|
|
2021-01-26 16:36:27 +01:00
|
|
|
import { REST } from 'vuejs/api/rest-axios'
|
2020-12-23 19:11:46 +01:00
|
|
|
import { MGQ } from 'vuejs/api/graphql-axios'
|
|
|
|
import { print } from 'graphql/language/printer'
|
|
|
|
import gql from 'graphql-tag'
|
|
|
|
import materiauFields from 'vuejs/api/gql/materiaumodal.fragment.gql'
|
|
|
|
|
2021-01-25 16:15:03 +01:00
|
|
|
const prettyBytes = require('pretty-bytes')
|
|
|
|
|
2021-01-26 16:36:27 +01:00
|
|
|
const _debounce = require('lodash/debounce')
|
|
|
|
|
2020-12-01 23:02:35 +01:00
|
|
|
export default {
|
|
|
|
name: "ModalCard",
|
|
|
|
props: ['item'],
|
|
|
|
mixins: [cardMixins],
|
2021-01-20 12:09:22 +01:00
|
|
|
components: {
|
|
|
|
LinkedMaterialCard
|
|
|
|
},
|
2020-12-01 23:02:35 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2020-12-23 19:11:46 +01:00
|
|
|
material: null,
|
|
|
|
loading: false,
|
2020-12-01 23:02:35 +01:00
|
|
|
blanksrc:`${drupalSettings.path.themePath}/assets/img/blank.gif`,
|
|
|
|
loadingFlag: false,
|
2021-01-26 16:36:27 +01:00
|
|
|
lightbox_index: null,
|
|
|
|
note: "",
|
|
|
|
note_nid: null
|
2020-12-01 23:02:35 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState({
|
2021-01-26 16:36:27 +01:00
|
|
|
csrf_token: state => state.User.csrf_token,
|
2020-12-07 23:11:31 +01:00
|
|
|
flagcolls: state => state.User.flagcolls,
|
|
|
|
showrooms: state => state.Showrooms.showrooms_by_tid
|
2020-12-01 23:02:35 +01:00
|
|
|
})
|
|
|
|
},
|
2020-12-07 23:11:31 +01:00
|
|
|
created () {
|
|
|
|
console.log('modale item', this.item)
|
2020-12-23 19:11:46 +01:00
|
|
|
this.loadMaterial()
|
2021-01-26 16:36:27 +01:00
|
|
|
this.debouncedSaveNote = _debounce(this.saveNote, 500)
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
// whenever question changes, this function will run
|
|
|
|
note: function (n, o) {
|
|
|
|
console.log("note watcher: note", n)
|
|
|
|
this.debouncedSaveNote()
|
|
|
|
}
|
2020-12-07 23:11:31 +01:00
|
|
|
},
|
2020-12-01 23:02:35 +01:00
|
|
|
methods: {
|
|
|
|
...mapActions({
|
|
|
|
flagUnflag: 'User/flagUnflag'
|
|
|
|
}),
|
2020-12-23 19:11:46 +01:00
|
|
|
loadMaterial(){
|
|
|
|
console.log('loadMaterial', this.item.id)
|
|
|
|
this.loading = true
|
|
|
|
let ast = gql`{
|
2021-01-19 11:42:14 +01:00
|
|
|
materiau(id: ${this.item.id}, lang: "${drupalDecoupled.lang_code}") {
|
2020-12-23 19:11:46 +01:00
|
|
|
...MateriauFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${ materiauFields }
|
|
|
|
`
|
|
|
|
MGQ.post('', { query: print(ast)
|
|
|
|
})
|
|
|
|
.then(({ data:{data:{materiau}}}) => {
|
2021-01-20 12:09:22 +01:00
|
|
|
console.log('loadMaterial material loaded', materiau )
|
2020-12-23 19:11:46 +01:00
|
|
|
this.material = materiau
|
|
|
|
this.loading = false
|
2021-01-26 16:36:27 +01:00
|
|
|
if(materiau.note && materiau.note.id){
|
|
|
|
this.note_id = materiau.note.id
|
|
|
|
this.note = materiau.note.contenu
|
|
|
|
}
|
2020-12-23 19:11:46 +01:00
|
|
|
// delay the lazyload to let the card the time to update dom
|
|
|
|
// maybe not the best method
|
|
|
|
setTimeout(function () {
|
|
|
|
this.activateLazyLoad()
|
|
|
|
}.bind(this), 5)
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.warn('Issue with loadMaterial', error)
|
|
|
|
Promise.reject(error)
|
|
|
|
})
|
|
|
|
},
|
2020-12-01 23:02:35 +01:00
|
|
|
flagIsActive(collid) {
|
|
|
|
// console.log(this.item.uuid);
|
|
|
|
// console.log(this.flagcolls[collid].items_uuids);
|
2020-12-23 18:05:25 +01:00
|
|
|
// return this.flagcolls[collid].items_uuids.indexOf(this.item.uuid) !== -1;
|
|
|
|
return this.flagcolls[collid].items.indexOf(this.item.id) !== -1;
|
2020-12-01 23:02:35 +01:00
|
|
|
},
|
|
|
|
flagIsLoading(collid) {
|
|
|
|
// console.log(this.item.uuid);
|
|
|
|
// console.log(this.flagcolls[collid].items_uuids);
|
|
|
|
return collid === this.loadingFlag;
|
|
|
|
},
|
|
|
|
onFlagActionCard (e) {
|
|
|
|
console.log("Card onFlagActionCard", e);
|
|
|
|
if (!this.loadingFlag) {
|
|
|
|
let collid = e.target.getAttribute('collid');
|
|
|
|
let isActive = this.flagIsActive(collid);
|
|
|
|
let action = isActive ? 'unflag' : 'flag';
|
|
|
|
// console.log('collid', collid);
|
|
|
|
// console.log("this.item", this.item);
|
|
|
|
this.loadingFlag = collid;
|
2020-12-23 18:05:25 +01:00
|
|
|
this.flagUnflag({ action: action, id: this.item.id, collid: collid})
|
2020-12-01 23:02:35 +01:00
|
|
|
.then(data => {
|
|
|
|
console.log("onFlagActionCard then", data);
|
|
|
|
this.loadingFlag = false;
|
|
|
|
})
|
|
|
|
}
|
2020-12-07 23:11:31 +01:00
|
|
|
},
|
|
|
|
onCloseModalCard (e) {
|
2021-01-20 12:42:21 +01:00
|
|
|
// this.$modal.hideAll()
|
|
|
|
this.$modal.hide(`modal-${this.item.id}`)
|
2021-01-25 16:15:03 +01:00
|
|
|
},
|
|
|
|
prettyFileSize(bytes){
|
|
|
|
return prettyBytes(parseInt(bytes))
|
2021-01-26 11:43:42 +01:00
|
|
|
},
|
|
|
|
shortUrl(url){
|
|
|
|
return url.replace(/^http:\/\//, '').replace(/^www\./, '')
|
2021-01-26 16:36:27 +01:00
|
|
|
},
|
|
|
|
saveNote(){
|
|
|
|
console.log("saveNote", this.note);
|
|
|
|
if(this.note_nid){
|
|
|
|
this.updateNote()
|
|
|
|
}else{
|
|
|
|
this.createNote()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
updateNote(){
|
|
|
|
let params = {
|
|
|
|
type: [{target_id:'note'}],
|
|
|
|
field_contenu: this.note
|
|
|
|
}
|
|
|
|
let config = {
|
|
|
|
headers:{
|
|
|
|
"X-CSRF-Token": this.csrf_token
|
|
|
|
}
|
|
|
|
}
|
|
|
|
REST.patch(`/node/${this.note_nid}?_format=json`, params, config)
|
|
|
|
.then(({ data }) => {
|
|
|
|
console.log('updateNote REST data', data)
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.warn('Issue with updateNote', error)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
createNote(){
|
|
|
|
let params = {
|
|
|
|
type: [{target_id:'note'}],
|
|
|
|
title: [{value:`note`}],
|
|
|
|
field_contenu: this.note,
|
|
|
|
field_target: this.item.id
|
|
|
|
}
|
|
|
|
let config = {
|
|
|
|
headers:{
|
|
|
|
"X-CSRF-Token": this.csrf_token
|
|
|
|
}
|
|
|
|
}
|
|
|
|
REST.post('/node?_format=json', params, config)
|
|
|
|
.then(({ data }) => {
|
|
|
|
console.log('createNote REST data', data)
|
|
|
|
this.note_nid = data.nid[0].value
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.warn('Issue with createNote', error)
|
|
|
|
})
|
2020-12-01 23:02:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|