-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(transfer): 支持配置字段别名(#2909) * chore: 生成变更记录文件 * feat(transfer): 代码规范 --------- Co-authored-by: xiamiao <[email protected]>
- Loading branch information
1 parent
2d8fd92
commit ce9517d
Showing
4 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@hi-ui/transfer": minor | ||
--- | ||
|
||
feat: 支持配置字段别名 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@hi-ui/hiui": patch | ||
--- | ||
|
||
feat(transfer): 支持配置字段别名 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { HiBaseFieldNameKeys, HiBaseFieldNames } from '@hi-ui/core' | ||
import { TransferDataItem } from './types' | ||
import React from 'react' | ||
|
||
export const transformData = ( | ||
data: TransferDataItem[], | ||
fieldNames?: HiBaseFieldNames | ||
): TransferDataItem[] => { | ||
const getKeyFields = (node: TransferDataItem, key: HiBaseFieldNameKeys) => { | ||
if (fieldNames) { | ||
return node[(fieldNames[key] || key) as keyof TransferDataItem] | ||
} | ||
return node[key as keyof TransferDataItem] | ||
} | ||
|
||
const traverseNode = (node: TransferDataItem): TransferDataItem => { | ||
const newNode = { ...node } | ||
|
||
newNode.id = getKeyFields(newNode, 'id') as React.ReactText | ||
newNode.title = getKeyFields(newNode, 'title') as React.ReactNode | ||
newNode.disabled = (getKeyFields(newNode, 'disabled') ?? false) as boolean | ||
|
||
return newNode | ||
} | ||
|
||
return data.map(traverseNode) as TransferDataItem[] | ||
} |