| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 | 
							- <template>
 
-   <div class="loading" v-if="!content || loading">
 
-     <span>Loading ...</span>
 
-   </div>
 
-   <article class="article" v-else>
 
-     <nav class="prevnext top">
 
-       <ul>
 
-         <li>
 
-           <a
 
-             @click.prevent="onPrev"
 
-             href="#"
 
-             v-if="prevnext.prev"
 
-             v-html="prevnext.prev.title"
 
-           />
 
-         </li>
 
-         <li>
 
-           <a
 
-             @click.prevent="onNext"
 
-             href="#"
 
-             v-if="prevnext.next"
 
-             v-html="prevnext.next.title"
 
-           />
 
-         </li>
 
-       </ul>
 
-     </nav>
 
-     <div class="cols">
 
-       <div class="col col-left">
 
-         <section v-if="content.image_accroche" class="accroche">
 
-           <figure>
 
-             <img
 
-               :src="content.image_accroche.src"
 
-               :alt="content.image_accroche.alt"
 
-               :title="content.image_accroche.title"
 
-             />
 
-           </figure>
 
-         </section>
 
-         <section class="taxonomy">
 
-           <div class="thesaurus">
 
-             <ul>
 
-               <li
 
-                 v-for="term in content.field_thesaurus" v-bind:key="term.id"
 
-                 >{{ term.name }}</li>
 
-             </ul>
 
-           </div>
 
-           <div class="tags">
 
-             <ul>
 
-               <li
 
-                 v-for="term in content.field_tags" v-bind:key="term.id"
 
-                 >{{ term.name }}</li>
 
-             </ul>
 
-           </div>
 
-         </section>
 
-         <section v-if="content.field_showroom" class="showroom">
 
-           <h2>{{ content.field_showroom.name }}</h2>
 
-           <a class="mail" :href="'mail:'+content.field_showroom.field_public_email">
 
-             {{ content.field_showroom.field_public_email }}</a>
 
-           <br/>
 
-           <a class="phone" :href="'tel:' + content.field_showroom.field_public_phone">
 
-             {{ content.field_showroom.field_public_phone }}</a>
 
-         </section>
 
-       </div> <!-- //col-left -->
 
-       <div class="col col-right">
 
-         <section class="body" v-html="content.body"></section>
 
-         <CoolLightBox
 
-           :items="content.lightbox_items"
 
-           :index="lightbox_index"
 
-           :loop="true"
 
-           @close="lightbox_index = null">
 
-         </CoolLightBox>
 
-         <div class="gallery-wrapper">
 
-           <div
 
-             class="image"
 
-             v-for="(image, imageIndex) in content.lightbox_items"
 
-             :key="imageIndex"
 
-             @click="setLightboxIndex(imageIndex)"
 
-             :style="{ backgroundImage: 'url(' + image.thumb + ')' }"
 
-           ></div>
 
-         </div>
 
-         <aside class="linked-materials">
 
-           <h3 class="field__label">{{$t("materio.Linked Materials")}}</h3>
 
-           <div class="card-list">
 
-             <ul class="">
 
-               <li v-for="node in content.field_linked_materials" v-bind:key="node.id">
 
-                 <Card :item="node" />
 
-               </li>
 
-             </ul>
 
-           </div>
 
-         </aside>
 
-       </div> <!-- // col-right -->
 
-     </div> <!-- // cols -->
 
-     <nav class="prevnext bottom">
 
-       <ul>
 
-         <li>
 
-           <a
 
-             @click.prevent="onPrev"
 
-             href="#"
 
-             v-if="prevnext.prev"
 
-             v-html="prevnext.prev.title"
 
-           />
 
-         </li>
 
-         <li>
 
-           <a
 
-             @click.prevent="onNext"
 
-             href="#"
 
-             v-if="prevnext.next"
 
-             v-html="prevnext.next.title"
 
-           />
 
-         </li>
 
-       </ul>
 
-     </nav>
 
-   </article>
 
- </template>
 
- <script>
 
- import router from 'vuejs/route'
 
- import store from 'vuejs/store'
 
- import { JSONAPI } from 'vuejs/api/json-axios'
 
- import { REST } from 'vuejs/api/rest-axios'
 
- import qs from 'querystring-es3'
 
- import Card from 'vuejs/components/Content/Card'
 
- import { mapState, mapActions } from 'vuex'
 
