Skip to content
Snippets Groups Projects
Commit 6d640ffe authored by permcu's avatar permcu
Browse files

Show top visible as fragment in url

parent 46ccf78e
No related branches found
Tags 2.1dev3
No related merge requests found
......@@ -356,13 +356,8 @@ export default {
// integrate into docsByDay
}
},
gotoDate(date, scroll) {
// show
setDate(date) {
this.$router.replace({ hash: date })
console.log('hash', this.$route.hash);
// assure
this.assureDate(DateTime.fromISO(date));
// scroll
},
onIntersect(entries, observer) {
const entry = entries[0];
......@@ -374,7 +369,7 @@ export default {
if (this.visible[0] > entry.target.dataset.date || this.visible.length === 0) {
// coming is new first (top) date
this.visible.unshift(entry.target.dataset.date);
console.log('current', this.visible[0]);
this.setDate(this.visible[0]);
} else if (this.visible[this.visible.length -1] < entry.target.dataset.date) {
// coming is new last (bottom) date
this.visible.push(entry.target.dataset.date);
......@@ -389,7 +384,7 @@ export default {
} else if (this.visible[0] === entry.target.dataset.date) {
// first (top) visible date is going
this.visible.shift()
console.log('current', this.visible[0]);
this.setDate(this.visible[0]);
} else if (this.visible[this.visible.length - 1] === entry.target.dataset.date) {
// last (bottom) visible date is going
this.visible.pop()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment