2019-06-03 13:06:44 +02:00
|
|
|
<script>
|
|
|
|
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
props: ['html'], // get the html from parent with props
|
|
|
|
data() {
|
|
|
|
return {
|
2020-12-27 17:46:04 +01:00
|
|
|
template: null, // compiled template from html used in render
|
|
|
|
showrooms: [],
|
|
|
|
showroomsOdd: [],
|
|
|
|
showroomsEven: [],
|
|
|
|
showroomMode: 1,
|
|
|
|
showroomInterval: 0,
|
|
|
|
showroomI:0,
|
|
|
|
showroomJ:0
|
2019-06-03 13:06:44 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeMount() {
|
2019-06-04 22:38:44 +02:00
|
|
|
// console.log('Home beforeMount');
|
2019-06-03 13:06:44 +02:00
|
|
|
// compile the html src (coming from parent with props or from ajax call)
|
2019-06-04 22:38:44 +02:00
|
|
|
if(this.html){
|
|
|
|
// console.log('html', this.html);
|
2021-01-04 11:31:01 +01:00
|
|
|
this.compileTemplate()
|
2019-06-03 13:06:44 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
render(h) {
|
|
|
|
if(!this.template){
|
|
|
|
return h('span', 'Loading ...')
|
|
|
|
}else{
|
|
|
|
return this.template.render.call(this)
|
|
|
|
}
|
2020-12-26 22:33:25 +01:00
|
|
|
},
|
2020-12-27 13:03:55 +01:00
|
|
|
mounted(){
|
2021-01-04 11:31:01 +01:00
|
|
|
// this.initShowroomCarroussel()
|
2020-12-27 13:03:55 +01:00
|
|
|
},
|
2020-12-26 22:33:25 +01:00
|
|
|
methods: {
|
2021-01-04 11:31:01 +01:00
|
|
|
compileTemplate(){
|
|
|
|
this.template = Vue.compile(this.html)
|
|
|
|
this.$options.staticRenderFns = []
|
|
|
|
this._staticTrees = []
|
|
|
|
this.template.staticRenderFns.map(fn => (this.$options.staticRenderFns.push(fn)))
|
|
|
|
setTimeout(this.initShowroomCarroussel.bind(this), 250)
|
|
|
|
},
|
2020-12-27 13:03:55 +01:00
|
|
|
initShowroomCarroussel(){
|
|
|
|
console.log("startShowroomCarroussel");
|
2020-12-27 17:46:04 +01:00
|
|
|
this.showrooms = document.querySelectorAll('.field--name-computed-showrooms-reference > .field__item')
|
|
|
|
console.log('showrooms', this.showrooms);
|
|
|
|
|
|
|
|
for (var i = 0; i < this.showrooms.length; i++) {
|
|
|
|
if (i%2 === 0) {
|
|
|
|
this.showroomsOdd.push(this.showrooms[i])
|
|
|
|
}else{
|
|
|
|
this.showroomsEven.push(this.showrooms[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log('Odd', this.showroomsOdd);
|
|
|
|
console.log('Even', this.showroomsEven);
|
2020-12-27 13:03:55 +01:00
|
|
|
|
|
|
|
// TODO: share media query and variables between scss and js
|
|
|
|
let column_width= 205
|
|
|
|
let column_goutiere= 13
|
|
|
|
let bp = (column_width + column_goutiere )*7 +1
|
|
|
|
const mediaQuery = window.matchMedia(`(min-width: ${bp}px)`)
|
2020-12-27 17:46:04 +01:00
|
|
|
// Register event listener
|
|
|
|
mediaQuery.addListener(this.checkShowroomMode)
|
|
|
|
this.checkShowroomMode(mediaQuery)
|
|
|
|
|
|
|
|
// this.showroomInterval = setInterval(this.switchShowroomCarroussel.bind(this), 5000);
|
|
|
|
// console.log('this.showroomInterval', this.showroomInterval);
|
|
|
|
// this.switchShowroomCarroussel()
|
|
|
|
},
|
|
|
|
checkShowroomMode(mq){
|
|
|
|
// default mode 1
|
|
|
|
let newmode = 1
|
|
|
|
if (mq.matches) {
|
|
|
|
// if mediaquery match switch to mode 2
|
|
|
|
newmode = 2
|
|
|
|
}
|
|
|
|
if(newmode !== this.showroomMode) {
|
|
|
|
// if new mode different from old mode
|
|
|
|
// reset sowrooms classes
|
|
|
|
for (var i = 0; i < this.showrooms.length; i++) {
|
|
|
|
this.showrooms[i].classList.remove('active')
|
2020-12-27 13:03:55 +01:00
|
|
|
}
|
2020-12-27 17:46:04 +01:00
|
|
|
// record new mode
|
|
|
|
this.showroomMode = newmode
|
|
|
|
// clear interval
|
|
|
|
// if (this.showroomInterval) {
|
|
|
|
clearInterval(this.showroomInterval)
|
|
|
|
this.showroomInterval = 0
|
|
|
|
// }
|
|
|
|
// reset indexes
|
|
|
|
this.showroomI = 0
|
|
|
|
this.showroomJ = 0
|
2020-12-27 13:03:55 +01:00
|
|
|
}
|
2020-12-27 17:46:04 +01:00
|
|
|
// in any case (re)launch the animation
|
2020-12-28 16:40:11 +01:00
|
|
|
this.showroomInterval = setInterval(this.switchShowroomCarroussel.bind(this), 15000);
|
2020-12-27 17:46:04 +01:00
|
|
|
console.log('this.showroomInterval', this.showroomInterval);
|
|
|
|
this.switchShowroomCarroussel()
|
2020-12-27 13:03:55 +01:00
|
|
|
},
|
2020-12-27 17:46:04 +01:00
|
|
|
switchShowroomCarroussel(){
|
2020-12-27 13:03:55 +01:00
|
|
|
// console.log('switchShowroomCarroussel i', $elmts, i);
|
2020-12-27 17:46:04 +01:00
|
|
|
if (this.showroomMode === 1) {
|
|
|
|
this.showrooms[this.showroomI].classList.add('active')
|
|
|
|
this.showrooms[this.showroomI-1 < 0 ? this.showrooms.length -1 : this.showroomI-1].classList.remove('active')
|
|
|
|
this.showroomI = this.showroomI+1 >= this.showrooms.length ? 0 : this.showroomI+1
|
|
|
|
}else{
|
|
|
|
this.showroomsOdd[this.showroomI].classList.add('active')
|
|
|
|
this.showroomsOdd[this.showroomI-1 < 0 ? this.showroomsOdd.length -1 : this.showroomI-1].classList.remove('active')
|
|
|
|
this.showroomI = this.showroomI+1 >= this.showroomsOdd.length ? 0 : this.showroomI+1
|
2020-12-27 13:03:55 +01:00
|
|
|
|
2020-12-27 17:46:04 +01:00
|
|
|
this.showroomsEven[this.showroomJ].classList.add('active')
|
|
|
|
this.showroomsEven[this.showroomJ-1 < 0 ? this.showroomsEven.length -1 : this.showroomJ-1].classList.remove('active')
|
|
|
|
this.showroomJ = this.showroomJ+1 >= this.showroomsEven.length ? 0 : this.showroomJ+1
|
2020-12-27 13:03:55 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
},
|
2020-12-26 22:33:25 +01:00
|
|
|
onClickLink(e){
|
2020-12-27 11:09:03 +01:00
|
|
|
console.log("onClickLink", e, this.$router, this.$route);
|
2020-12-26 22:33:25 +01:00
|
|
|
let path = null;
|
2020-12-27 11:09:03 +01:00
|
|
|
// find existing router route compared with link href
|
|
|
|
for (var i = 0; i < this.$router.options.routes.length; i++) {
|
|
|
|
if (this.$router.options.routes[i].path == e.originalTarget.pathname) {
|
|
|
|
if (e.originalTarget.pathname !== this.$route.path) {
|
|
|
|
path = e.originalTarget.pathname
|
|
|
|
}
|
|
|
|
break;
|
2020-12-26 22:33:25 +01:00
|
|
|
}
|
2020-12-27 11:09:03 +01:00
|
|
|
}
|
2020-12-26 22:33:25 +01:00
|
|
|
|
|
|
|
if (path) {
|
|
|
|
this.$router.push({
|
|
|
|
path: path
|
|
|
|
})
|
|
|
|
}
|
2021-01-04 14:20:04 +01:00
|
|
|
},
|
|
|
|
onClickFieldLabel(e){
|
|
|
|
console.log("onClickFieldLabel", e, this.$router, this.$route);
|
2020-12-26 22:33:25 +01:00
|
|
|
}
|
2021-01-04 11:31:01 +01:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
html: function(val) {
|
|
|
|
console.log('html prop changed', val)
|
|
|
|
this.compileTemplate()
|
|
|
|
}
|
2019-06-03 13:06:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|