summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/components/ui-container.vue
blob: 73310c02ec5020a5092df955e37822333c5027ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<template>
<div class="ukygtjoj" :class="{ naked, inNakedDeckColumn, hideHeader: !showHeader, shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners }">
	<header v-if="showHeader">
		<div class="title"><slot name="header"></slot></div>
		<slot name="func"></slot>
		<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>
	</header>
	<div v-show="showBody">
		<slot></slot>
	</div>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: {
		showHeader: {
			type: Boolean,
			default: true
		},
		naked: {
			type: Boolean,
			default: false
		},
		bodyTogglable: {
			type: Boolean,
			default: false
		},
		expanded: {
			type: Boolean,
			default: true
		},
	},
	inject: {
		inNakedDeckColumn: {
			default: false
		}
	},
	data() {
		return {
			showBody: this.expanded
		};
	},
	methods: {
		toggleContent(show: boolean) {
			this.showBody = show;
		}
	}
});
</script>

<style lang="stylus" scoped>
.ukygtjoj
	overflow hidden

	&:not(.inNakedDeckColumn)
		background var(--face)

		&.round
			border-radius 8px

		&.shadow
			box-shadow 0 4px 16px rgba(#000, 0.1)

		& + .ukygtjoj
			margin-top 16px

			@media (max-width 500px)
				margin-top 8px

		&.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)

				> [data-icon]
					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
				color var(--faceTextButton)

		> div
			color var(--text)

	&.inNakedDeckColumn
		background var(--face)

		> header
			margin 0
			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)

</style>