2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-10-24 04:03:07 +09:00
|
|
|
<template>
|
|
|
|
<div ref="rootEl">
|
2022-07-02 21:28:55 +09:00
|
|
|
<div ref="headerEl">
|
|
|
|
<slot name="header"></slot>
|
|
|
|
</div>
|
2022-06-20 13:20:28 +09:00
|
|
|
<div ref="bodyEl" :data-sticky-container-header-height="headerHeight">
|
2021-10-24 04:03:07 +09:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
2023-03-02 18:40:43 +09:00
|
|
|
<div ref="footerEl">
|
|
|
|
<slot name="footer"></slot>
|
|
|
|
</div>
|
2021-10-24 04:03:07 +09:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-06-20 13:20:28 +09:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 14:42:09 +09:00
|
|
|
import { onMounted, onUnmounted, provide, inject, Ref, ref, watch, shallowRef } from 'vue';
|
|
|
|
|
2023-12-24 16:16:58 +09:00
|
|
|
import { CURRENT_STICKY_BOTTOM, CURRENT_STICKY_TOP } from '@/const.js';
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const rootEl = shallowRef<HTMLElement>();
|
|
|
|
const headerEl = shallowRef<HTMLElement>();
|
|
|
|
const footerEl = shallowRef<HTMLElement>();
|
|
|
|
const bodyEl = shallowRef<HTMLElement>();
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const headerHeight = ref<string | undefined>();
|
|
|
|
const childStickyTop = ref(0);
|
2022-07-02 21:28:55 +09:00
|
|
|
const parentStickyTop = inject<Ref<number>>(CURRENT_STICKY_TOP, ref(0));
|
2023-12-07 14:42:09 +09:00
|
|
|
provide(CURRENT_STICKY_TOP, childStickyTop);
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const footerHeight = ref<string | undefined>();
|
|
|
|
const childStickyBottom = ref(0);
|
2023-03-02 18:40:43 +09:00
|
|
|
const parentStickyBottom = inject<Ref<number>>(CURRENT_STICKY_BOTTOM, ref(0));
|
2023-12-07 14:42:09 +09:00
|
|
|
provide(CURRENT_STICKY_BOTTOM, childStickyBottom);
|
2023-03-02 18:40:43 +09:00
|
|
|
|
2022-06-20 13:20:28 +09:00
|
|
|
const calc = () => {
|
2023-03-03 11:43:53 +09:00
|
|
|
// コンポーネントが表示されてないけどKeepAliveで残ってる場合などは null になる
|
2023-12-07 14:42:09 +09:00
|
|
|
if (headerEl.value != null) {
|
|
|
|
childStickyTop.value = parentStickyTop.value + headerEl.value.offsetHeight;
|
|
|
|
headerHeight.value = headerEl.value.offsetHeight.toString();
|
2023-03-03 11:43:53 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// コンポーネントが表示されてないけどKeepAliveで残ってる場合などは null になる
|
2023-12-07 14:42:09 +09:00
|
|
|
if (footerEl.value != null) {
|
|
|
|
childStickyBottom.value = parentStickyBottom.value + footerEl.value.offsetHeight;
|
|
|
|
footerHeight.value = footerEl.value.offsetHeight.toString();
|
2023-03-03 11:43:53 +09:00
|
|
|
}
|
2022-06-20 13:20:28 +09:00
|
|
|
};
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2022-07-02 21:28:55 +09:00
|
|
|
const observer = new ResizeObserver(() => {
|
2022-06-20 13:20:28 +09:00
|
|
|
window.setTimeout(() => {
|
|
|
|
calc();
|
|
|
|
}, 100);
|
|
|
|
});
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2022-06-20 13:20:28 +09:00
|
|
|
onMounted(() => {
|
|
|
|
calc();
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2023-03-02 18:40:43 +09:00
|
|
|
watch([parentStickyTop, parentStickyBottom], calc);
|
2022-07-02 21:28:55 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
watch(childStickyTop, () => {
|
|
|
|
bodyEl.value.style.setProperty('--stickyTop', `${childStickyTop.value}px`);
|
2022-07-02 21:28:55 +09:00
|
|
|
}, {
|
|
|
|
immediate: true,
|
2022-06-20 13:20:28 +09:00
|
|
|
});
|
2022-07-02 21:28:55 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
watch(childStickyBottom, () => {
|
|
|
|
bodyEl.value.style.setProperty('--stickyBottom', `${childStickyBottom.value}px`);
|
2023-03-02 18:40:43 +09:00
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
headerEl.value.style.position = 'sticky';
|
|
|
|
headerEl.value.style.top = 'var(--stickyTop, 0)';
|
|
|
|
headerEl.value.style.zIndex = '1000';
|
2022-07-02 21:28:55 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
footerEl.value.style.position = 'sticky';
|
|
|
|
footerEl.value.style.bottom = 'var(--stickyBottom, 0)';
|
|
|
|
footerEl.value.style.zIndex = '1000';
|
2023-03-02 18:40:43 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
observer.observe(headerEl.value);
|
|
|
|
observer.observe(footerEl.value);
|
2022-06-20 13:20:28 +09:00
|
|
|
});
|
2021-10-24 04:03:07 +09:00
|
|
|
|
2022-06-20 13:20:28 +09:00
|
|
|
onUnmounted(() => {
|
|
|
|
observer.disconnect();
|
2021-10-24 04:03:07 +09:00
|
|
|
});
|
|
|
|
|
2023-05-31 18:03:43 +09:00
|
|
|
defineExpose({
|
2023-12-07 14:42:09 +09:00
|
|
|
rootEl: rootEl,
|
2023-05-31 18:03:43 +09:00
|
|
|
});
|
|
|
|
</script>
|