import type {NonRecursiveType, UnionMin, UnionMax, TupleLength, StaticPartOfArray, VariablePartOfArray, IsUnion, IsArrayReadonly, SetArrayAccess} from './internal'; import type {IsNever} from './is-never'; import type {UnknownArray} from './unknown-array'; /** SharedUnionFieldsDeep options. @see {@link SharedUnionFieldsDeep} */ export type SharedUnionFieldsDeepOptions = { /** When set to true, this option impacts each element within arrays or tuples. If all union values are arrays or tuples, it constructs an array of the shortest possible length, ensuring every element exists in the union array. @default false */ recurseIntoArrays?: boolean; }; /** Create a type with shared fields from a union of object types, deeply traversing nested structures. Use the {@link SharedUnionFieldsDeepOptions `Options`} to specify the behavior for arrays. Use-cases: - You want a safe object type where each key exists in the union object. - You want to focus on the common fields of the union type and don't want to have to care about the other fields. @example ``` import type {SharedUnionFieldsDeep} from 'type-fest'; type Cat = { info: { name: string; type: 'cat'; catType: string; }; }; type Dog = { info: { name: string; type: 'dog'; dogType: string; }; }; function displayPetInfo(petInfo: (Cat | Dog)['info']) { // typeof petInfo => // { // name: string; // type: 'cat'; // catType: string; // Needn't care about this field, because it's not a common pet info field. // } | { // name: string; // type: 'dog'; // dogType: string; // Needn't care about this field, because it's not a common pet info field. // } // petInfo type is complex and have some needless fields console.log('name: ', petInfo.name); console.log('type: ', petInfo.type); } function displayPetInfo(petInfo: SharedUnionFieldsDeep['info']) { // typeof petInfo => // { // name: string; // type: 'cat' | 'dog'; // } // petInfo type is simple and clear console.log('name: ', petInfo.name); console.log('type: ', petInfo.type); } ``` @category Object @category Union */ export type SharedUnionFieldsDeep = // If `Union` is not a union type, return `Union` directly. IsUnion extends false ? Union // `Union extends` will convert `Union` // to a [distributive conditionaltype](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-8.html#distributive-conditional-types). // But this is not what we want, so we need to wrap `Union` with `[]` to prevent it. : [Union] extends [NonRecursiveType | ReadonlyMap | ReadonlySet] ? Union : [Union] extends [UnknownArray] ? Options['recurseIntoArrays'] extends true ? SetArrayAccess, IsArrayReadonly> : Union : [Union] extends [object] ? SharedObjectUnionFieldsDeep : Union; /** Same as `SharedUnionFieldsDeep`, but accepts only `object`s and as inputs. Internal helper for `SharedUnionFieldsDeep`. */ type SharedObjectUnionFieldsDeep = keyof Union extends infer Keys ? IsNever extends false ? { [Key in keyof Union]: Union[Key] extends NonRecursiveType ? Union[Key] : SharedUnionFieldsDeep } : {} : Union; /** Same as `SharedUnionFieldsDeep`, but accepts only `UnknownArray`s and as inputs. Internal helper for `SharedUnionFieldsDeep`. */ type SharedArrayUnionFieldsDeep = // Restore the readonly modifier of the array. SetArrayAccess< InternalSharedArrayUnionFieldsDeep, IsArrayReadonly >; /** Internal helper for `SharedArrayUnionFieldsDeep`. Needn't care the `readonly` modifier of arrays. */ type InternalSharedArrayUnionFieldsDeep< Union extends UnknownArray, Options extends SharedUnionFieldsDeepOptions, ResultTuple extends UnknownArray = [], > = // We should build a minimum possible length tuple where each element in the tuple exists in the union tuple. IsNever> extends true // Rule 1: If all the arrays in the union have non-fixed lengths, // like `Array | [number, ...string[]]` // we should build a tuple that is [the_fixed_parts_of_union, ...the_rest_of_union[]]. // For example: `InternalSharedArrayUnionFieldsDeep | [number, ...string[]]>` // => `[string | number, ...string[]]`. ? ResultTuple['length'] extends UnionMax['length']> ? [ // The fixed-length part of the tuple. ...ResultTuple, // The rest of the union. // Due to `ResultTuple` is the maximum possible fixed-length part of the tuple, // so we can use `StaticPartOfArray` to get the rest of the union. ...Array< SharedUnionFieldsDeep[number], Options> >, ] // Build the fixed-length tuple recursively. : InternalSharedArrayUnionFieldsDeep< Union, Options, [...ResultTuple, SharedUnionFieldsDeep] > // Rule 2: If at least one of the arrays in the union have fixed lengths, // like `Array | [number, string]`, // we should build a tuple of the smallest possible length to ensure any // item in the result tuple exists in the union tuple. // For example: `InternalSharedArrayUnionFieldsDeep | [number, string]>` // => `[string | number, string]`. : ResultTuple['length'] extends UnionMin> ? ResultTuple // As above, build tuple recursively. : InternalSharedArrayUnionFieldsDeep< Union, Options, [...ResultTuple, SharedUnionFieldsDeep] >;