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

90 lines
1.5 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="kedshtep" :class="{ naked }">
2018-09-27 08:52:10 +03:00
<header v-if="showHeader">
2018-02-23 19:46:09 +02:00
<div class="title"><slot name="header"></slot></div>
<slot name="func"></slot>
2019-02-15 08:35:52 +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 08:35:52 +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
.kedshtep
2018-09-26 14:28:13 +03:00
background var(--face)
2018-09-22 14:39:12 +03:00
box-shadow var(--shadow)
border-radius var(--round)
2018-02-23 19:46:09 +02:00
overflow hidden
&.naked
background transparent !important
2018-09-22 09:58:11 +03:00
box-shadow none !important
2018-02-23 19:46:09 +02:00
> header
2018-09-26 14:28:13 +03:00
background var(--faceHeader)
2018-04-19 21:41:24 +03:00
2018-02-23 19:46:09 +02:00
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
2018-09-27 08:52:10 +03:00
color var(--faceHeaderText)
2018-12-30 07:00:57 +02:00
box-shadow 0 var(--lineWidth) rgba(#000, 0.07)
2018-02-23 19:46:09 +02:00
> [data-icon]
2018-04-25 16:50:59 +03:00
margin-right 6px
2018-02-23 19:46:09 +02: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
2018-09-27 08:32:48 +03:00
color var(--faceTextButton)
2018-02-23 19:46:09 +02:00
&:hover
2018-09-27 08:32:48 +03:00
color var(--faceTextButtonHover)
2018-02-23 19:46:09 +02:00
&:active
2018-09-27 08:52:10 +03:00
color var(--faceTextButtonActive)
2018-04-19 21:41:24 +03:00
2018-02-23 19:46:09 +02:00
</style>