-
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.
- Loading branch information
xiamiao
committed
Jun 26, 2024
1 parent
b99972b
commit ae9e791
Showing
2 changed files
with
28 additions
and
27 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
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 |
---|---|---|
@@ -1,33 +1,32 @@ | ||
import { HiBaseFieldNames } from "@hi-ui/core" | ||
import { ListDataItem } from "./types" | ||
import { HiBaseFieldNameKeys, HiBaseFieldNames } from '@hi-ui/core' | ||
import { ListDataItem, ListActionPlacementEnum } from './types' | ||
|
||
export const transformData = ( | ||
export const transformData = ( | ||
data: ListDataItem[], | ||
fieldNames?: HiBaseFieldNames | ||
) : ListDataItem[] => { | ||
|
||
const getKeyFields = (node: any, key: any)=> { | ||
if(fieldNames){ | ||
return node[(fieldNames as any)[key] || key] | ||
} | ||
return node[key] | ||
): ListDataItem[] => { | ||
const getKeyFields = (node: ListDataItem, key: HiBaseFieldNameKeys) => { | ||
if (fieldNames) { | ||
return node[(fieldNames[key] || key) as keyof ListDataItem] | ||
} | ||
return node[key as keyof ListDataItem] | ||
} | ||
|
||
const traverseNode = (node: ListDataItem ): ListDataItem => { | ||
const newNode: ListDataItem = {...node} | ||
const traverseNode = (node: ListDataItem): ListDataItem => { | ||
const newNode: ListDataItem = { ...node } | ||
|
||
newNode.title = getKeyFields(newNode, 'title') | ||
newNode.description = getKeyFields(newNode, 'description') | ||
newNode.extra = getKeyFields(newNode, 'extra') | ||
newNode.avatar = getKeyFields(newNode, 'avatar') | ||
newNode.action = getKeyFields(newNode, 'action') | ||
newNode.actionPlacement = getKeyFields(newNode, 'actionPlacement') | ||
newNode.title = getKeyFields(newNode, 'title' as HiBaseFieldNameKeys) | ||
newNode.description = getKeyFields(newNode, 'description' as HiBaseFieldNameKeys) | ||
newNode.extra = getKeyFields(newNode, 'extra' as HiBaseFieldNameKeys) | ||
newNode.avatar = getKeyFields(newNode, 'avatar' as HiBaseFieldNameKeys) | ||
newNode.action = getKeyFields(newNode, 'action' as HiBaseFieldNameKeys) | ||
newNode.actionPlacement = getKeyFields( | ||
newNode, | ||
'actionPlacement' as HiBaseFieldNameKeys | ||
) as ListActionPlacementEnum | ||
|
||
return newNode | ||
return newNode | ||
} | ||
|
||
return data.map(node => traverseNode(node)) | ||
|
||
|
||
return data.map((node) => traverseNode(node)) | ||
} | ||
|