Blame view

src/components/color-picker/color-picker.vue 9.86 KB
c6faec44   梁灏   init ColorPicker
1
  <template>
0aefe4aa   梁灏   update ColorPicker
2
      <Dropdown trigger="click" :transfer="transfer" :placement="placement" @on-visible-change="handleToggleVisible">
b6bda1dc   梁灏   update ColorPicker
3
4
5
          <div :class="wrapClasses">
              <i class="ivu-icon ivu-icon-arrow-down-b ivu-input-icon ivu-input-icon-normal"></i>
              <div :class="inputClasses">
0aefe4aa   梁灏   update ColorPicker
6
7
8
                  <div :class="[prefixCls + '-color']">
                      <div :style="{backgroundColor: displayedColor}"></div>
                  </div>
b6bda1dc   梁灏   update ColorPicker
9
10
11
              </div>
          </div>
          <Dropdown-menu slot="list">
9af2f01c   梁灏   update ColorPicker
12
              <div :class="[prefixCls + '-picker']">
e7893a68   梁灏   update ColorPicker
13
14
15
                  <div :class="[prefixCls + '-picker-panel']">
                      <Saturation v-model="saturationColors" @change="childChange"></Saturation>
                  </div>
9af2f01c   梁灏   update ColorPicker
16
                  <div :class="[prefixCls + '-picker-hue-slider']">
e7893a68   梁灏   update ColorPicker
17
                      <Hue v-model="saturationColors" @change="childChange"></Hue>
9af2f01c   梁灏   update ColorPicker
18
19
                  </div>
                  <div v-if="alpha" :class="[prefixCls + '-picker-alpha-slider']">
e7893a68   梁灏   update ColorPicker
20
                      <Alpha v-model="saturationColors" @change="childChange"></Alpha>
9af2f01c   梁灏   update ColorPicker
21
22
                  </div>
                  <recommend-colors v-if="colors.length" :list="colors" :class="[prefixCls + '-picker-colors']"></recommend-colors>
dab39476   梁灏   update ColorPicker
23
                  <recommend-colors v-if="!colors.length && recommend" :list="recommendedColor" :class="[prefixCls + '-picker-colors']"></recommend-colors>
0aefe4aa   梁灏   update ColorPicker
24
                  <Confirm @on-pick-success="handleSuccess" @on-pick-clear="handleClear"></Confirm>
b6bda1dc   梁灏   update ColorPicker
25
26
27
              </div>
          </Dropdown-menu>
      </Dropdown>
c6faec44   梁灏   init ColorPicker
28
29
  </template>
  <script>
e7893a68   梁灏   update ColorPicker
30
31
      import tinycolor from 'tinycolor2';
  
b6bda1dc   梁灏   update ColorPicker
32
33
      import Dropdown from '../dropdown/dropdown.vue';
      import DropdownMenu from '../dropdown/dropdown-menu.vue';
9af2f01c   梁灏   update ColorPicker
34
35
      import RecommendColors from './recommend-colors.vue';
      import Confirm from '../date-picker/base/confirm.vue';
e7893a68   梁灏   update ColorPicker
36
37
38
39
40
  
      import Saturation from './saturation.vue';
      import Hue from './hue.vue';
      import Alpha from './alpha.vue';
  
b6bda1dc   梁灏   update ColorPicker
41
42
43
44
45
      import { oneOf } from '../../utils/assist';
  
      const prefixCls = 'ivu-color-picker';
      const inputPrefixCls = 'ivu-input';
  
