From 96a5015f79dcaab38b4fc018e298885126ab2d42 Mon Sep 17 00:00:00 2001 From: pengYYY Date: Wed, 16 Aug 2023 15:59:20 +0800 Subject: [PATCH] fix: select KeysType lint --- src/select/base/Option.tsx | 6 +++--- src/select/util/helper.ts | 19 ++++++++----------- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/src/select/base/Option.tsx b/src/select/base/Option.tsx index f0eb0f036f..3656418422 100644 --- a/src/select/base/Option.tsx +++ b/src/select/base/Option.tsx @@ -7,8 +7,8 @@ import get from 'lodash/get'; import useConfig from '../../hooks/useConfig'; import useDomRefCallback from '../../hooks/useDomRefCallback'; import useRipple from '../../_util/useRipple'; -import { StyledProps } from '../../common'; -import { SelectValue, TdOptionProps, TdSelectProps, SelectKeysType, SelectOption } from '../type'; +import { StyledProps, KeysType } from '../../common'; +import { SelectValue, TdOptionProps, TdSelectProps, SelectOption } from '../type'; /** * Option 组件属性 @@ -30,7 +30,7 @@ export interface SelectOptionProps ) => void; onCheckAllChange?: (checkAll: boolean, e: React.MouseEvent) => void; restData?: Record; - keys?: SelectKeysType; + keys?: KeysType; optionLength?: number; isVirtual?: boolean; onRowMounted?: (rowData: { ref: HTMLElement; data: SelectOption }) => void; diff --git a/src/select/util/helper.ts b/src/select/util/helper.ts index 0beb1940e7..a13f9ef069 100644 --- a/src/select/util/helper.ts +++ b/src/select/util/helper.ts @@ -4,7 +4,8 @@ import get from 'lodash/get'; import OptionGroup from '../base/OptionGroup'; import Option from '../base/Option'; -import { SelectValue, TdOptionProps, SelectKeysType, TdSelectProps } from '../type'; +import { SelectValue, TdOptionProps, TdSelectProps } from '../type'; +import { KeysType } from '../../common'; type SelectLabeledValue = Required>; @@ -12,7 +13,7 @@ type ValueToOption = { [value: string | number]: TdOptionProps; }; -function setValueToOptionFormOptionDom(dom: ReactElement, valueToOption: ValueToOption, keys: SelectKeysType) { +function setValueToOptionFormOptionDom(dom: ReactElement, valueToOption: ValueToOption, keys: KeysType) { const { value, label, children } = dom.props; // eslint-disable-next-line no-param-reassign valueToOption[value] = { @@ -22,11 +23,7 @@ function setValueToOptionFormOptionDom(dom: ReactElement, valueToOption: ValueTo } // 获取 value => option,用于快速基于 value 找到对应的 option -export const getValueToOption = ( - children: ReactElement, - options: TdOptionProps[], - keys: SelectKeysType, -): ValueToOption => { +export const getValueToOption = (children: ReactElement, options: TdOptionProps[], keys: KeysType): ValueToOption => { const valueToOption = {}; // options 优先级高于 children @@ -80,7 +77,7 @@ export const getLabel = ( children: ReactElement, value: SelectValue, options: TdOptionProps[], - keys: SelectKeysType, + keys: KeysType, ) => { let selectedLabel = ''; // 处理带 options 属性的情况 @@ -144,7 +141,7 @@ export const getLabel = ( return selectedLabel; }; -export const getMultipleTags = (values: SelectValue[], keys: SelectKeysType) => { +export const getMultipleTags = (values: SelectValue[], keys: KeysType) => { const tags = values.map((item) => ({ label: get(item, keys?.label || 'label') || item.toString(), value: get(item, keys?.value || 'value') || item, @@ -157,7 +154,7 @@ export const getSelectValueArr = ( activeValue: SelectValue, selected?: boolean, valueType?: TdSelectProps['valueType'], - keys?: SelectKeysType, + keys?: KeysType, objVal?: SelectValue, ) => { // eslint-disable-next-line no-param-reassign @@ -190,7 +187,7 @@ export const getSelectedOptions = ( value: SelectValue, multiple: TdSelectProps['multiple'], valueType: TdSelectProps['valueType'], - keys: SelectKeysType, + keys: KeysType, tmpPropOptions: Array, ) => { const isObjectType = valueType === 'object';