2023-02-08 21:35:42 +00:00
|
|
|
<template>
|
2023-03-31 20:56:53 +00:00
|
|
|
<div class="split-container" ref="container" :class="headerClass">
|
2023-03-30 18:44:18 +00:00
|
|
|
<div class="primary" ref="primary">
|
2023-02-08 21:35:42 +00:00
|
|
|
<component :is="primary" />
|
|
|
|
</div>
|
2023-03-30 18:44:18 +00:00
|
|
|
|
|
|
|
<div
|
|
|
|
class="separator"
|
|
|
|
ref="separator"
|
|
|
|
@pointerdown="sepDown"
|
|
|
|
@touchmove.passive="sepTouchMove"
|
|
|
|
@touchend.passive="pointerUp"
|
|
|
|
@touchcancel.passive="pointerUp"
|
|
|
|
></div>
|
|
|
|
|
2023-02-08 21:35:42 +00:00
|
|
|
<div class="timeline">
|
2023-03-31 20:22:12 +00:00
|
|
|
<div class="timeline-header" ref="timelineHeader">
|
|
|
|
<div class="swiper"></div>
|
|
|
|
<div class="title">
|
|
|
|
{{ t("memories", "{photoCount} photos", { photoCount }) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="timeline-inner">
|
|
|
|
<Timeline @daysLoaded="daysLoaded" />
|
|
|
|
</div>
|
2023-02-08 21:35:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from "vue";
|
|
|
|
import Timeline from "./Timeline.vue";
|
2023-02-09 08:39:02 +00:00
|
|
|
const MapSplitMatter = () => import("./top-matter/MapSplitMatter.vue");
|
2023-03-30 18:44:18 +00:00
|
|
|
import { emit } from "@nextcloud/event-bus";
|
2023-03-31 20:22:12 +00:00
|
|
|
import Hammer from "hammerjs";
|
2023-02-08 21:35:42 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
name: "SplitTimeline",
|
|
|
|
|
|
|
|
components: {
|
|
|
|
Timeline,
|
|
|
|
},
|
|
|
|
|
2023-03-30 18:44:18 +00:00
|
|
|
data: () => ({
|
|
|
|
pointerDown: false,
|
|
|
|
primaryPos: 0,
|
2023-03-31 20:56:53 +00:00
|
|
|
containerSize: 0,
|
2023-03-31 20:22:12 +00:00
|
|
|
mobileOpen: 1,
|
2023-04-19 02:19:05 +00:00
|
|
|
hammer: null as HammerManager | null,
|
2023-03-31 20:22:12 +00:00
|
|
|
photoCount: 0,
|
2023-03-30 18:44:18 +00:00
|
|
|
}),
|
|
|
|
|
2023-02-08 21:35:42 +00:00
|
|
|
computed: {
|
|
|
|
primary() {
|
|
|
|
switch (this.$route.name) {
|
2023-02-08 22:13:13 +00:00
|
|
|
case "map":
|
|
|
|
return MapSplitMatter;
|
2023-02-08 21:35:42 +00:00
|
|
|
default:
|
|
|
|
return "None";
|
|
|
|
}
|
|
|
|
},
|
2023-03-31 20:22:12 +00:00
|
|
|
|
|
|
|
headerClass() {
|
|
|
|
switch (this.mobileOpen) {
|
|
|
|
case 0:
|
|
|
|
return "m-zero";
|
|
|
|
case 1:
|
|
|
|
return "m-one";
|
|
|
|
case 2:
|
|
|
|
return "m-two";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
// Set up hammerjs hooks
|
|
|
|
this.hammer = new Hammer(this.$refs.timelineHeader as HTMLElement);
|
|
|
|
this.hammer.get("swipe").set({
|
|
|
|
direction: Hammer.DIRECTION_VERTICAL,
|
|
|
|
threshold: 3,
|
|
|
|
});
|
2023-03-31 20:50:40 +00:00
|
|
|
this.hammer.on("swipeup", this.mobileSwipeUp);
|
|
|
|
this.hammer.on("swipedown", this.mobileSwipeDown);
|
2023-02-08 21:35:42 +00:00
|
|
|
},
|
2023-03-30 18:44:18 +00:00
|
|
|
|
|
|
|
beforeDestroy() {
|
|
|
|
this.pointerUp();
|
2023-04-19 02:19:05 +00:00
|
|
|
this.hammer?.destroy();
|
2023-03-30 18:44:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
isVertical() {
|
2023-03-31 20:22:12 +00:00
|
|
|
return false; // for future
|
2023-03-30 18:44:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
sepDown(event: PointerEvent) {
|
|
|
|
this.pointerDown = true;
|
|
|
|
|
|
|
|
// Get position of primary element
|
|
|
|
const primary = <HTMLDivElement>this.$refs.primary;
|
|
|
|
const rect = primary.getBoundingClientRect();
|
|
|
|
this.primaryPos = this.isVertical() ? rect.top : rect.left;
|
|
|
|
|
2023-03-31 20:56:53 +00:00
|
|
|
// Get size of container element
|
|
|
|
const container = <HTMLDivElement>this.$refs.container;
|
|
|
|
const cRect = container.getBoundingClientRect();
|
|
|
|
this.containerSize = this.isVertical() ? cRect.height : cRect.width;
|
|
|
|
|
2023-03-30 18:44:18 +00:00
|
|
|
// Let touch handle itself
|
|
|
|
if (event.pointerType === "touch") return;
|
|
|
|
|
|
|
|
// Otherwise, handle pointer events on document
|
|
|
|
document.addEventListener("pointermove", this.documentPointerMove);
|
|
|
|
document.addEventListener("pointerup", this.pointerUp);
|
|
|
|
|
|
|
|
// Prevent text selection
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
},
|
|
|
|
|
|
|
|
sepTouchMove(event: TouchEvent) {
|
|
|
|
if (!this.pointerDown) return;
|
|
|
|
this.setFlexBasis(event.touches[0]);
|
|
|
|
},
|
|
|
|
|
|
|
|
documentPointerMove(event: PointerEvent) {
|
|
|
|
if (!this.pointerDown || !event.buttons) return this.pointerUp();
|
|
|
|
this.setFlexBasis(event);
|
|
|
|
},
|
|
|
|
|
|
|
|
pointerUp() {
|
|
|
|
// Get rid of listeners on document quickly
|
|
|
|
this.pointerDown = false;
|
|
|
|
document.removeEventListener("pointermove", this.documentPointerMove);
|
|
|
|
document.removeEventListener("pointerup", this.pointerUp);
|
2023-04-19 02:19:05 +00:00
|
|
|
emit("memories:window:resize", {});
|
2023-03-30 18:44:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setFlexBasis(pos: { clientX: number; clientY: number }) {
|
|
|
|
const ref = this.isVertical() ? pos.clientY : pos.clientX;
|
2023-03-31 20:56:53 +00:00
|
|
|
const newSize = Math.max(ref - this.primaryPos, 50);
|
|
|
|
const pctSize = (newSize / this.containerSize) * 100;
|
|
|
|
(<HTMLDivElement>this.$refs.primary).style.flexBasis = `${pctSize}%`;
|
2023-03-30 18:44:18 +00:00
|
|
|
},
|
2023-03-31 20:22:12 +00:00
|
|
|
|
|
|
|
daysLoaded({ count }: { count: number }) {
|
|
|
|
this.photoCount = count;
|
|
|
|
},
|
2023-03-31 20:50:40 +00:00
|
|
|
|
|
|
|
async mobileSwipeUp() {
|
|
|
|
this.mobileOpen = Math.min(this.mobileOpen + 1, 2);
|
|
|
|
|
|
|
|
// When swiping up, immediately emit a resize event
|
|
|
|
// so that we can prepare in advance for showing more photos
|
|
|
|
// on the timeline
|
|
|
|
await this.$nextTick();
|
2023-04-19 02:19:05 +00:00
|
|
|
emit("memories:window:resize", {});
|
2023-03-31 20:50:40 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
async mobileSwipeDown() {
|
|
|
|
this.mobileOpen = Math.max(this.mobileOpen - 1, 0);
|
|
|
|
|
|
|
|
// When swiping down, wait for the animation to end, so that
|
|
|
|
// we don't hide the lower half of the timeline before the animation
|
|
|
|
// ends. Note that this is necesary: the height of the timeline inner
|
|
|
|
// div is also animated to the smaller size.
|
|
|
|
await new Promise((resolve) => setTimeout(resolve, 300));
|
2023-04-19 02:19:05 +00:00
|
|
|
emit("memories:window:resize", {});
|
2023-03-31 20:50:40 +00:00
|
|
|
},
|
2023-03-30 18:44:18 +00:00
|
|
|
},
|
2023-02-08 21:35:42 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2023-03-30 19:08:41 +00:00
|
|
|
.split-container {
|
2023-02-08 21:35:42 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
2023-03-30 18:44:18 +00:00
|
|
|
|
|
|
|
> div {
|
|
|
|
height: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .primary {
|
|
|
|
flex-basis: 60%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .timeline {
|
|
|
|
flex-basis: auto;
|
|
|
|
flex-grow: 1;
|
|
|
|
padding-left: 8px;
|
|
|
|
overflow: hidden;
|
2023-03-31 20:22:12 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
> .timeline-header {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
height: 50px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
border-bottom: 1px solid var(--color-border-dark);
|
|
|
|
|
|
|
|
.swiper {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
padding-top: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .timeline-inner {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2023-03-30 18:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .separator {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 5px;
|
|
|
|
background-color: gray;
|
|
|
|
opacity: 0.1;
|
|
|
|
cursor: col-resize;
|
|
|
|
margin: 0 0 0 auto;
|
|
|
|
transition: opacity 0.4s ease-out, background-color 0.4s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .separator:hover {
|
|
|
|
opacity: 0.4;
|
|
|
|
background-color: var(--color-primary);
|
|
|
|
}
|
2023-02-08 21:35:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2023-03-31 20:22:12 +00:00
|
|
|
/**
|
|
|
|
* On mobile the layout works completely differently
|
|
|
|
* Both components are full-height, and the separatator
|
|
|
|
* brings up the timeline to cover up the primary component
|
|
|
|
* fully when dragged up.
|
|
|
|
*/
|
2023-03-30 19:08:41 +00:00
|
|
|
.split-container {
|
2023-03-31 20:22:12 +00:00
|
|
|
display: block;
|
2023-03-30 18:44:18 +00:00
|
|
|
|
|
|
|
> div {
|
2023-03-31 20:22:12 +00:00
|
|
|
position: absolute;
|
2023-03-30 18:44:18 +00:00
|
|
|
width: 100%;
|
2023-03-31 20:22:12 +00:00
|
|
|
background-color: var(--color-main-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary {
|
|
|
|
height: 50%;
|
|
|
|
will-change: height;
|
2023-03-30 18:44:18 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 20:22:12 +00:00
|
|
|
> .separator {
|
|
|
|
display: none;
|
2023-03-30 18:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .timeline {
|
2023-03-31 20:50:40 +00:00
|
|
|
height: 50%;
|
2023-03-30 18:44:18 +00:00
|
|
|
padding-left: 0;
|
2023-03-31 20:22:12 +00:00
|
|
|
|
2023-04-01 16:12:32 +00:00
|
|
|
// Note: you can't use transforms to animate the top
|
|
|
|
// because it causes the viewer to be rendered incorrectly
|
|
|
|
transition: top 0.2s ease, height 0.2s ease;
|
|
|
|
|
2023-03-31 20:22:12 +00:00
|
|
|
> .timeline-header {
|
|
|
|
height: 58px;
|
|
|
|
|
|
|
|
> .swiper {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 0;
|
|
|
|
transform: translate(-50%, 9px);
|
|
|
|
width: 22px;
|
|
|
|
height: 4px;
|
|
|
|
border-radius: 40px;
|
|
|
|
background-color: var(--color-text-light);
|
|
|
|
z-index: 1;
|
|
|
|
opacity: 0.75;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
padding-top: 22px;
|
|
|
|
}
|
|
|
|
}
|
2023-03-30 18:44:18 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 20:22:12 +00:00
|
|
|
&.m-zero > .timeline {
|
2023-04-01 16:12:32 +00:00
|
|
|
top: calc(100% - 58px); // show attribution
|
2023-03-31 20:22:12 +00:00
|
|
|
}
|
|
|
|
&.m-zero > .primary {
|
2023-04-01 16:12:32 +00:00
|
|
|
height: calc(100% - 58px); // show full map
|
2023-03-31 20:22:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.m-one > .timeline {
|
2023-04-01 16:12:32 +00:00
|
|
|
top: 50%; // show half map
|
2023-03-31 20:22:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.m-two > .timeline {
|
2023-04-01 16:12:32 +00:00
|
|
|
top: 0%;
|
2023-03-31 20:50:40 +00:00
|
|
|
height: 100%;
|
2023-03-30 18:44:18 +00:00
|
|
|
}
|
2023-02-08 21:35:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|