Ben Lin
2024-10-27 92cb62d60d38be56312be20cfae8638a5a9aa57a
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
<template>
  <div :class="prefixCls">
    <template v-for="color in colorList || []" :key="color">
      <span
        @click="handleClick(color)"
        :class="[
          `${prefixCls}__item`,
          {
            [`${prefixCls}__item--active`]: def === color,
          },
        ]"
        :style="{ background: color }"
      >
        <CheckOutlined />
      </span>
    </template>
  </div>
</template>
<script lang="ts" setup>
  import type { PropType } from 'vue';
  import { CheckOutlined } from '@ant-design/icons-vue';
 
  import { useDesign } from '@/hooks/web/useDesign';
 
  import { baseHandler } from '../handler';
  import { HandlerEnum } from '../enum';
 
  defineOptions({ name: 'ThemeColorPicker' });
 
  const props = defineProps({
    colorList: {
      type: Array as PropType<string[]>,
      default: () => [],
    },
    event: {
      type: Number as PropType<HandlerEnum>,
    },
    def: {
      type: String,
    },
  });
 
  const { prefixCls } = useDesign('setting-theme-picker');
 
  function handleClick(color: string) {
    props.event && baseHandler(props.event, color);
  }
</script>
<style lang="less">
  @prefix-cls: ~'@{namespace}-setting-theme-picker';
 
  .@{prefix-cls} {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 16px 0;
 
    &__item {
      width: 20px;
      height: 20px;
      border: 1px solid #ddd;
      border-radius: 2px;
      cursor: pointer;
 
      svg {
        display: none;
      }
 
      &--active {
        border: 1px solid lighten(@primary-color, 10%);
 
        svg {
          display: inline-block;
          margin: 0 0 3px 3px;
          fill: @white !important;
          font-size: 12px;
        }
      }
    }
  }
</style>