-
Notifications
You must be signed in to change notification settings - Fork 25
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
Showing
4 changed files
with
83 additions
and
0 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
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,43 @@ | ||
import { cachified } from './cachified'; | ||
import { CachifiedOptions, CachifiedOptionsWithSchema } from './common'; | ||
import { CreateReporter, mergeReporters } from './reporter'; | ||
|
||
type PartialOptions< | ||
Options extends CachifiedOptions<any>, | ||
OptionalKeys extends string | number | symbol, | ||
> = Omit<Options, OptionalKeys> & | ||
Partial<Pick<Options, Extract<OptionalKeys, keyof Options>>>; | ||
|
||
/** | ||
* create a pre-configured version of cachified | ||
*/ | ||
export function configure< | ||
ConfigureValue extends unknown, | ||
Opts extends Partial<CachifiedOptions<ConfigureValue>>, | ||
>(defaultOptions: Opts, defaultReporter?: CreateReporter<ConfigureValue>) { | ||
function configuredCachified<Value, InternalValue>( | ||
options: PartialOptions< | ||
CachifiedOptionsWithSchema<Value, InternalValue>, | ||
keyof Opts | ||
>, | ||
reporter?: CreateReporter<Value>, | ||
): Promise<Value>; | ||
async function configuredCachified<Value>( | ||
options: PartialOptions<CachifiedOptions<Value>, keyof Opts>, | ||
reporter?: CreateReporter<Value>, | ||
): Promise<Value>; | ||
function configuredCachified<Value>( | ||
options: PartialOptions<CachifiedOptions<Value>, keyof Opts>, | ||
reporter?: CreateReporter<Value>, | ||
) { | ||
return cachified( | ||
{ | ||
...defaultOptions, | ||
...options, | ||
} as any as CachifiedOptions<Value>, | ||
mergeReporters(defaultReporter as any as CreateReporter<Value>, reporter), | ||
); | ||
} | ||
|
||
return configuredCachified; | ||
} |
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