vben
2021-01-06 a1c3c53c1f298996584c773999e95d8f4064f923
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
<script lang="ts">
  import type { CSSProperties, PropType } from 'vue';
  import { defineComponent, computed, unref, h } from 'vue';
 
  import { Tooltip } from 'ant-design-vue';
  import { InfoCircleOutlined } from '@ant-design/icons-vue';
 
  import { getPopupContainer } from '/@/utils';
  import { isString, isArray } from '/@/utils/is';
  import { getSlot } from '/@/utils/helper/tsxHelper';
  import { propTypes } from '/@/utils/propTypes';
  import { useDesign } from '/@/hooks/web/useDesign';
  export default defineComponent({
    name: 'BasicHelp',
    components: { Tooltip },
    props: {
      // max-width
      maxWidth: propTypes.string.def('600px'),
      // Whether to display the serial number
      showIndex: propTypes.bool,
      // color
      color: propTypes.string.def('#ffffff'),
      fontSize: propTypes.string.def('14px'),
      placement: propTypes.string.def('right'),
      absolute: propTypes.bool,
      // Text list
      text: {
        type: [Array, String] as PropType<string[] | string>,
      },
      // 定位
      position: {
        type: [Object] as PropType<any>,
        default: () => ({
          position: 'absolute',
          left: 0,
          bottom: 0,
        }),
      },
    },
    setup(props, { slots }) {
      const { prefixCls } = useDesign('basic-help');
 
      const getOverlayStyleRef = computed(
        (): CSSProperties => {
          return {
            maxWidth: props.maxWidth,
          };
        }
      );
 
      const getWrapStyleRef = computed(
        (): CSSProperties => {
          return {
            color: props.color,
            fontSize: props.fontSize,
          };
        }
      );
 
      const getMainStyleRef = computed(() => {
        return props.absolute ? props.position : {};
      });
 
      const renderTitle = () => {
        const list = props.text;
 
        if (isString(list)) {
          return h('p', list);
        }
 
        if (isArray(list)) {
          return list.map((item, index) => {
            return h('p', { key: item }, [props.showIndex ? `${index + 1}. ` : '', item]);
          });
        }
 
        return null;
      };
 
      return () => {
        return h(
          // @ts-ignores
          Tooltip,
          {
            title: h(
              'div',
              {
                style: unref(getWrapStyleRef),
              },
              [renderTitle()]
            ),
            overlayClassName: `${prefixCls}__wrap`,
            autoAdjustOverflow: true,
            overlayStyle: unref(getOverlayStyleRef),
            placement: props.placement,
            getPopupContainer: () => getPopupContainer(),
          },
          {
            default: () =>
              h(
                'span',
                {
                  class: prefixCls,
                  style: unref(getMainStyleRef),
                },
                getSlot(slots) || h(InfoCircleOutlined)
              ),
          }
        );
      };
    },
  });
</script>
<style lang="less">
  @import (reference) '../../../design/index.less';
  @prefix-cls: ~'@{namespace}-basic-help';
 
  .@{prefix-cls} {
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
    color: @text-color-help-dark;
    cursor: pointer;
 
    &:hover {
      color: @primary-color;
    }
 
    &__wrap {
      p {
        margin-bottom: 0;
      }
    }
  }
</style>