line-and-surface/app/src/components/VideoScroll.vue

127 lines
3.7 KiB
Vue
Raw Normal View History

2021-01-09 20:36:20 +01:00
<template>
2021-01-09 20:53:56 +01:00
<div class="video-scroll" ref="root">
2021-01-11 19:29:35 +01:00
<img class="visible loaded"
:src="definition.files[0]"
:style="{
top: `${Math.round(definition.top)}px`,
left: `${Math.round(definition.left)}px`,
width: isHorizontal ? `${Math.round(definition.width)}px` : 'auto',
height: isVertical ? `${Math.round(definition.height)}px` : 'auto',
rotate: `${definition.angle}deg`
}"
2021-01-11 19:29:35 +01:00
/>
2021-01-11 19:29:35 +01:00
<!--suppress RequiredAttributes -->
<img v-for="file in dynamicFiles"
:data-src="file.src"
2021-01-11 19:29:35 +01:00
:style="{
top: `${Math.round(file.top)}px`,
left: `${Math.round(file.left)}px`,
width: `${Math.round(definition.width)}px`,
height: `${Math.round(definition.height)}px`,
rotate: `${definition.angle}deg`
}"
2021-01-11 19:29:35 +01:00
/>
2021-01-09 20:36:20 +01:00
</div>
</template>
<script lang="ts">
2021-01-12 18:05:28 +01:00
import {defineComponent, PropType} from "vue";
import {rotate} from "@/utils";
2021-01-09 20:36:20 +01:00
export default defineComponent({
name: "VideoScroll",
props: {
definition: {
2021-01-12 18:05:28 +01:00
type: Object as PropType<VideoScrollDef>,
2021-01-09 20:36:20 +01:00
required: true
}
},
computed: {
2021-01-12 18:05:28 +01:00
dynamicFiles(): { top: number, left: number, src: string }[] {
return this.definition.files.slice(1).map((src: string, idx: number) => {
const cy = this.definition.top +
(this.isVertical ? (this.definition.height * (idx + 1) * this.verticalDirection) : 0);
const cx = this.definition.left +
(this.isHorizontal ? (this.definition.width * (idx + 1) * this.horizontalDirection) : 0);
const [left, top] = rotate(cx, cy, this.definition.left, this.definition.top, this.definition.angle);
return {top, left, src};
});
},
isHorizontal(): boolean {
return this.definition.directions.some(
(dir: VideoScrollDirection) => dir === VideoScrollDirection.LEFT || dir === VideoScrollDirection.RIGHT
);
},
isVertical(): boolean {
return this.definition.directions.some(
(dir: VideoScrollDirection) => dir === VideoScrollDirection.UP || dir === VideoScrollDirection.DOWN
);
},
horizontalDirection(): number {
return this.definition.directions.includes(VideoScrollDirection.RIGHT) ? 1 : -1;
},
verticalDirection(): number {
return this.definition.directions.includes(VideoScrollDirection.DOWN) ? 1 : -1;
2021-01-11 19:29:35 +01:00
}
},
mounted() {
2021-01-12 18:05:28 +01:00
const observer = new IntersectionObserver((entries, _) => {
entries.forEach((entry) => {
const element = entry.target as HTMLImageElement;
if (entry.isIntersecting) {
if (!element.src) {
console.debug(`[VIDEOSCROLL] Intersected, loading ${element.dataset.src}`);
element.src = element.dataset.src!;
element.onload = () => {
element.classList.add("loaded");
if (this.isHorizontal) {
element.style.height = "auto";
} else {
element.style.width = "auto";
}
};
2021-01-09 20:53:56 +01:00
}
}
2021-01-09 20:53:56 +01:00
});
});
Array.from((this.$refs.root as Element).children).forEach((el) => {
observer.observe(el);
});
2021-01-09 20:36:20 +01:00
}
});
export enum VideoScrollDirection {
RIGHT = "right",
LEFT = "left",
UP = "up",
DOWN = "down"
2021-01-09 20:36:20 +01:00
}
export interface VideoScrollDef {
top: number,
left: number,
angle: number,
width: number,
height: number,
directions: VideoScrollDirection[],
files: string[]
2021-01-09 20:36:20 +01:00
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.video-scroll img {
position: absolute;
image-rendering: optimizeSpeed;
2021-01-09 23:56:14 +01:00
opacity: 0;
transition: opacity .5s;
}
2021-01-10 00:00:42 +01:00
.loaded {
2021-01-09 23:56:14 +01:00
opacity: 1 !important;
2021-01-09 20:36:20 +01:00
}
2021-01-10 00:00:42 +01:00
2021-01-09 20:36:20 +01:00
</style>