2020-08-09 06:51:02 +00:00
|
|
|
<template>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-size="{ max: [500] }" class="ssazuxis">
|
|
|
|
<header class="_button" :style="{ background: bg }" @click="showBody = !showBody">
|
2020-08-09 06:51:02 +00:00
|
|
|
<div class="title"><slot name="header"></slot></div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<button class="_button">
|
2022-12-19 10:01:30 +00:00
|
|
|
<template v-if="showBody"><i class="ti ti-chevron-up"></i></template>
|
|
|
|
<template v-else><i class="ti ti-chevron-down"></i></template>
|
2020-08-09 06:51:02 +00:00
|
|
|
</button>
|
|
|
|
</header>
|
2022-12-23 23:46:30 +00:00
|
|
|
<transition
|
|
|
|
:name="$store.state.animation ? 'folder-toggle' : ''"
|
2020-08-09 06:51:02 +00:00
|
|
|
@enter="enter"
|
|
|
|
@after-enter="afterEnter"
|
|
|
|
@leave="leave"
|
|
|
|
@after-leave="afterLeave"
|
|
|
|
>
|
|
|
|
<div v-show="showBody">
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2022-05-01 13:51:07 +00:00
|
|
|
import tinycolor from 'tinycolor2';
|
2020-08-09 06:51:02 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
const localStoragePrefix = 'ui:folder:';
|
|
|
|
|
|
|
|
export default defineComponent({
|
2020-08-09 06:51:02 +00:00
|
|
|
props: {
|
|
|
|
expanded: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2022-12-22 07:01:59 +00:00
|
|
|
default: true,
|
2020-08-09 06:51:02 +00:00
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
persistKey: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
2022-12-22 07:01:59 +00:00
|
|
|
default: null,
|
2020-10-17 11:12:00 +00:00
|
|
|
},
|
2020-08-09 06:51:02 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2021-10-10 06:19:16 +00:00
|
|
|
bg: null,
|
2020-10-17 11:12:00 +00:00
|
|
|
showBody: (this.persistKey && localStorage.getItem(localStoragePrefix + this.persistKey)) ? localStorage.getItem(localStoragePrefix + this.persistKey) === 't' : this.expanded,
|
2020-08-09 06:51:02 +00:00
|
|
|
};
|
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
watch: {
|
|
|
|
showBody() {
|
|
|
|
if (this.persistKey) {
|
|
|
|
localStorage.setItem(localStoragePrefix + this.persistKey, this.showBody ? 't' : 'f');
|
|
|
|
}
|
2022-12-22 07:01:59 +00:00
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
},
|
2021-10-10 06:19:16 +00:00
|
|
|
mounted() {
|
|
|
|
function getParentBg(el: Element | null): string {
|
|
|
|
if (el == null || el.tagName === 'BODY') return 'var(--bg)';
|
|
|
|
const bg = el.style.background || el.style.backgroundColor;
|
|
|
|
if (bg) {
|
|
|
|
return bg;
|
|
|
|
} else {
|
|
|
|
return getParentBg(el.parentElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const rawBg = getParentBg(this.$el);
|
|
|
|
const bg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg);
|
|
|
|
bg.setAlpha(0.85);
|
|
|
|
this.bg = bg.toRgbString();
|
|
|
|
},
|
2020-08-09 06:51:02 +00:00
|
|
|
methods: {
|
|
|
|
toggleContent(show: boolean) {
|
|
|
|
this.showBody = show;
|
|
|
|
},
|
|
|
|
|
|
|
|
enter(el) {
|
|
|
|
const elementHeight = el.getBoundingClientRect().height;
|
|
|
|
el.style.height = 0;
|
|
|
|
el.offsetHeight; // reflow
|
|
|
|
el.style.height = elementHeight + 'px';
|
|
|
|
},
|
|
|
|
afterEnter(el) {
|
|
|
|
el.style.height = null;
|
|
|
|
},
|
|
|
|
leave(el) {
|
|
|
|
const elementHeight = el.getBoundingClientRect().height;
|
|
|
|
el.style.height = elementHeight + 'px';
|
|
|
|
el.offsetHeight; // reflow
|
|
|
|
el.style.height = 0;
|
|
|
|
},
|
|
|
|
afterLeave(el) {
|
|
|
|
el.style.height = null;
|
|
|
|
},
|
2022-12-22 07:01:59 +00:00
|
|
|
},
|
2020-08-09 06:51:02 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.folder-toggle-enter-active, .folder-toggle-leave-active {
|
|
|
|
overflow-y: hidden;
|
|
|
|
transition: opacity 0.5s, height 0.5s !important;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
.folder-toggle-enter-from {
|
2020-08-09 06:51:02 +00:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.folder-toggle-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ssazuxis {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
2021-04-13 18:34:56 +00:00
|
|
|
z-index: 10;
|
|
|
|
position: sticky;
|
|
|
|
top: var(--stickyTop, 0px);
|
2021-09-17 13:39:15 +00:00
|
|
|
padding: var(--x-padding);
|
2021-08-11 13:34:45 +00:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(20px));
|
2020-08-09 06:51:02 +00:00
|
|
|
|
|
|
|
> .title {
|
2022-12-23 23:46:30 +00:00
|
|
|
display: grid;
|
|
|
|
place-content: center;
|
2020-08-09 06:51:02 +00:00
|
|
|
margin: 0;
|
2020-10-17 11:12:00 +00:00
|
|
|
padding: 12px 16px 12px 0;
|
2020-08-09 06:51:02 +00:00
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i {
|
2020-08-09 06:51:02 +00:00
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
flex: 1;
|
|
|
|
margin: auto;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
2020-10-17 11:12:00 +00:00
|
|
|
padding: 12px 0 12px 16px;
|
2020-08-09 06:51:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
> header {
|
|
|
|
> .title {
|
2020-10-25 02:06:55 +00:00
|
|
|
padding: 8px 10px 8px 0;
|
2020-08-09 06:51:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|