ny
23 小时以前 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
<script lang="tsx">
import type { CSSProperties, PropType } from 'vue';
 
import { computed, defineComponent, unref } from 'vue';
 
import { getPopupContainer, getSlot, isArray, isString } from '@jnpf/utils';
 
import { QuestionCircleFilled } from '@ant-design/icons-vue';
import { Tooltip } from 'ant-design-vue';
 
const props = {
  /**
   * Help text font color
   * @default: #ffffff
   */
  color: { default: '#ffffff', type: String },
  /**
   * Help text font size
   * @default: 14px
   */
  fontSize: { default: '14px', type: String },
  /**
   * Help text max-width
   * @default: 600px
   */
  maxWidth: { default: '600px', type: String },
  /**
   * Help text list
   */
  placement: { default: 'top', type: String },
  /**
   * Whether to display the serial number
   * @default: false
   */
  showIndex: { type: Boolean },
  /**
   * Help text list
   */
  text: { type: [Array, String] as PropType<string | string[]> },
};
 
export default defineComponent({
  components: { Tooltip },
  name: 'BasicHelp',
  props,
  setup(props, { slots }) {
    const getTooltipStyle = computed((): CSSProperties => ({ color: props.color, fontSize: props.fontSize }));
 
    const getOverlayStyle = computed((): CSSProperties => ({ maxWidth: props.maxWidth }));
 
    function renderTitle() {
      const textList = isString(props.text) ? props.text.split('\n') : props.text;
 
      if (isArray(textList)) {
        return textList.map((text, index) => {
          return (
            <p key={text}>
              <>
                {props.showIndex ? `${index + 1}. ` : ''}
                {text}
              </>
            </p>
          );
        });
      }
      return null;
    }
 
    return () => {
      return (
        <Tooltip
          autoAdjustOverflow={true}
          getPopupContainer={() => getPopupContainer()}
          overlayClassName={`jnpf-basic-help__wrap`}
          overlayStyle={unref(getOverlayStyle)}
          placement={props.placement as 'right'}
          title={<div style={unref(getTooltipStyle)}>{renderTitle()}</div>}>
          <span class="jnpf-basic-help">{getSlot(slots) || <QuestionCircleFilled />}</span>
        </Tooltip>
      );
    };
  },
});
</script>
<style lang="scss">
.jnpf-basic-help {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  color: var(--text-color-secondary);
  cursor: pointer;
 
  &:hover {
    color: var(--primary-color);
  }
 
  &__wrap {
    p {
      margin-bottom: 0;
    }
  }
}
</style>