advent22/ui/src/components/DoorMapEditor.vue

60 lines
1.1 KiB
Vue
Raw Normal View History

2023-01-17 18:25:56 +00:00
<template>
<div ref="container">
2023-01-18 00:20:15 +00:00
<img ref="background" src="@/assets/adventskalender.jpg" />
2023-01-17 18:25:56 +00:00
<RectPad id="rectpad" />
</div>
</template>
<script lang="ts">
import { Vue, Options } from "vue-class-component";
import RectPad from "./rects/RectPad.vue";
@Options({
components: {
RectPad,
},
})
export default class CalendarImage extends Vue {
private resize_observer?: ResizeObserver;
declare $refs: {
container: HTMLDivElement;
background: HTMLImageElement;
};
private on_resize() {
2023-01-17 22:33:11 +00:00
this.$refs.container.style.height =
this.$refs.background.offsetHeight + "px";
2023-01-17 18:25:56 +00:00
}
public mounted() {
this.resize_observer = new ResizeObserver(this.on_resize);
this.resize_observer.observe(this.$refs.background);
}
public unmounted() {
if (this.resize_observer instanceof ResizeObserver) {
this.resize_observer.disconnect();
delete this.resize_observer;
}
}
}
</script>
<style lang="scss" scoped>
div {
position: relative;
user-select: none;
img {
position: absolute;
z-index: 1;
width: 100%;
}
#rectpad {
position: absolute;
z-index: 2;
}
}
</style>