e7893a68   梁灏   update ColorPicker
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
      function _colorChange (data, oldHue) {
          const alpha = data && data.a;
          let color;
  
          // hsl is better than hex between conversions
          if (data && data.hsl) {
              color = tinycolor(data.hsl);
          } else if (data && data.hex && data.hex.length > 0) {
              color = tinycolor(data.hex);
          } else {
              color = tinycolor(data);
          }
  
          if (color && (color._a === undefined || color._a === null)) {
              color.setAlpha(alpha || 1);
          }
  
          const hsl = color.toHsl();
          const hsv = color.toHsv();
  
          if (hsl.s === 0) {
              hsv.h = hsl.h = data.h || (data.hsl && data.hsl.h) || oldHue || 0;
          }
  
          // when the hsv.v is less than 0.0164 (base on test)
          // because of possible loss of precision
          // the result of hue and saturation would be miscalculated
          if (hsv.v < 0.0164) {
              hsv.h = data.h || (data.hsv && data.hsv.h) || 0;
              hsv.s = data.s || (data.hsv && data.hsv.s) || 0;
          }
  
          if (hsl.l < 0.01) {
              hsl.h = data.h || (data.hsl && data.hsl.h) || 0;
              hsl.s = data.s || (data.hsl && data.hsl.s) || 0;
          }
  
          return {
              hsl: hsl,
              hex: color.toHexString().toUpperCase(),
              rgba: color.toRgb(),
              hsv: hsv,
              oldHue: data.h || oldHue || hsl.h,
              source: data.source,
              a: data.a || color.getAlpha()
          };
      }
  
