close history panel when scrolling text #851
This commit is contained in:
+1
-1
@@ -812,7 +812,7 @@ section[role="main-content"]{
|
|||||||
li{
|
li{
|
||||||
ul{
|
ul{
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
max-height: 1000px;
|
max-height: 10000px;
|
||||||
transition: max-height 0.5s ease-in-out;
|
transition: max-height 0.5s ease-in-out;
|
||||||
// transform: scaleY(1);
|
// transform: scaleY(1);
|
||||||
// transform-origin: top;
|
// transform-origin: top;
|
||||||
|
|||||||
@@ -49,13 +49,29 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onScrollCenter (e) {
|
onScrollCenter (e) {
|
||||||
// console.log('mainLayout onScrollCenter: e', e)
|
console.log('mainLayout onScrollCenter: e', e)
|
||||||
this.$emit('onCenterScrolled', e)
|
this.$emit('onCenterScrolled', e)
|
||||||
|
// attribute scrollToRef is created then removed by this.$scrollTo()
|
||||||
|
// we want to close the history panle only when user scroll the center
|
||||||
|
// not when we click on toc item
|
||||||
|
if (!e.currentTarget.hasAttribute('scrollToRef')) {
|
||||||
|
this.$store.commit('History/setOpened', false)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
scrollToRef () {
|
scrollToRef () {
|
||||||
console.log('scrollToRef', this.reftoscrollto, this.$refs)
|
console.log('scrollToRef', this.reftoscrollto, this.$refs)
|
||||||
this.$scrollTo(this.reftoscrollto, 500, {
|
this.$scrollTo(this.reftoscrollto, 500, {
|
||||||
container: this.$refs.scrollablecenter
|
container: this.$refs.scrollablecenter,
|
||||||
|
onStart: function (e) {
|
||||||
|
console.log('$scrollTo start', e, this)
|
||||||
|
this.setAttribute('scrollToRef', true)
|
||||||
|
}.bind(this.$refs.scrollablecenter),
|
||||||
|
onDone: function (e) {
|
||||||
|
setTimeout(function () {
|
||||||
|
console.log('$scrollTo done', e, this)
|
||||||
|
this.removeAttribute('scrollToRef')
|
||||||
|
}.bind(this), 100)
|
||||||
|
}.bind(this.$refs.scrollablecenter)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -193,6 +193,7 @@ export default {
|
|||||||
// change textid when route change
|
// change textid when route change
|
||||||
this.textid = to.params.textid
|
this.textid = to.params.textid
|
||||||
// change also extract if exists
|
// change also extract if exists
|
||||||
|
this.extractid = null
|
||||||
if (to.params.extract) {
|
if (to.params.extract) {
|
||||||
console.log('extract params from route', to.params.extract)
|
console.log('extract params from route', to.params.extract)
|
||||||
this.extractid = to.params.ocid
|
this.extractid = to.params.ocid
|
||||||
@@ -351,9 +352,10 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
onCenterScrolled (e) {
|
onCenterScrolled (e) {
|
||||||
// console.log('Edition centerScrolled(e)', e.target.scrollTop)
|
console.log('Edition centerScrolled(e)', e.target.scrollTop)
|
||||||
if (!this.center_scrolled && e.target.scrollTop > this.inifinite_load_distance * 1.5) {
|
if (!this.center_scrolled && e.target.scrollTop > this.inifinite_load_distance * 1.5) {
|
||||||
this.center_scrolled = true
|
this.center_scrolled = true
|
||||||
|
// this.$store.commit('History/setOpened', false)
|
||||||
}
|
}
|
||||||
this.indexitem = null
|
this.indexitem = null
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user