iceshrimp-legacy/packages/client/src/components/global/MkStickyContainer.vue

70 lines
1.5 KiB
Vue
Raw Normal View History

2021-10-23 21:03:07 +02:00
<template>
2023-04-08 02:01:42 +02:00
<div ref="rootEl">
<div ref="headerEl">
<slot name="header"></slot>
</div>
<div ref="bodyEl" :data-sticky-container-header-height="headerHeight">
<slot></slot>
</div>
</div>
2021-10-23 21:03:07 +02:00
</template>
<script lang="ts">
// なんか動かない
2023-07-17 00:32:32 +02:00
// const CURRENT_STICKY_TOP = Symbol('CURRENT_STICKY_TOP');
2023-04-08 02:01:42 +02:00
const CURRENT_STICKY_TOP = "CURRENT_STICKY_TOP";
</script>
<script lang="ts" setup>
2023-07-17 00:32:32 +02:00
import type { Ref } from "vue";
import { inject, onMounted, onUnmounted, provide, ref, watch } from "vue";
2021-10-23 21:03:07 +02:00
const rootEl = $ref<HTMLElement>();
const headerEl = $ref<HTMLElement>();
const bodyEl = $ref<HTMLElement>();
2021-10-23 21:03:07 +02:00
2023-07-17 00:32:32 +02:00
let headerHeight = $ref<string | undefined>(),
childStickyTop = $ref(0);
const parentStickyTop = inject<Ref<number>>(CURRENT_STICKY_TOP, ref(0));
provide(CURRENT_STICKY_TOP, $$(childStickyTop));
2021-10-23 21:03:07 +02:00
const calc = () => {
childStickyTop = parentStickyTop.value + headerEl.offsetHeight;
headerHeight = headerEl.offsetHeight.toString();
};
2021-10-23 21:03:07 +02:00
const observer = new ResizeObserver(() => {
window.setTimeout(() => {
calc();
}, 100);
});
2021-10-23 21:03:07 +02:00
onMounted(() => {
calc();
2021-10-23 21:03:07 +02:00
watch(parentStickyTop, calc);
2023-04-08 02:01:42 +02:00
watch(
$$(childStickyTop),
() => {
bodyEl.style.setProperty("--stickyTop", `${childStickyTop}px`);
},
{
immediate: true,
2023-07-06 03:28:27 +02:00
},
2023-04-08 02:01:42 +02:00
);
2023-04-08 02:01:42 +02:00
headerEl.style.position = "sticky";
headerEl.style.top = "var(--stickyTop, 0)";
headerEl.style.zIndex = "1000";
observer.observe(headerEl);
});
2021-10-23 21:03:07 +02:00
onUnmounted(() => {
observer.disconnect();
2021-10-23 21:03:07 +02:00
});
</script>
2023-04-08 02:01:42 +02:00
<style lang="scss" module></style>