2020-08-09 08:51:02 +02:00
|
|
|
<template>
|
|
|
|
<div class="ssazuxis" v-size="{ max: [500] }">
|
2020-10-17 13:12:00 +02:00
|
|
|
<header @click="showBody = !showBody" class="_button">
|
2020-08-09 08:51:02 +02:00
|
|
|
<div class="title"><slot name="header"></slot></div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<button class="_button">
|
2020-10-17 13:12:00 +02:00
|
|
|
<template v-if="showBody"><Fa :icon="faAngleUp"/></template>
|
|
|
|
<template v-else><Fa :icon="faAngleDown"/></template>
|
2020-08-09 08:51:02 +02:00
|
|
|
</button>
|
|
|
|
</header>
|
|
|
|
<transition name="folder-toggle"
|
|
|
|
@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 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-08-09 08:51:02 +02:00
|
|
|
import { faAngleUp, faAngleDown } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
const localStoragePrefix = 'ui:folder:';
|
|
|
|
|
|
|
|
export default defineComponent({
|
2020-08-09 08:51:02 +02:00
|
|
|
props: {
|
|
|
|
expanded: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: true
|
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
persistKey: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: null
|
|
|
|
},
|
2020-08-09 08:51:02 +02:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-10-17 13:12:00 +02:00
|
|
|
showBody: (this.persistKey && localStorage.getItem(localStoragePrefix + this.persistKey)) ? localStorage.getItem(localStoragePrefix + this.persistKey) === 't' : this.expanded,
|
2020-08-09 08:51:02 +02:00
|
|
|
faAngleUp, faAngleDown
|
|
|
|
};
|
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
watch: {
|
|
|
|
showBody() {
|
|
|
|
if (this.persistKey) {
|
|
|
|
localStorage.setItem(localStoragePrefix + this.persistKey, this.showBody ? 't' : 'f');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-08-09 08:51:02 +02: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;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</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 13:12:00 +02:00
|
|
|
.folder-toggle-enter-from {
|
2020-08-09 08:51:02 +02:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.folder-toggle-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ssazuxis {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
// TODO
|
|
|
|
// position: sticky;
|
|
|
|
// top: var(--stickyTopOffset);
|
|
|
|
// backdrop-filter: blur(20px);
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
margin: 0;
|
2020-10-17 13:12:00 +02:00
|
|
|
padding: 12px 16px 12px 0;
|
2020-08-09 08:51:02 +02:00
|
|
|
|
|
|
|
> [data-icon] {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
flex: 1;
|
|
|
|
margin: auto;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
2020-10-17 13:12:00 +02:00
|
|
|
padding: 12px 0 12px 16px;
|
2020-08-09 08:51:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
> header {
|
|
|
|
> .title {
|
|
|
|
padding: 8px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|