ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
<script lang="ts">
import type { PropType } from 'vue';
 
import type Color from '../lib/color';
import type { Nullable } from '../type/types';
 
import { computed, defineComponent, getCurrentInstance, onMounted, ref, watch } from 'vue';
 
import draggable from '../lib/draggable';
 
export default defineComponent({
  name: 'HueSlider',
  props: {
    color: {
      required: true,
      type: Object as PropType<Color>,
    },
    vertical: {
      default: false,
      type: Boolean,
    },
  },
  setup(props) {
    const instance = getCurrentInstance();
 
    // ref
    const thumb = ref<Nullable<HTMLElement>>(null);
    const bar = ref<Nullable<HTMLElement>>(null);
 
    // data
    const thumbLeft = ref(0);
    const thumbTop = ref(0);
 
    // computed
    const hueValue = computed(() => props.color.get('hue'));
 
    // watch
    watch(
      () => hueValue.value,
      () => {
        update();
      },
    );
 
    // methods
    function handleClick(event: Event) {
      const target = event.target;
 
      if (target !== thumb.value) {
        handleDrag(event);
      }
    }
    function handleDrag(event) {
      const ele = instance?.vnode.el as HTMLElement;
      const rect = ele.getBoundingClientRect();
      let hue;
 
      if (props.vertical) {
        let top = event.clientY - rect.top;
 
        top = Math.min(top, rect.height - (thumb.value as HTMLElement).offsetHeight / 2);
        top = Math.max((thumb.value as HTMLElement).offsetHeight / 2, top);
        hue = Math.round(((top - (thumb.value as HTMLElement).offsetHeight / 2) / (rect.height - (thumb.value as HTMLElement).offsetHeight)) * 360);
      } else {
        let left = event.clientX - rect.left;
        left = Math.min(left, rect.width - (thumb.value as HTMLElement).offsetWidth / 2);
        left = Math.max((thumb.value as HTMLElement).offsetWidth / 2, left);
 
        hue = Math.round(((left - (thumb.value as HTMLElement).offsetWidth / 2) / (rect.width - (thumb.value as HTMLElement).offsetWidth)) * 360);
      }
      props.color.set('hue', hue);
    }
    function getThumbLeft(): number {
      const ele = instance?.vnode.el as HTMLElement;
 
      if (props.vertical) return 0;
      const hue = props.color.get('hue');
 
      if (!ele) return 0;
      return Math.round((hue * (ele.offsetWidth - (thumb.value as HTMLElement).offsetWidth / 2)) / 360);
    }
    function getThumbTop(): number {
      const ele = instance?.vnode.el as HTMLElement;
      if (!props.vertical) return 0;
      const hue = props.color.get('hue');
 
      if (!ele) return 0;
      return Math.round((hue * (ele.offsetHeight - (thumb.value as HTMLElement).offsetHeight / 2)) / 360);
    }
    function update() {
      thumbLeft.value = getThumbLeft();
      thumbTop.value = getThumbTop();
    }
 
    onMounted(() => {
      const dragConfig = {
        drag: (event) => {
          handleDrag(event);
        },
        end: (event) => {
          handleDrag(event);
        },
      };
 
      draggable(bar.value as HTMLElement, dragConfig);
      draggable(thumb.value as HTMLElement, dragConfig);
      update();
    });
    return {
      bar,
      handleClick,
      hueValue,
      thumb,
      thumbLeft,
      thumbTop,
      update,
    };
  },
});
</script>
 
<template>
  <div :class="{ 'is-vertical': vertical }" class="ant-color-hue-slider">
    <div ref="bar" class="ant-color-hue-slider__bar" @click="handleClick"></div>
    <div ref="thumb" :style="{ left: `${thumbLeft}px`, top: `${thumbTop}px` }" class="ant-color-hue-slider__thumb"></div>
  </div>
</template>
 
<style lang="scss" scoped>
.ant-color-hue-slider {
  position: relative;
  box-sizing: border-box;
  width: 280px;
  height: 12px;
  background-color: red;
  //float: right;
  &.is-vertical {
    width: 12px;
    height: 180px;
    padding: 2px 0;
 
    .ant-color-hue-slider__bar {
      background: linear-gradient(to bottom, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
    }
 
    .ant-color-hue-slider__thumb {
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
    }
  }
 
  .ant-color-hue-slider__bar {
    position: relative;
    height: 100%;
    background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
  }
 
  .ant-color-hue-slider__thumb {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    width: 4px;
    height: 100%;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 1px;
    box-shadow: 0 0 2px #0009;
  }
}
</style>