c6faec44   梁灏   init ColorPicker
94
      export default {
b6bda1dc   梁灏   update ColorPicker
95
          name: 'ColorPicker',
e7893a68   梁灏   update ColorPicker
96
          components: { Dropdown, DropdownMenu, Confirm, RecommendColors, Saturation, Hue, Alpha },
b6bda1dc   梁灏   update ColorPicker
97
98
          props: {
              value: {
0aefe4aa   梁灏   update ColorPicker
99
                  type: String
b6bda1dc   梁灏   update ColorPicker
100
101
102
103
104
              },
              alpha: {
                  type: Boolean,
                  default: false
              },
9af2f01c   梁灏   update ColorPicker
105
106
107
108
              recommend: {
                  type: Boolean,
                  default: false
              },
b6bda1dc   梁灏   update ColorPicker
109
110
111
112
113
              format: {
                  validator (value) {
                      return oneOf(value, ['hsl', 'hsv', 'hex', 'rgb']);
                  }
              },
9af2f01c   梁灏   update ColorPicker
114
115
116
117
118
119
              colors: {
                  type: Array,
                  default () {
                      return [];
                  }
              },
b6bda1dc   梁灏   update ColorPicker
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
              disabled: {
                  type: Boolean,
                  default: false
              },
              size: {
                  validator (value) {
                      return oneOf(value, ['small', 'large', 'default']);
                  }
              },
              placement: {
                  validator (value) {
                      return oneOf(value, ['top', 'top-start', 'top-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end', 'right', 'right-start', 'right-end']);
                  },
                  default: 'bottom'
              },
              transfer: {
                  type: Boolean,
                  default: false
              }
          },
c6faec44   梁灏   init ColorPicker
140
          data () {
b6bda1dc   梁灏   update ColorPicker
141
              return {
e7893a68   梁灏   update ColorPicker
142
                  val: _colorChange(this.value),
b6bda1dc   梁灏   update ColorPicker
143
                  prefixCls: prefixCls,
0aefe4aa   梁灏   update ColorPicker
144
                  visible: false,
9af2f01c   梁灏   update ColorPicker
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
                  recommendedColor: [
                      '#2d8cf0',
                      '#19be6b',
                      '#ff9900',
                      '#ed3f14',
                      '#00b5ff',
                      '#19c919',
                      '#f9e31c',
                      '#ea1a1a',
                      '#9b1dea',
                      '#00c2b1',
                      '#ac7a33',
                      '#1d35ea',
                      '#42bd82',
                      '#f16b62',
                      '#ea4ca3',
                      '#0d94aa',
                      '#febd79',
                      '#3b90fc',
                      '#000000',
                      '#ffffff'
                  ]
b6bda1dc   梁灏   update ColorPicker
167
168
169
              };
          },
          computed: {
e7893a68   梁灏   update ColorPicker
170
171
172
173
174
175
              saturationColors: {
                  get () {
                      return this.val;
                  },
                  set (newVal) {
                      this.val = newVal;
e7893a68   梁灏   update ColorPicker
176
177
                  }
              },
b6bda1dc   梁灏   update ColorPicker
178
179
180
              wrapClasses () {
                  return [
                      `${prefixCls}-rel`,
9673dcb0   梁灏   update ColorPicker
181
                      `${prefixCls}-${this.size}`,
b6bda1dc   梁灏   update ColorPicker
182
183
184
185
186
187
188
189
190
191
192
193
194
                      `${inputPrefixCls}-wrapper`,
                      `${inputPrefixCls}-wrapper-${this.size}`
                  ];
              },
              inputClasses () {
                  return [
                      `${prefixCls}-input`,
                      `${inputPrefixCls}`,
                      `${inputPrefixCls}-${this.size}`,
                      {
                          [`${inputPrefixCls}-disabled`]: this.disabled
                      }
                  ];
0aefe4aa   梁灏   update ColorPicker
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
              },
              displayedColor () {
                  let color;
                  if (this.visible) {
                      const rgba = this.saturationColors.rgba;
                      color = {
                          r: rgba.r,
                          g: rgba.g,
                          b: rgba.b,
                          a: rgba.a
                      };
                  } else {
                      color = tinycolor(this.value).toRgb();
                  }
                  return `rgba(${color.r}, ${color.g}, ${color.b}, ${color.a})`;
b6bda1dc   梁灏   update ColorPicker
210
              }
c6faec44   梁灏   init ColorPicker
211
          },
e7893a68   梁灏   update ColorPicker
212
213
214
          watch: {
              value (newVal) {
                  this.val = _colorChange(newVal);
0aefe4aa   梁灏   update ColorPicker
215
216
217
              },
              visible () {
                  this.val = _colorChange(this.value);
e7893a68   梁灏   update ColorPicker
218
219
              }
          },
b6bda1dc   梁灏   update ColorPicker
220
          methods: {
0aefe4aa   梁灏   update ColorPicker
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
              formatColor () {
                  const defaultColor = {
                      hex: '#ff0000',
                      hsl: {
                          h: 0,
                          s: 1,
                          l: 0.5,
                          a: 1
                      },
                      hsv: {
                          h: 0,
                          s: 1,
                          v: 1,
                          a: 1
                      },
                      rgba: {
                          r: 255,
                          g: 0,
                          b: 0,
                          a: 1
                      },
                      a: 1
                  };
                  if (this.value) {
                      const color = tinycolor(this.value);
                      const hex = color.toHex();
                      const hsl = color.toHsl();
                      const hsv = color.toHsv();
                      const rgba = color.toRgb();
  
                      defaultColor.hex = hex;
                      defaultColor.hsl = hsl;
                      defaultColor.hsv = hsv;
                      defaultColor.rgba = rgba;
                      defaultColor.a = rgba.a;
                  }
                  return defaultColor;
              },
e7893a68   梁灏   update ColorPicker
259
260
261
262
263
264
265
266
267
268
269
270
271
272
              childChange (data) {
                  this.colorChange(data);
              },
              colorChange (data, oldHue) {
                  this.oldHue = this.saturationColors.hsl.h;
                  this.saturationColors = _colorChange(data, oldHue || this.oldHue);
              },
              isValidHex (hex) {
                  return tinycolor(hex).isValid();
              },
              simpleCheckForValidColor (data) {
                  const keysToCheck = ['r', 'g', 'b', 'a', 'h', 's', 'l', 'v'];
                  let checked = 0;
                  let passed = 0;
b6bda1dc   梁灏   update ColorPicker
273
  
e7893a68   梁灏   update ColorPicker
274
275
276
277
278
279
280
281
282
283
284
285
286
                  for (let i = 0; i < keysToCheck.length; i++) {
                      const letter = keysToCheck[i];
                      if (data[letter]) {
                          checked++;
                          if (!isNaN(data[letter])) {
                              passed++;
                          }
                      }
                  }
  
                  if (checked === passed) {
                      return data;
                  }
0aefe4aa   梁灏   update ColorPicker
287
288
289
290
291
292
293
294
295
296
              },
              handleToggleVisible (visible) {
                  this.visible = visible;
              },
              handleSuccess () {
                  this.$emit('input', this.val);
              },
              handleClear () {
                  this.$emit('input', '');
                  // todo
e7893a68   梁灏   update ColorPicker
297
              }
b6bda1dc   梁灏   update ColorPicker
298
          }
c6faec44   梁灏   init ColorPicker
299
300
      };
  </script>