2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-size="{ max: [380] }" class="ukygtjoj _panel" :class="{ naked, thin, hideHeader: !showHeader, scrollable, closed: !showBody }">
|
2020-08-13 08:58:16 +00:00
|
|
|
<header v-if="showHeader" ref="header">
|
2020-01-29 19:37:25 +00:00
|
|
|
<div class="title"><slot name="header"></slot></div>
|
2020-08-13 14:02:43 +00:00
|
|
|
<div class="sub">
|
|
|
|
<slot name="func"></slot>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button v-if="foldable" class="_button" @click="() => showBody = !showBody">
|
2021-04-20 14:22:59 +00:00
|
|
|
<template v-if="showBody"><i class="fas fa-angle-up"></i></template>
|
|
|
|
<template v-else><i class="fas fa-angle-down"></i></template>
|
2020-08-13 14:02:43 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</header>
|
2022-07-03 07:17:31 +00:00
|
|
|
<transition
|
|
|
|
:name="$store.state.animation ? 'container-toggle' : ''"
|
2020-02-08 05:31:51 +00:00
|
|
|
@enter="enter"
|
|
|
|
@after-enter="afterEnter"
|
|
|
|
@leave="leave"
|
|
|
|
@after-leave="afterLeave"
|
|
|
|
>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-show="showBody" ref="content" class="content" :class="{ omitted }">
|
2020-02-08 05:31:51 +00:00
|
|
|
<slot></slot>
|
2021-04-16 00:41:56 +00:00
|
|
|
<button v-if="omitted" class="fade _button" @click="() => { ignoreOmit = true; omitted = false; }">
|
|
|
|
<span>{{ $ts.showMore }}</span>
|
|
|
|
</button>
|
2020-02-08 05:31:51 +00:00
|
|
|
</div>
|
|
|
|
</transition>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-01-29 19:37:25 +00:00
|
|
|
props: {
|
|
|
|
showHeader: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2021-10-22 15:04:19 +00:00
|
|
|
thin: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: false,
|
2021-10-22 15:04:19 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
naked: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2021-04-16 03:17:22 +00:00
|
|
|
foldable: {
|
2020-01-29 19:37:25 +00:00
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
expanded: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2020-07-11 01:13:11 +00:00
|
|
|
scrollable: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: false,
|
2020-07-11 01:13:11 +00:00
|
|
|
},
|
2021-04-16 00:41:56 +00:00
|
|
|
maxHeight: {
|
|
|
|
type: Number,
|
|
|
|
required: false,
|
2022-07-03 07:17:31 +00:00
|
|
|
default: null,
|
2021-04-16 00:41:56 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
showBody: this.expanded,
|
2021-04-16 00:41:56 +00:00
|
|
|
omitted: null,
|
|
|
|
ignoreOmit: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
};
|
|
|
|
},
|
2020-08-13 08:58:16 +00:00
|
|
|
mounted() {
|
|
|
|
this.$watch('showBody', showBody => {
|
2020-10-17 11:12:00 +00:00
|
|
|
const headerHeight = this.showHeader ? this.$refs.header.offsetHeight : 0;
|
|
|
|
this.$el.style.minHeight = `${headerHeight}px`;
|
2020-08-13 08:58:16 +00:00
|
|
|
if (showBody) {
|
2022-07-03 07:17:31 +00:00
|
|
|
this.$el.style.flexBasis = 'auto';
|
2020-08-13 08:58:16 +00:00
|
|
|
} else {
|
2020-10-17 11:12:00 +00:00
|
|
|
this.$el.style.flexBasis = `${headerHeight}px`;
|
2020-08-13 08:58:16 +00:00
|
|
|
}
|
|
|
|
}, {
|
2022-07-03 07:17:31 +00:00
|
|
|
immediate: true,
|
2020-08-13 08:58:16 +00:00
|
|
|
});
|
2021-04-16 00:41:56 +00:00
|
|
|
|
|
|
|
this.$el.style.setProperty('--maxHeight', this.maxHeight + 'px');
|
|
|
|
|
|
|
|
const calcOmit = () => {
|
|
|
|
if (this.omitted || this.ignoreOmit || this.maxHeight == null) return;
|
|
|
|
const height = this.$refs.content.offsetHeight;
|
|
|
|
this.omitted = height > this.maxHeight;
|
|
|
|
};
|
|
|
|
|
|
|
|
calcOmit();
|
|
|
|
new ResizeObserver((entries, observer) => {
|
|
|
|
calcOmit();
|
|
|
|
}).observe(this.$refs.content);
|
2020-08-13 08:58:16 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
methods: {
|
|
|
|
toggleContent(show: boolean) {
|
2021-04-16 03:17:22 +00:00
|
|
|
if (!this.foldable) return;
|
2020-01-29 19:37:25 +00:00
|
|
|
this.showBody = show;
|
2020-02-08 05:31:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
enter(el) {
|
2020-02-08 09:02:28 +00:00
|
|
|
const elementHeight = el.getBoundingClientRect().height;
|
|
|
|
el.style.height = 0;
|
|
|
|
el.offsetHeight; // reflow
|
|
|
|
el.style.height = elementHeight + 'px';
|
2020-02-08 05:31:51 +00:00
|
|
|
},
|
|
|
|
afterEnter(el) {
|
2020-02-08 09:02:28 +00:00
|
|
|
el.style.height = null;
|
2020-02-08 05:31:51 +00:00
|
|
|
},
|
|
|
|
leave(el) {
|
2020-02-08 09:02:28 +00:00
|
|
|
const elementHeight = el.getBoundingClientRect().height;
|
|
|
|
el.style.height = elementHeight + 'px';
|
|
|
|
el.offsetHeight; // reflow
|
|
|
|
el.style.height = 0;
|
2020-02-08 05:31:51 +00:00
|
|
|
},
|
|
|
|
afterLeave(el) {
|
2020-02-08 09:02:28 +00:00
|
|
|
el.style.height = null;
|
2020-02-08 05:31:51 +00:00
|
|
|
},
|
2022-07-03 07:17:31 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-08 05:31:51 +00:00
|
|
|
.container-toggle-enter-active, .container-toggle-leave-active {
|
2020-02-08 09:02:28 +00:00
|
|
|
overflow-y: hidden;
|
2020-02-08 05:31:51 +00:00
|
|
|
transition: opacity 0.5s, height 0.5s !important;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
.container-toggle-enter-from {
|
2020-02-08 05:31:51 +00:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.container-toggle-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
.ukygtjoj {
|
|
|
|
position: relative;
|
2022-07-13 12:41:06 +00:00
|
|
|
overflow: clip;
|
2022-07-05 13:35:57 +00:00
|
|
|
contain: content;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
&.naked {
|
|
|
|
background: transparent !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
2020-07-11 01:13:11 +00:00
|
|
|
&.scrollable {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2021-04-16 00:41:56 +00:00
|
|
|
> .content {
|
2020-07-11 01:13:11 +00:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> header {
|
2021-04-12 04:20:04 +00:00
|
|
|
position: sticky;
|
|
|
|
top: var(--stickyTop, 0px);
|
|
|
|
left: 0;
|
2021-01-03 14:49:49 +00:00
|
|
|
color: var(--panelHeaderFg);
|
|
|
|
background: var(--panelHeaderBg);
|
2021-04-10 03:40:50 +00:00
|
|
|
border-bottom: solid 0.5px var(--panelHeaderDivider);
|
2020-07-11 01:13:11 +00:00
|
|
|
z-index: 2;
|
2020-08-10 03:42:51 +00:00
|
|
|
line-height: 1.4em;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
> .title {
|
|
|
|
margin: 0;
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> ::v-deep(i) {
|
2020-01-29 19:37:25 +00:00
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-13 14:02:43 +00:00
|
|
|
> .sub {
|
2020-01-29 19:37:25 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 100%;
|
2020-08-13 14:02:43 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> ::v-deep(button) {
|
2020-08-13 14:02:43 +00:00
|
|
|
width: 42px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2021-04-16 00:41:56 +00:00
|
|
|
> .content {
|
2021-07-19 02:36:35 +00:00
|
|
|
--stickyTop: 0px;
|
|
|
|
|
2021-04-16 00:41:56 +00:00
|
|
|
&.omitted {
|
|
|
|
position: relative;
|
|
|
|
max-height: var(--maxHeight);
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2021-04-24 13:38:24 +00:00
|
|
|
z-index: 10;
|
2021-04-16 00:41:56 +00:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
2020-08-09 06:51:02 +00:00
|
|
|
|
2021-04-16 00:41:56 +00:00
|
|
|
> span {
|
|
|
|
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 {
|
|
|
|
> span {
|
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
}
|
2020-08-09 06:51:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-22 15:04:19 +00:00
|
|
|
&.max-width_380px, &.thin {
|
2020-07-11 01:13:11 +00:00
|
|
|
> header {
|
|
|
|
> .title {
|
|
|
|
padding: 8px 10px;
|
2021-01-03 14:49:49 +00:00
|
|
|
font-size: 0.9em;
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-09 06:51:02 +00:00
|
|
|
|
2021-04-16 00:41:56 +00:00
|
|
|
> .content {
|
2020-08-09 06:51:02 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._forceContainerFull_ .ukygtjoj {
|
|
|
|
> header {
|
|
|
|
> .title {
|
|
|
|
padding: 12px 16px !important;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-07-12 02:34:45 +00:00
|
|
|
|
|
|
|
._forceContainerFull_.ukygtjoj {
|
|
|
|
> header {
|
|
|
|
> .title {
|
|
|
|
padding: 12px 16px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|