2023-04-29 00:18:09 +02:00
|
|
|
<template>
|
2023-05-02 05:32:18 +02:00
|
|
|
<button v-if="modelValue" class="fade _button" @click.stop="toggle">
|
2023-04-29 00:18:09 +02:00
|
|
|
<span>{{ i18n.ts.showMore }}</span>
|
|
|
|
</button>
|
2023-05-02 05:32:18 +02:00
|
|
|
<button v-if="!modelValue" class="showLess _button" @click.stop="toggle">
|
2023-04-29 00:18:09 +02:00
|
|
|
<span>{{ i18n.ts.showLess }}</span>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
modelValue: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: "update:modelValue", v: boolean): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const toggle = () => {
|
|
|
|
emit("update:modelValue", !props.modelValue);
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fade {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
background: var(--panel);
|
|
|
|
padding: 0.4em 1em;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
> span {
|
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.showLess {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 1em;
|
|
|
|
position: sticky;
|
|
|
|
bottom: var(--stickyBottom);
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
background: var(--panel);
|
|
|
|
padding: 6px 10px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 0 7px 7px var(--bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|