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
<script lang="ts">
import type { PropType } from 'vue';
 
import type Color from '../lib/color';
 
import { computed, defineComponent, getCurrentInstance, onMounted, ref, watch } from 'vue';
 
import draggable from '../lib/draggable';
 
export default defineComponent({
  name: 'SvPanel',
  props: {
    color: {
      type: Object as PropType<Color>,
    },
  },
  setup(props) {
    const instance = getCurrentInstance();
 
    // data
    const cursorTop = ref(0);
    const cursorLeft = ref(0);
    const background = ref('hsl(0, 100%, 50%)');
 
    const colorValue = computed(() => {
      const hue = props.color?.get('hue');
      const value = props.color?.get('value');
      return { hue, value };
    });
 
    watch(
      () => colorValue.value,
      () => {
        update();
      },
    );
 
    function update() {
      const saturation = props.color?.get('saturation');
      const value = props.color?.get('value');
 
      const ele = instance?.vnode.el as HTMLElement;
 
      cursorLeft.value = (saturation * ele.clientWidth) / 100;
      cursorTop.value = ((100 - value) * ele.clientHeight) / 100;
 
      background.value = `hsl(${props.color?.get('hue')}, 100%, 50%)`;
    }
    function handleDrag(event) {
      const ele = instance?.vnode.el as HTMLElement;
      const rect = ele.getBoundingClientRect();
 
      let left = event.clientX - rect.left;
      let top = event.clientY - rect.top;
 
      left = Math.max(0, left);
      left = Math.min(left, rect.width);
      top = Math.max(0, top);
      top = Math.min(top, rect.height);
 
      cursorLeft.value = left;
      cursorTop.value = top;
 
      props.color?.set({
        saturation: (left / rect.width) * 100,
        value: 100 - (top / rect.height) * 100,
      });
    }
 
    onMounted(() => {
      const ele = instance?.vnode.el as HTMLElement;
      draggable(ele, {
        drag: (event) => {
          handleDrag(event);
        },
        end: (event) => {
          handleDrag(event);
        },
      });
    });
 
    return {
      background,
      colorValue,
      cursorLeft,
      cursorTop,
      handleDrag,
      update,
    };
  },
});
</script>
 
<template>
  <div :style="{ backgroundColor: background }" class="ant-color-svpanel">
    <div class="ant-color-svpanel__white"></div>
    <div class="ant-color-svpanel__black"></div>
    <div
      :style="{
        top: `${cursorTop}px`,
        left: `${cursorLeft}px`,
      }"
      class="ant-color-svpanel__cursor">
      <div></div>
    </div>
  </div>
</template>
 
<style lang="scss" scoped>
.ant-color-svpanel {
  position: relative;
  width: 280px;
  height: 180px;
  margin-right: 10px;
 
  .ant-color-svpanel__white,
  .ant-color-svpanel__black {
    position: absolute;
    inset: 0;
  }
 
  .ant-color-svpanel__white {
    background: linear-gradient(to right, #fff, rgb(255 255 255 / 0%));
  }
 
  .ant-color-svpanel__black {
    background: linear-gradient(to top, #000, rgb(0 0 0 / 0%));
  }
 
  .ant-color-svpanel__cursor {
    position: absolute;
 
    > div {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      box-shadow:
        0 0 0 1.5px #fff,
        inset 0 0 1px 1px rgb(0 0 0 / 30%),
        0 0 1px 2px rgb(0 0 0 / 40%);
      transform: translate(-2px, -2px);
    }
  }
}
</style>