-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathToolbar.vue
116 lines (109 loc) · 2.08 KB
/
Toolbar.vue
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
<template>
<div class="v-toolbar"
:class="{inactive: toggled}"
:style="[positionStyle, bgColor]">
<slot></slot>
</div>
</template>
<script>
const px = v => v + 'px'
const percen = v => v + '%'
export default {
name: 'Toolbar',
props: {
value: {
type: Boolean,
default: false
},
position: {
type: String,
default: 'top'
},
height: {
type: Number,
default: 64
},
width: {
type: Number,
default: 64
},
color: {
type: String,
default: '#4285f4'
}
},
data () {
return {
toggled: !this.value,
colorStyle: {
background: this.color
}
}
},
computed: {
positionStyle () {
switch (this.position) {
case 'top':
return {
top: px(0),
left: px(0),
right: px(0),
height: px(this.height)
};
case 'left':
return {
top: px(0),
left: px(0),
height: percen(100),
width: px(this.width)
};
case 'right':
return {
top: px(0),
right: px(0),
height: percen(100),
width: px(this.width)
};
case 'bottom':
return {
bottom: px(0),
left: px(0),
right: px(0),
height: px(this.height)
};
default:
return {
top: px(0),
height: px(64)
}
}
},
bgColor() {
return {
backgroundColor: this.color
}
}
},
watch: {
value (value) {
this.toggled = !value
}
},
}
</script>
<style lang="scss" scoped>
.v-toolbar {
align-items: center;
background: white;
box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
display: flex;
justify-content: space-between;
position: fixed;
transition: opacity .1s 0s cubic-bezier(0.4,0.0,1,1);
visibility: visible;
z-index: 200;
}
.inactive {
display: none;
}
</style>