Sharkey/src/client/app/mobile/views/components/ui-container.vue

81 lines
1.4 KiB
Vue
Raw Normal View History

2018-02-23 19:46:09 +02:00
<template>
2019-02-15 08:35:52 +02:00
<div class="ukygtjoj" :class="{ naked, hideHeader: !showHeader }">
2018-02-23 19:46:09 +02:00
<header v-if="showHeader">
<div class="title"><slot name="header"></slot></div>
<slot name="func"></slot>
2019-02-15 23:50:58 +02:00
<button v-if="bodyTogglable" @click="() => showBody = !showBody">
<template v-if="showBody"><fa icon="angle-up"/></template>
<template v-else><fa icon="angle-down"/></template>
</button>
2018-02-23 19:46:09 +02:00
</header>
2019-02-15 08:35:52 +02:00
<div v-show="showBody">
<slot></slot>
</div>
2018-02-23 19:46:09 +02: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 23:50:58 +02:00
},
bodyTogglable: {
type: Boolean,
default: false
},
},
data() {
return {
showBody: true
};
2018-02-23 19:46:09 +02:00
}
});
</script>
<style lang="stylus" scoped>
2019-02-15 08:35:52 +02:00
.ukygtjoj
2018-09-28 05:44:23 +03:00
background var(--face)
2018-02-23 19:46:09 +02:00
border-radius 8px
2018-05-17 17:10:53 +03:00
box-shadow 0 4px 16px rgba(#000, 0.1)
2018-02-23 19:46:09 +02:00
overflow hidden
&.naked
background transparent !important
2018-02-23 20:03:26 +02:00
box-shadow none !important
2018-02-23 19:46:09 +02:00
> header
> .title
margin 0
padding 8px 10px
font-size 15px
font-weight normal
2018-09-28 05:44:23 +03:00
color var(--faceHeaderText)
background var(--faceHeader)
2018-02-23 19:46:09 +02:00
border-radius 8px 8px 0 0
> [data-icon]
2018-02-23 19:46:09 +02:00
margin-right 6px
&:empty
display none
> button
position absolute
z-index 2
top 0
right 0
padding 0
width 42px
height 100%
font-size 15px
2018-11-14 07:47:18 +02:00
color var(--faceTextButton)
2018-02-23 19:46:09 +02:00
</style>