- export default {
 
-   name: "Article",
 
-   router,
 
-   store,
 
-   props: ['item'],
 
-   data(){
 
-     return {
 
-       index:-1,
 
-       prevnext:{},
 
-       uuid:null,
 
-       content:null,
 
-       loading:true,
 
-       lightbox_index:null,
 
-     }
 
-   },
 
-   computed: {
 
-     ...mapState({
 
-       items: state => state.Blabla.items
 
-     })
 
-   },
 
-   created(){
 
-     this.getArticle()
 
-   },
 
-   methods: {
 
-     ...mapActions({
 
-       getItems: 'Blabla/getItems',
 
-       getItemIndex: 'Blabla/getItemIndex',
 
-       getPrevNextItems: 'Blabla/getPrevNextItems'
 
-     }),
 
-     getArticle(){
 
-       console.log(this.$route);
 
-       // get the article uuid
 
-       if(this.$route.query.uuid){
 
-         // we come from internal link with vuejs
 
-         // directly record uuid
 
-         this.uuid = this.$route.query.uuid
 
-       }else if(drupalDecoupled.entity_type == 'node' && drupalDecoupled.entity_bundle == 'article'){
 
-         // we landed in an internal page
 
-         // get the uuid from drupalDeclouped, provided by materio_decoupled.module
 
-         this.uuid = drupalDecoupled.entity_uuid
 
-       }
 
-       if(this.uuid){
 
-         this.loadArticle()
 
-         // get the prev next items
 
-         if(!this.items.length){
 
-           // if items list not yet loaded preload them
 
-           this.getItems().then(() => {
 
-             // then get the index
 
-             this.getIndex()
 
-           })
 
-         }else{
 
-           // or directly get the index
 
-           this.getIndex()
 
-         }
 
-       }else{
 
-         // if for any reason we dont have the uuid
 
-         // redirect to home
 
-         this.$route.replace('home')
 
-       }
 
-     },
 
-     getIndex(){
 
-       console.log("Article getIndex");
 
-       this.getItemIndex(this.uuid).then((index) => {
 
-         this.index = index
 
-         // console.log('article index', index, this);
 
-         this.getPrevNextItems(index).then((pn) => {
 
-           this.prevnext = pn
 
-         })
 
-       })
 
-     },
 
-     loadArticle(){
 
-       console.log('loadArticle', this.uuid)
 
-       this.loading = true;
 
-       let params = {
 
-         include:'field_linked_materials.images,field_showroom,field_tags,field_thesaurus,field_visuel,uid'
 
-       }
 
-       let q = qs.stringify(params)
 
-       JSONAPI.get(`node/article/${this.uuid}?${q}`)
 
-         .then(({ data }) => {
 
-           console.log('loadArticle data', data)
 
-           this.parseData(data)
 
-         })
 
-         .catch(( error ) => {
 
-             console.warn('Issue with loadArticle', error)
 
-             Promise.reject(error)
 
-         })
 
-     },
 
-     parseData(data){
 
-       let attrs = data.data.attributes
 
-       let relations = data.data.relationships
 
-       console.log('relations', relations);
 
-       let inc = data.included
 
-       console.log('included', inc);
 
-       this.content = {
 
-         title:attrs.title,
 
-         body: attrs.body.value
 
-       }
 
-       // build lightbox array
 
-       // will be filled by videos and field_visuel
 
-       this.content.lightbox_items = [];
 
-       // parse embeded videos pushing it in lightbox
 
-       for(let key in attrs.field_video){
 
-         let videolink = attrs.field_video[key]
 
-         // console.log('videolink', videolink);
 
-         let provider_regex = /https:\/\/(www\.)?(?<provider>youtube|vimeo)\.com\/.+/;
 
-         let match = provider_regex.exec(videolink)
 
-         // console.log('provider', match.groups.provider);
 
-         let video_id = null;
 
-         let video_thumb = null;
 
-         switch (match.groups.provider) {
 
-           case 'vimeo':
 
-             let vimeo_regex = /https:\/\/vimeo\.com\/(?<id>\d+)/;
 
-             video_id = vimeo_regex.exec(videolink).groups.id || null;
 
-             // TODO: get the vimeo thumb https://coderwall.com/p/fdrdmg/get-a-thumbnail-from-a-vimeo-video
 
-             video_thumb = "http://blogpeda.ac-poitiers.fr/ent-lyc/files/2015/06/Vimeo_icon_block.png"
 
-             break;
 
-           case 'youtube':
 
-             let youtube_regex = /https:\/\/(www\.)?youtube\.com\/watch\?v=(?<id>.+)/;
 
-             video_id = youtube_regex.exec(videolink).groups.id || null;
 
-             video_thumb = "http://img.youtube.com/vi/"+video_id+"/0.jpg"
 
-             break;
 
-         }
 
-         // console.log('video_id', video_id);
 
-         this.content.lightbox_items.push({
 
-           src: videolink,
 
-           title: "",
 
-           description: "",
 
-           thumb: video_thumb
 
-         });
 
-         // this.content.videos.push({
 
-         //   provider: match.groups.provider,
 
-         //   id: video_id,
 
-         //   href: videolink
 
-         // });
 
-       }
 
-       // parse all relationships
 
-       for (let key in relations) {
 
-         // skip loop if the property is from prototype
 
-         if (!relations.hasOwnProperty(key)) continue;
 
-         let relation_obj = relations[key]
 
-         console.log("relation", key, relation_obj);
 
-         // console.log('typeof relation_obj.data', typeof relation_obj.data);
 
-         if(!relation_obj.data) continue;
 
-         // showroom is unique field so no array in data
 
-         // we parse it here
 
-         switch (key) {
 
-           case 'field_showroom':
 
-             let included = inc.find((i) => { return i.id == relation_obj.data.id })
 
-             // console.log('included',included);
 
-             this.content[key] = included.attributes;
 
-             break
 
-         }
 
-         // skip relation_obj if data is not array
 
-         if(!Array.isArray(relation_obj.data)) continue
 
-         // create empty field array
 
-         this.content[key] = []
 
-         // parse relationship values using included
 
-         let field = {}
 
-         // loop through all relation items
 
-         relation_obj.data.forEach((e) => {
 
-           // get the included values for each item using id
 
-           let included = inc.find((i) => { return i.id == e.id })
 
-           // if we not found an included item skip the item
 
-           if(typeof included != 'undefined'){
 
-             // fill the item values
 
-             switch (key) {
 
-               case 'field_visuel':
 
-                 // build the field object (not used for now)
 
-                 field = e.meta
 
-                 field.id = e.id
 
-                 field.src = included.attributes.uri.url
 
-                 field.thumb = included.links.article_card_medium.href
 
-                 break;
 
-               case 'field_linked_materials':
 
-                 field = included.attributes
 
-                 field.id = field.uuid = included.id
 
-                 // get the linked material included images
 
-                 field.images = [];
 
-                 included.relationships.images.data.forEach((img) => {
 
-                   // console.log('href', img.meta.imageDerivatives.links.card_medium.href);
 
-                   if(img.meta.imageDerivatives){
 
-                     field.images.push({
 
-                       title:img.meta.title,
 
-                       src: img.meta.imageDerivatives.links.hd.href,
 
-                       img_styles: {
 
-                         card_medium: img.meta.imageDerivatives.links.card_medium.href,
 
-                         card_full: img.meta.imageDerivatives.links.card_full.href
 
-                       }
 
-                     })
 
-                   }
 
-                 })
 
-                 break;
 
-               case 'field_thesaurus':
 
-               case 'field_tags':
 
-                 field = included.attributes
 
-                 field.id = included.id
 
-                 break;
 
-               default:
 
-             }
 
-             this.content[key].push(field)
 
-           }
 
-         })
 
-       }
 
-       // extract first visuel as accroche
 
-       this.content.image_accroche = this.content.field_visuel.shift()
 
-       // fill the lightbox
 
-       for(let visuel of this.content.field_visuel){
 
-         this.content.lightbox_items.push(visuel);
 
-       }
 
-       console.log('this.content.lightbox_items', this.content.lightbox_items);
 
-       // update main page title
 
-       this.$store.commit('Common/setPagetitle', this.content.title)
 
-       this.loading = false;
 
-       console.log('article.content',this.content);
 
-       // this.getFieldDefinition()
 
-     },
 
-     // getFieldDefinition(field){
 
-     //   // JSONAPI.get(`field_config/${field}`)
 
-     //   //   .then(({ data }) => {
 
-     //   //     console.log('getFieldDefinition data', data)
 
-     //   //   })
 
-     //   //   .catch(( error ) => {
 
-     //   //       console.warn('Issue with getFieldDefinition', error)
 
-     //   //       Promise.reject(error)
 
-     //   //   })
 
-     //   REST.get('/entity/node_type/materiau?_format=json')
 
-     //     .then((data) => {
 
-     //       console.log('getFieldDefiintion', data)
 
-     //     })
 
-     //     .catch(error => {
 
-     //       console.warn('Issue with getFieldDefiintion', error)
 
-     //       Promise.reject(error)
 
-     //     })
 
-     //
 
-     // },
 
-     onNext(){
 
-       // console.log('clicked on next', this.prevnext.next);
 
-       let alias = this.prevnext.next.view_node.replace(/^.?\/blabla\//g, '')
 
-       this.$router.push({
 
-         name:`article`,
 
-         params: { alias:alias },
 
-         query: { uuid: this.prevnext.next.uuid }
 
-       })
 
-     },
 
-     onPrev(){
 
-       // console.log('clicked on prev', this.prevnext.next);
 
-       let alias = this.prevnext.prev.view_node.replace(/^.?\/blabla\//g, '')
 
-       this.$router.push({
 
-         name:`article`,
 
-         params: { alias:alias },
 
-         query: { uuid: this.prevnext.prev.uuid }
 
-       })
 
-     },
 
-     setLightboxIndex(index) {
 
-       this.lightbox_index = index
 
-     }
 
-   },
 
-   components: {
 
-     Card
 
-   },
 
-   watch: {
 
-     '$route' (to, from) {
 
-       console.log('route change')
 
-       this.getArticle()
 
-     }
 
-   }
 
- }
 
- </script>
 
- <style lang="scss" scoped>
 
- </style>
 
 
  |