2023-05-05 02:16:55 +03:00
|
|
|
<template>
|
|
|
|
<span :class="$style.container">
|
|
|
|
<span ref="content" :class="$style.content">
|
|
|
|
<slot/>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2023-05-07 13:08:43 +03:00
|
|
|
interface Props {
|
|
|
|
readonly minScale?: number;
|
|
|
|
}
|
|
|
|
|
2023-05-05 02:16:55 +03:00
|
|
|
const contentSymbol = Symbol();
|
|
|
|
const observer = new ResizeObserver((entries) => {
|
|
|
|
for (const entry of entries) {
|
|
|
|
const content = (entry.target[contentSymbol] ? entry.target : entry.target.firstElementChild) as HTMLSpanElement;
|
2023-05-07 13:08:43 +03:00
|
|
|
const props: Required<Props> = content[contentSymbol];
|
2023-05-05 02:16:55 +03:00
|
|
|
const container = content.parentElement as HTMLSpanElement;
|
|
|
|
const contentWidth = content.getBoundingClientRect().width;
|
|
|
|
const containerWidth = container.getBoundingClientRect().width;
|
2023-05-07 13:08:43 +03:00
|
|
|
container.style.transform = `scaleX(${Math.max(props.minScale, Math.min(1, containerWidth / contentWidth))})`;
|
2023-05-05 02:16:55 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref, watch } from 'vue';
|
|
|
|
|
2023-05-07 13:08:43 +03:00
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
|
|
minScale: 0,
|
|
|
|
});
|
|
|
|
|
2023-05-05 02:16:55 +03:00
|
|
|
const content = ref<HTMLSpanElement>();
|
|
|
|
|
|
|
|
watch(content, (value, oldValue) => {
|
|
|
|
if (oldValue) {
|
|
|
|
delete oldValue[contentSymbol];
|
|
|
|
observer.unobserve(oldValue);
|
|
|
|
if (oldValue.parentElement) {
|
|
|
|
observer.unobserve(oldValue.parentElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (value) {
|
2023-05-07 13:08:43 +03:00
|
|
|
value[contentSymbol] = props;
|
2023-05-05 02:16:55 +03:00
|
|
|
observer.observe(value);
|
|
|
|
if (value.parentElement) {
|
|
|
|
observer.observe(value.parentElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style module lang="scss">
|
|
|
|
.container {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
transform-origin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
</style>
|