2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-15 21:06:28 +00:00
|
|
|
<template>
|
|
|
|
<div ref="content" :class="[$style.content, { [$style.omitted]: omitted }]">
|
|
|
|
<slot></slot>
|
|
|
|
<button v-if="omitted" :class="$style.fade" class="_button" @click="() => { ignoreOmit = true; omitted = false; }">
|
2023-04-01 05:01:57 +00:00
|
|
|
<span :class="$style.fadeLabel">{{ i18n.ts.showMore }}</span>
|
2023-01-15 21:06:28 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-05-31 16:00:55 +00:00
|
|
|
import { onMounted, onUnmounted } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
2023-01-15 21:06:28 +00:00
|
|
|
|
|
|
|
const props = withDefaults(defineProps<{
|
2023-04-04 01:45:01 +00:00
|
|
|
maxHeight?: number;
|
2023-01-15 21:06:28 +00:00
|
|
|
}>(), {
|
|
|
|
maxHeight: 200,
|
|
|
|
});
|
|
|
|
|
2023-04-22 23:13:12 +00:00
|
|
|
let content = $shallowRef<HTMLElement>();
|
2023-01-15 21:06:28 +00:00
|
|
|
let omitted = $ref(false);
|
|
|
|
let ignoreOmit = $ref(false);
|
|
|
|
|
2023-05-31 16:00:55 +00:00
|
|
|
const calcOmit = () => {
|
|
|
|
if (omitted || ignoreOmit) return;
|
|
|
|
omitted = content.offsetHeight > props.maxHeight;
|
|
|
|
};
|
2023-01-15 21:06:28 +00:00
|
|
|
|
2023-05-31 16:00:55 +00:00
|
|
|
const omitObserver = new ResizeObserver((entries, observer) => {
|
2023-01-15 21:06:28 +00:00
|
|
|
calcOmit();
|
2023-05-31 16:00:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
calcOmit();
|
|
|
|
omitObserver.observe(content);
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
omitObserver.disconnect();
|
2023-01-15 21:06:28 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.content {
|
|
|
|
--stickyTop: 0px;
|
|
|
|
|
|
|
|
&.omitted {
|
|
|
|
position: relative;
|
|
|
|
max-height: v-bind("props.maxHeight + 'px'");
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
|
|
|
|
> .fadeLabel {
|
|
|
|
display: inline-block;
|
|
|
|
background: var(--panel);
|
|
|
|
padding: 6px 10px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> .fadeLabel {
|
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|