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