Blame view

src/components/color-picker/color-picker.vue 7.61 KB
c6faec44   梁灏   init ColorPicker
1
  <template>
b6bda1dc   梁灏   update ColorPicker
2
3
4
5
6
7
8
9
      <Dropdown trigger="click" :transfer="transfer" :placement="placement">
          <div :class="wrapClasses">
              <i class="ivu-icon ivu-icon-arrow-down-b ivu-input-icon ivu-input-icon-normal"></i>
              <div :class="inputClasses">
                  <div :class="[prefixCls + '-color']" style="background-color: rgb(32, 160, 255);"></div>
              </div>
          </div>
          <Dropdown-menu slot="list">
9af2f01c   梁灏   update ColorPicker
10
              <div :class="[prefixCls + '-picker']">
e7893a68   梁灏   update ColorPicker
11
12
13
                  <div :class="[prefixCls + '-picker-panel']">
                      <Saturation v-model="saturationColors" @change="childChange"></Saturation>
                  </div>
9af2f01c   梁灏   update ColorPicker
14
                  <div :class="[prefixCls + '-picker-hue-slider']">
e7893a68   梁灏   update ColorPicker
15
                      <Hue v-model="saturationColors" @change="childChange"></Hue>
9af2f01c   梁灏   update ColorPicker
16
17
                  </div>
                  <div v-if="alpha" :class="[prefixCls + '-picker-alpha-slider']">
e7893a68   梁灏   update ColorPicker
18
                      <Alpha v-model="saturationColors" @change="childChange"></Alpha>
9af2f01c   梁灏   update ColorPicker
19
20
                  </div>
                  <recommend-colors v-if="colors.length" :list="colors" :class="[prefixCls + '-picker-colors']"></recommend-colors>
dab39476   梁灏   update ColorPicker
21
                  <recommend-colors v-if="!colors.length && recommend" :list="recommendedColor" :class="[prefixCls + '-picker-colors']"></recommend-colors>
9af2f01c   梁灏   update ColorPicker
22
                  <Confirm></Confirm>
b6bda1dc   梁灏   update ColorPicker
23
24
25
              </div>
          </Dropdown-menu>
      </Dropdown>
c6faec44   梁灏   init ColorPicker
26
27
  </template>
  <script>
e7893a68   梁灏   update ColorPicker
28
29
      import tinycolor from 'tinycolor2';
  
b6bda1dc   梁灏   update ColorPicker
30
31
      import Dropdown from '../dropdown/dropdown.vue';
      import DropdownMenu from '../dropdown/dropdown-menu.vue';
9af2f01c   梁灏   update ColorPicker
32
33
      import RecommendColors from './recommend-colors.vue';
      import Confirm from '../date-picker/base/confirm.vue';
e7893a68   梁灏   update ColorPicker
34
35
36
37
38
  
      import Saturation from './saturation.vue';
      import Hue from './hue.vue';
      import Alpha from './alpha.vue';
  
b6bda1dc   梁灏   update ColorPicker
39
40
41
42
43
      import { oneOf } from '../../utils/assist';
  
      const prefixCls = 'ivu-color-picker';
      const inputPrefixCls = 'ivu-input';
  
e7893a68   梁灏   update ColorPicker
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
      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
92
      export default {
b6bda1dc   梁灏   update ColorPicker
93
          name: 'ColorPicker',
e7893a68   梁灏   update ColorPicker
94
          components: { Dropdown, DropdownMenu, Confirm, RecommendColors, Saturation, Hue, Alpha },
b6bda1dc   梁灏   update ColorPicker
95
96
          props: {
              value: {
e7893a68   梁灏   update ColorPicker
97
                  type: Object
b6bda1dc   梁灏   update ColorPicker
98
99
100
101
102
              },
              alpha: {
                  type: Boolean,
                  default: false
              },
9af2f01c   梁灏   update ColorPicker
103
104
105
106
              recommend: {
                  type: Boolean,
                  default: false
              },
b6bda1dc   梁灏   update ColorPicker
107
108
109
110
111
              format: {
                  validator (value) {
                      return oneOf(value, ['hsl', 'hsv', 'hex', 'rgb']);
                  }
              },
9af2f01c   梁灏   update ColorPicker
112
113
114
115
116
117
              colors: {
                  type: Array,
                  default () {
                      return [];
                  }
              },
b6bda1dc   梁灏   update ColorPicker
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
              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
138
          data () {
b6bda1dc   梁灏   update ColorPicker
139
              return {
e7893a68   梁灏   update ColorPicker
140
                  val: _colorChange(this.value),
b6bda1dc   梁灏   update ColorPicker
141
                  prefixCls: prefixCls,
9af2f01c   梁灏   update ColorPicker
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
                  recommendedColor: [
                      '#2d8cf0',
                      '#19be6b',
                      '#ff9900',
                      '#ed3f14',
                      '#00b5ff',
                      '#19c919',
                      '#f9e31c',
                      '#ea1a1a',
                      '#9b1dea',
                      '#00c2b1',
                      '#ac7a33',
                      '#1d35ea',
                      '#42bd82',
                      '#f16b62',
                      '#ea4ca3',
                      '#0d94aa',
                      '#febd79',
                      '#3b90fc',
                      '#000000',
                      '#ffffff'
                  ]
b6bda1dc   梁灏   update ColorPicker
164
165
166
              };
          },
          computed: {
e7893a68   梁灏   update ColorPicker
167
168
169
170
171
172
173
174
175
              saturationColors: {
                  get () {
                      return this.val;
                  },
                  set (newVal) {
                      this.val = newVal;
                      this.$emit('input', newVal);
                  }
              },
b6bda1dc   梁灏   update ColorPicker
176
177
178
              wrapClasses () {
                  return [
                      `${prefixCls}-rel`,
9673dcb0   梁灏   update ColorPicker
179
                      `${prefixCls}-${this.size}`,
b6bda1dc   梁灏   update ColorPicker
180
181
182
183
184
185
186
187
188
189
190
191
192
193
                      `${inputPrefixCls}-wrapper`,
                      `${inputPrefixCls}-wrapper-${this.size}`
                  ];
              },
              inputClasses () {
                  return [
                      `${prefixCls}-input`,
                      `${inputPrefixCls}`,
                      `${inputPrefixCls}-${this.size}`,
                      {
                          [`${inputPrefixCls}-disabled`]: this.disabled
                      }
                  ];
              }
c6faec44   梁灏   init ColorPicker
194
          },
e7893a68   梁灏   update ColorPicker
195
196
197
198
199
          watch: {
              value (newVal) {
                  this.val = _colorChange(newVal);
              }
          },
b6bda1dc   梁灏   update ColorPicker
200
          methods: {
e7893a68   梁灏   update ColorPicker
201
202
203
204
205
206
207
208
209
210
211
212
213
214
              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
215
  
e7893a68   梁灏   update ColorPicker
216
217
218
219
220
221
222
223
224
225
226
227
228
229
                  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;
                  }
              }
b6bda1dc   梁灏   update ColorPicker
230
          }
c6faec44   梁灏   init ColorPicker
231
232
      };
  </script>