iceshrimp-legacy/src/client/app/desktop/views/components/ui-container.vue

132 lines
2.2 KiB
Vue
Raw Normal View History

2018-02-23 18:46:09 +01:00
<template>
2019-02-28 04:49:13 +01:00
<div class="kedshtep" :class="{ naked, inNakedDeckColumn, shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners }">
2018-09-27 07:52:10 +02:00
<header v-if="showHeader">
2018-02-23 18:46:09 +01:00
<div class="title"><slot name="header"></slot></div>
<slot name="func"></slot>
<button v-if="bodyTogglable" @click="toggleContent(!showBody)">
2019-02-15 07:35:52 +01:00
<template v-if="showBody"><fa icon="angle-up"/></template>
<template v-else><fa icon="angle-down"/></template>
</button>
2018-02-23 18:46:09 +01:00
</header>
2019-02-15 07:35:52 +01:00
<div v-show="showBody">
<slot></slot>
</div>
2018-02-23 18:46:09 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: {
showHeader: {
type: Boolean,
default: true
},
naked: {
type: Boolean,
default: false
2019-02-15 07:35:52 +01:00
},
bodyTogglable: {
type: Boolean,
default: false
},
2019-02-20 02:15:06 +01:00
expanded: {
type: Boolean,
default: true
},
2019-02-15 07:35:52 +01:00
},
2019-02-15 22:50:58 +01:00
inject: {
2019-02-25 21:22:21 +01:00
inNakedDeckColumn: {
2019-02-15 22:50:58 +01:00
default: false
}
},
2019-02-15 07:35:52 +01:00
data() {
return {
2019-02-20 02:15:06 +01:00
showBody: this.expanded
2019-02-15 07:35:52 +01:00
};
2019-02-19 23:08:54 +01:00
},
methods: {
toggleContent(show: boolean) {
this.showBody = show;
this.$emit('toggle', show);
2019-02-19 23:08:54 +01:00
}
2018-02-23 18:46:09 +01:00
}
});
</script>
<style lang="stylus" scoped>
2019-02-15 07:35:52 +01:00
.kedshtep
2018-02-23 18:46:09 +01:00
overflow hidden
2019-02-25 21:22:21 +01:00
&:not(.inNakedDeckColumn)
2019-02-15 22:50:58 +01:00
background var(--face)
2019-02-28 04:49:13 +01:00
&.round
border-radius 6px
&.shadow
box-shadow 0 3px 8px rgba(0, 0, 0, 0.2)
2019-02-15 22:50:58 +01:00
& + .kedshtep
margin-top 16px
&.naked
background transparent !important
box-shadow none !important
> header
background var(--faceHeader)
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
color var(--faceHeaderText)
box-shadow 0 var(--lineWidth) rgba(#000, 0.07)
2018-02-23 18:46:09 +01:00
2019-02-15 22:50:58 +01:00
> [data-icon]
margin-right 6px
2018-04-19 20:41:24 +02:00
2019-02-15 22:50:58 +01:00
&:empty
display none
> button
position absolute
z-index 2
top 0
right 0
padding 0
width 42px
font-size 0.9em
line-height 42px
color var(--faceTextButton)
&:hover
color var(--faceTextButtonHover)
&:active
color var(--faceTextButtonActive)
2019-02-25 21:22:21 +01:00
&.inNakedDeckColumn
2019-02-15 22:50:58 +01:00
background var(--face)
> header
2018-02-23 18:46:09 +01:00
margin 0
2019-02-15 22:50:58 +01:00
padding 8px 16px
font-size 12px
color var(--text)
background var(--deckColumnBg)
> button
position absolute
top 0
right 8px
padding 8px 6px
font-size 14px
color var(--text)
2018-04-19 20:41:24 +02:00
2018-02-23 18:46:09 +01:00
</style>