BasicHelp.tsx 2.6 KB
Newer Older
陈文彬 已提交
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
import type { PropType } from 'vue';

import { Tooltip } from 'ant-design-vue';
import { InfoCircleOutlined } from '@ant-design/icons-vue';
import { defineComponent, computed, unref } from 'vue';

import { getPopupContainer } from '/@/utils';

import { isString, isArray } from '/@/utils/is';
import { getSlot } from '/@/utils/helper/tsxHelper';
import './BasicHelp.less';
export default defineComponent({
  name: 'BaseHelp',
  props: {
    // max-width
    maxWidth: {
      type: String as PropType<string>,
      default: '600px',
    },
    // Whether to display the serial number
    showIndex: {
      type: Boolean as PropType<boolean>,
      default: false,
    },
    // Text list
    text: {
      type: [Array, String] as PropType<string[] | string>,
    },
    // color
    color: {
      type: String as PropType<string>,
      default: '#ffffff',
    },
    fontSize: {
      type: String as PropType<string>,
      default: '14px',
    },
    absolute: {
      type: Boolean as PropType<boolean>,
      default: false,
    },
    // 定位
    position: {
      type: [Object] as PropType<any>,
      default: () => ({
        position: 'absolute',
        left: 0,
        bottom: 0,
      }),
    },
  },
  setup(props, { slots }) {
    const getOverlayStyleRef = computed(() => {
      return {
        maxWidth: props.maxWidth,
      };
    });
    const getWrapStyleRef = computed(() => {
      return {
        color: props.color,
        fontSize: props.fontSize,
      };
    });
    const getMainStyleRef = computed(() => {
      return props.absolute ? props.position : {};
    });

    /**
     * @description: 渲染内容
     */
    const renderTitle = () => {
      const list = props.text;
      if (isString(list)) {
        return <p>{list}</p>;
      }
      if (isArray(list)) {
        return list.map((item, index) => {
          return (
            <p key={item}>
              {props.showIndex ? `${index + 1}. ` : ''}
              {item}
            </p>
          );
        });
      }
      return null;
    };
    return () => (
      <Tooltip
        title={(<div style={unref(getWrapStyleRef)}>{renderTitle()}</div>) as any}
        placement="right"
        overlayStyle={unref(getOverlayStyleRef)}
        autoAdjustOverflow={true}
        overlayClassName="base-help__wrap"
        getPopupContainer={() => getPopupContainer()}
      >
        {{
          default: () => (
            <span class="base-help" style={unref(getMainStyleRef)}>
              {getSlot(slots) || <InfoCircleOutlined />}
            </span>
          ),
        }}
      </Tooltip>
    );
  },
});