forked from area17/twill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColorField.vue
131 lines (123 loc) · 3.29 KB
/
ColorField.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
<template>
<a17-inputframe :error="error" :note="note" :label="label" :name="name" :required="required">
<div class="form__field" :class="textfieldClasses">
<input
type="text"
:placeholder="placeholder"
:name="name"
:id="name"
:disabled="disabled"
:required="required"
:readonly="readonly"
:autofocus="autofocus"
:autocomplete="autocomplete"
:value="value"
@focus="onFocus"
@blur="onBlur"
@input="onInput"
maxlength="7"
/>
<a17-dropdown ref="colorDropdown" class="form__field--color" position="bottom-right" :arrow="true" :offset="15" :minWidth="300" :clickable="true" :sideOffset="15" @close="saveIntoStore">
<span class="form__field--colorBtn" :style="bcgStyle" @click="$refs.colorDropdown.toggle()"></span>
<div slot="dropdown__content">
<a17-colorpicker :color="value" @change="updateValueFromPicker"></a17-colorpicker>
</div>
</a17-dropdown>
</div>
</a17-inputframe>
</template>
<script>
import InputMixin from '@/mixins/input'
import FormStoreMixin from '@/mixins/formStore'
import InputframeMixin from '@/mixins/inputFrame'
import ColorPicker from '@/components/ColorPicker'
export default {
name: 'a17ColorField',
mixins: [InputMixin, InputframeMixin, FormStoreMixin],
props: {
name: {
type: String,
required: true
},
initialValue: {
default: ''
}
},
components: {
'a17-colorpicker': ColorPicker
},
data: function () {
return {
focused: false,
value: this.initialValue
}
},
computed: {
bcgStyle: function () {
return {
'background-color': this.value !== '' ? this.value : 'transparent'
}
},
textfieldClasses: function () {
return {
's--focus': this.focused,
's--disabled': this.disabled
}
}
},
methods: {
updateFromStore: function (newValue) { // called from the formStore mixin
if (typeof newValue === 'undefined') newValue = ''
if (this.value !== newValue) {
this.value = newValue
}
},
updateValueFromPicker: function (newValue) {
if (this.value !== newValue) {
this.value = newValue
}
},
updateValue: function (newValue) {
if (this.value !== newValue) {
this.value = newValue
// see formStore mixin
this.saveIntoStore()
}
},
onBlur: function (event) {
const newValue = event.target.value
this.updateValue(newValue)
this.focused = false
},
onFocus: function () {
this.focused = true
},
onInput: function () {
}
}
}
</script>
<style lang="scss" scoped>
.form__field {
display: flex;
align-items: center;
padding: 0 15px;
overflow: visible;
input {
padding: 0;
}
}
.form__field--colorBtn {
cursor:pointer;
display: block;
margin-right:-10px;
width: 33px;
height: 33px;
border-radius: $border-radius;
transition: background 250ms;
border:1px solid rgba(0, 0, 0, .10);
box-sizing: border-box;
overflow: hidden;
background-clip: padding-box;
}
</style>