mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
feat: Introduce PlatformSpecific as a new wrapper type for injectables
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
9b0318b493
commit
0bc3d9f8b2
@ -29,6 +29,7 @@ export * from "./src/noop";
|
||||
export * from "./src/object";
|
||||
export * from "./src/observable-crate";
|
||||
export * from "./src/on-keyboard-shortcut";
|
||||
export * from "./src/platform-specific-version"
|
||||
export * from "./src/prevDefault";
|
||||
export * from "./src/readableStream";
|
||||
export * from "./src/readonly";
|
||||
|
||||
@ -0,0 +1,20 @@
|
||||
/**
|
||||
* Copyright (c) OpenLens Authors. All rights reserved.
|
||||
* Licensed under MIT License. See LICENSE in root directory for more information.
|
||||
*/
|
||||
|
||||
export interface PlatformSpecific<T> {
|
||||
instantiate: () => T;
|
||||
readonly platform: NodeJS.Platform | "<default>";
|
||||
}
|
||||
|
||||
export const getPlatformSpecificFor = (targetPlatform: NodeJS.Platform, id: string) => <T>(specificImplementations: PlatformSpecific<T>[]): T => {
|
||||
const impl = specificImplementations.find(impl => impl.platform === targetPlatform)
|
||||
?? specificImplementations.find(impl => impl.platform === "<default>");
|
||||
|
||||
if (!impl) {
|
||||
throw new Error(`No platform specific implementation of "${id}" found`);
|
||||
}
|
||||
|
||||
return impl.instantiate();
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user