-
-
Notifications
You must be signed in to change notification settings - Fork 610
feat: add dataIndex type check #1091
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
zombieJ
merged 12 commits into
react-component:master
from
crazyair:add-dataindex-check
Mar 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c259318
feat: add dataIndex type check
crazyair 30055ca
fix: ts
crazyair 9580423
feat: add source
crazyair 18c4d17
fix: ts
crazyair fe2e7e5
Merge remote-tracking branch 'origin/master' into add-dataindex-check
crazyair c8d4378
fix: ts
crazyair 5389c9d
feat: 泛型默认值设置为 any
crazyair bdb556c
feat: add type test
crazyair ce1a06e
Merge branch 'master' into add-dataindex-check
crazyair 712683d
feat: 优化 ddemo
crazyair bee99d3
feat: support empty string
crazyair 6ce7674
feat: support empty string
crazyair File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,32 @@ | ||
type BaseNamePath = string | number | boolean | (string | number | boolean)[]; | ||
crazyair marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/** | ||
* Store: The store type from `FormInstance<Store>` | ||
* ParentNamePath: Auto generate by nest logic. Do not fill manually. | ||
*/ | ||
export type DeepNamePath< | ||
Store = any, | ||
ParentNamePath extends any[] = [], | ||
> = ParentNamePath['length'] extends 10 | ||
? never | ||
: // Follow code is batch check if `Store` is base type | ||
true extends (Store extends BaseNamePath ? true : false) | ||
? ParentNamePath['length'] extends 0 | ||
? Store | BaseNamePath // Return `BaseNamePath` instead of array if `ParentNamePath` is empty | ||
: Store extends any[] | ||
? [...ParentNamePath, number] // Connect path | ||
: never | ||
: Store extends any[] // Check if `Store` is `any[]` | ||
? // Connect path. e.g. { a: { b: string }[] } | ||
// Get: [a] | [ a,number] | [ a ,number , b] | ||
[...ParentNamePath, number] | DeepNamePath<Store[number], [...ParentNamePath, number]> | ||
: keyof Store extends never // unknown | ||
? Store | ||
: { | ||
// Convert `Store` to <key, value>. We mark key a `FieldKey` | ||
[FieldKey in keyof Store]: Store[FieldKey] extends Function | ||
? never | ||
: | ||
| (ParentNamePath['length'] extends 0 ? FieldKey : never) // If `ParentNamePath` is empty, it can use `FieldKey` without array path | ||
| [...ParentNamePath, FieldKey] // Exist `ParentNamePath`, connect it | ||
| DeepNamePath<Required<Store>[FieldKey], [...ParentNamePath, FieldKey]>; // If `Store[FieldKey]` is object | ||
}[keyof Store]; |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.