-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathrightPanel.vue
303 lines (295 loc) · 7.72 KB
/
rightPanel.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<template>
<div class="sidebar right-sidebar">
<!-- tabs -->
<v-tabs
fixed-tabs
background-color="sidebar"
color="text"
v-model="tab"
>
<v-tabs-slider color="preview"></v-tabs-slider>
<v-tab>
Preference
</v-tab>
<v-tab>
Property
</v-tab>
</v-tabs>
<v-tabs-items v-model="tab">
<!-- Preference Tab -->
<v-tab-item>
<v-card
class="p-3"
flat
color="sidebar"
>
<div>
<!-- Background Color Controller -->
<div>
<p class="mb-2">Background Color</p>
<div class="text-left">
<v-menu
offset-y
:close-on-content-click="false"
>
<template v-slot:activator="{ on }">
<v-btn
class="mr-2"
dark
v-on="on"
:color="bgColor"
>
</v-btn>
<span>{{ bgColor }}</span>
</template>
<v-color-picker
class="mx-auto"
light
show-swatches
v-model="bgColor"
@update:color="changeBGColor"
></v-color-picker>
</v-menu>
</div>
</div>
</div>
</v-card>
</v-tab-item>
<!-- Property Tab -->
<v-tab-item>
<v-card
class="p-3"
flat
color="sidebar"
>
<div>
<!-- keypath info -->
<div>
<p class="font-weight-medium">
Keypath
</p>
<p class="ml-1 mt-2">
{{ keypath }}
</p>
<hr
color="white"
v-if="$vuetify.theme.dark"
>
<hr
color="gray"
v-else
>
</div>
<!-- color controller -->
<div class="property mt-7">
<p class="property-title mb-2">Color</p>
<div class="text-left d-flex align-items-center">
<v-menu
offset-y
:close-on-content-click="false"
>
<template v-slot:activator="{ on }">
<v-btn
class="mr-2"
dark
:color="color"
v-on="on"
>
</v-btn>
<span>{{ color }}</span>
</template>
<v-color-picker
class="mx-auto"
light
show-swatches
v-model="color"
@update:color="changeColor"
></v-color-picker>
</v-menu>
</div>
</div>
<!-- opacity controller -->
<div class="property mt-8">
<div class="d-flex align-items-center mb-2">
<p class="property-title">Opacity</p>
<v-tooltip
bottom
nudge-right="65"
nudge-bottom="65"
>
<template v-slot:activator="{ on, attrs }">
<em
class="far fa-question-circle fa-sm ml-2 mb-2"
v-bind="attrs"
v-on="on"
>
</em>
</template>
<span>Number should be between 0 and 100</span>
</v-tooltip>
</div>
<div class="row no-gutters">
<v-text-field
class="mr-3 col-12 col-md-6"
light
solo
placeholder="Opacity"
suffix="%"
v-model="opacity"
@change="changeOpacity(opacity)"
></v-text-field>
</div>
</div>
<!-- stroke width controller -->
<div class="property">
<div class="d-flex align-items-center mb-2">
<p class="property-title">Stroke Width</p>
<v-tooltip
bottom
nudge-right="50"
nudge-bottom="65"
>
<template v-slot:activator="{ on, attrs }">
<em
class="far fa-question-circle fa-sm ml-2 mb-2"
v-bind="attrs"
v-on="on">
</em>
</template>
<span>Number should be greater than or equal to 0</span>
</v-tooltip>
</div>
<div class="row no-gutters">
<v-text-field
class="mr-3 col-12"
light
solo
placeholder="Width"
suffix="px"
v-model="strokeWidth"
@change="changeStrokeWidth(strokeWidth)"
></v-text-field>
</div>
</div>
</div>
</v-card>
</v-tab-item>
</v-tabs-items>
</div>
</template>
<script>
module.exports = {
name: 'rightPanel',
data() {
return {
bgColor: '#FFFFFF',
color: '',
opacity: null,
strokeWidth: null,
xPos: null,
yPos: null,
tab: 0,
}
},
props: {
keypath: String
},
watch: {
keypath() {
this.color = ''
this.opacity = null,
this.strokeWidth = null,
this.xPos = null,
this.yPos = null
}
},
methods: {
changeBGColor() {
if (this.bgColor.toString().match(/#[a-zA-Z0-9]{6,}/)) {
this.bgColor = this.bgColor.substr(0, 7);
var canvas = document.getElementById('myCanvas1');
canvas.style.backgroundColor = this.bgColor;
}
},
changeColor() {
if (this.color !== '#FF0000FF') {
if (this.color.toString().match(/#[a-zA-Z0-9]{6,}/)) {
this.color = this.color.substr(0, 7);
var bigint = parseInt(this.color.substr(1, 7), 16);
var r = (bigint >> 16) & 255;
var g = (bigint >> 8) & 255;
var b = bigint & 255;
setLayerColor(this.keypath, r/255, g/255, b/255)
}
} else {
this.color = '#000000'
}
},
changeOpacity(opacity) {
if (opacity && opacity <= 100 && opacity >= 0) {
setLayerOpacity(this.keypath, Number(opacity));
}
},
changeStrokeWidth(width) {
setStrokeWidth(this.keypath, Number(width));
},
changeXPos(xPos) {
if (this.yPos) {
setPosition(this.keypath, Number(xPos), Number(this.yPos))
} else {
setPosition(this.keypath, Number(xPos), 0)
}
},
changeYPos(yPos) {
if (this.xPos) {
setPosition(this.keypath, Number(this.xPos), Number(yPos))
} else {
setPosition(this.keypath, 0, Number(yPos))
}
}
}
}
</script>
<style scoped>
.right-sidebar {
height: 92vh;
}
.scroll-sect {
overflow-y: scroll;
height: 92vh;
}
p {
margin: 0;
}
.title {
font-size: 1.5rem;
}
.property {
margin: 10px 0 0 0;
}
.property-title {
margin-bottom: 10px;
}
.v-text-field__prefix, .v-text-field__suffix {
color: rgba(15, 128, 170, 0.77);
}
.v-messages.theme--light {
color: white !important;
}
.v-input {
width: 50% !important;
}
.v-tooltip__content {
font-size: 10px !important;
}
.v-item-group {
padding: 0 !important;
height: 6vh !important;
}
.v-tabs {
height: 6vh !important;
}
.v-window {
height: 0vh !important;
}
</style>