2020-08-09 09:51:02 +03:00
|
|
|
<template>
|
|
|
|
<div class="ssazuxis" v-size="{ max: [500] }">
|
2020-10-17 14:12:00 +03:00
|
|
|
<header @click="showBody = !showBody" class="_button">
|
2020-08-09 09:51:02 +03:00
|
|
|
<div class="title"><slot name="header"></slot></div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<button class="_button">
|
2021-04-20 17:22:59 +03: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-09 09:51:02 +03: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 14:12:00 +03:00
|
|
|
import { defineComponent } from 'vue';
|
2020-08-09 09:51:02 +03:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
const localStoragePrefix = 'ui:folder:';
|
|
|
|
|
|
|
|
export default defineComponent({
|
2020-08-09 09:51:02 +03:00
|
|
|
props: {
|
|
|
|
expanded: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: true
|
|
|
|
},
|
2020-10-17 14:12:00 +03:00
|
|
|
persistKey: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: null
|
|
|
|
},
|
2020-08-09 09:51:02 +03:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-10-17 14:12:00 +03:00
|
|
|
showBody: (this.persistKey && localStorage.getItem(localStoragePrefix + this.persistKey)) ? localStorage.getItem(localStoragePrefix + this.persistKey) === 't' : this.expanded,
|
2020-08-09 09:51:02 +03:00
|
|
|
};
|
|
|
|
},
|
2020-10-17 14:12:00 +03:00
|
|
|
watch: {
|
|
|
|
showBody() {
|
|
|
|
if (this.persistKey) {
|
|
|
|
localStorage.setItem(localStoragePrefix + this.persistKey, this.showBody ? 't' : 'f');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-08-09 09:51:02 +03: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 14:12:00 +03:00
|
|
|
.folder-toggle-enter-from {
|
2020-08-09 09:51:02 +03:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.folder-toggle-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ssazuxis {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
2021-04-13 21:34:56 +03:00
|
|
|
z-index: 10;
|
|
|
|
position: sticky;
|
|
|
|
top: var(--stickyTop, 0px);
|
2021-09-17 16:39:15 +03:00
|
|
|
padding: var(--x-padding);
|
|
|
|
background: var(--x-header, var(--panel));
|
2021-08-06 08:28:40 +03:00
|
|
|
/* TODO panelの半透明バージョンをプログラマティックに作りたい
|
2021-04-14 08:12:29 +03:00
|
|
|
background: var(--X17);
|
2021-08-11 16:34:45 +03:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(20px));
|
2021-08-06 08:28:40 +03:00
|
|
|
*/
|
2020-08-09 09:51:02 +03:00
|
|
|
|
|
|
|
> .title {
|
|
|
|
margin: 0;
|
2020-10-17 14:12:00 +03:00
|
|
|
padding: 12px 16px 12px 0;
|
2020-08-09 09:51:02 +03:00
|
|
|
|
2021-04-20 17:22:59 +03:00
|
|
|
> i {
|
2020-08-09 09:51:02 +03:00
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
flex: 1;
|
|
|
|
margin: auto;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
2020-10-17 14:12:00 +03:00
|
|
|
padding: 12px 0 12px 16px;
|
2020-08-09 09:51:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
> header {
|
|
|
|
> .title {
|
2020-10-25 04:06:55 +02:00
|
|
|
padding: 8px 10px 8px 0;
|
2020-08-09 09:51:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-10 06:40:50 +03:00
|
|
|
|
|
|
|
._flat_ .ssazuxis {
|
2021-04-14 08:12:29 +03:00
|
|
|
> header {
|
|
|
|
padding: 0 16px;
|
|
|
|
}
|
2021-04-10 06:40:50 +03:00
|
|
|
}
|
2020-08-09 09:51:02 +03:00
|
|
|
</style>
|