1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-17 08:09:14 +09:00
cherrypick/src/client/app/mobile/views/components/ui-container.vue

128 lines
2.2 KiB
Vue
Raw Normal View History

2018-02-24 02:46:09 +09:00
<template>
2019-02-27 05:13:11 +09:00
<div class="ukygtjoj" :class="{ naked, inNakedDeckColumn, hideHeader: !showHeader, shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners }">
<header v-if="showHeader" @click="() => showBody = !showBody">
2018-02-24 02:46:09 +09:00
<div class="title"><slot name="header"></slot></div>
<slot name="func"></slot>
<button v-if="bodyTogglable">
2019-02-16 06:50:58 +09:00
<template v-if="showBody"><fa icon="angle-up"/></template>
<template v-else><fa icon="angle-down"/></template>
</button>
2018-02-24 02:46:09 +09:00
</header>
2019-02-15 15:35:52 +09:00
<div v-show="showBody">
<slot></slot>
</div>
2018-02-24 02:46:09 +09: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-16 06:50:58 +09:00
},
bodyTogglable: {
type: Boolean,
default: false
},
2019-02-20 10:15:06 +09:00
expanded: {
type: Boolean,
default: true
},
2019-02-16 06:50:58 +09:00
},
inject: {
2019-02-26 05:22:21 +09:00
inNakedDeckColumn: {
default: false
}
},
2019-02-16 06:50:58 +09:00
data() {
return {
2019-02-20 10:15:06 +09:00
showBody: this.expanded
2019-02-16 06:50:58 +09:00
};
2019-02-20 07:08:54 +09:00
},
methods: {
toggleContent(show: boolean) {
if (!this.bodyTogglable) return;
2019-02-20 07:08:54 +09:00
this.showBody = show;
}
2018-02-24 02:46:09 +09:00
}
});
</script>
<style lang="stylus" scoped>
2019-02-15 15:35:52 +09:00
.ukygtjoj
2018-02-24 02:46:09 +09:00
overflow hidden
2019-02-26 05:22:21 +09:00
&:not(.inNakedDeckColumn)
background var(--face)
2019-02-27 05:13:11 +09:00
&.round
border-radius 8px
2019-02-26 14:02:23 +09:00
&.shadow
box-shadow 0 4px 16px rgba(#000, 0.1)
2019-02-16 08:51:35 +09:00
& + .ukygtjoj
margin-top 16px
2019-02-16 16:46:06 +09:00
@media (max-width 500px)
margin-top 8px
2018-02-24 02:46:09 +09:00
&.naked
background transparent !important
box-shadow none !important
> header
> .title
margin 0
padding 8px 10px
font-size 15px
font-weight normal
color var(--faceHeaderText)
background var(--faceHeader)
2018-02-24 02:46:09 +09:00
> [data-icon]
margin-right 6px
2018-02-24 02:46:09 +09:00
&:empty
display none
2018-02-24 02:46:09 +09:00
> button
position absolute
z-index 2
top 0
right 0
padding 0
width 42px
height 100%
font-size 15px
color var(--faceTextButton)
> div
color var(--text)
2019-02-26 05:22:21 +09:00
&.inNakedDeckColumn
background var(--face)
> header
margin 0
padding 8px 16px
font-size 12px
color var(--text)
background var(--deckColumnBg)
2018-02-24 02:46:09 +09:00
> button
position absolute
top 0
right 8px
padding 8px 6px
font-size 14px
color var(--text)
2018-02-24 02:46:09 +09:00
</style>