mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 18:31:54 +00:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { Config } from "./builder";
|
|
import { DeepPartial, DependsOn, Effects, ExpectedExports } from "../types";
|
|
import { InputSpec } from "./configTypes";
|
|
import { nullIfEmpty } from "../util";
|
|
import { TypeFromProps } from "../util/propertiesMatcher";
|
|
|
|
/**
|
|
* We want to setup a config export with a get and set, this
|
|
* is going to be the default helper to setup config, because it will help
|
|
* enforce that we have a spec, write, and reading.
|
|
* @param options
|
|
* @returns
|
|
*/
|
|
export function setupConfigExports<A extends InputSpec, ConfigType>(options: {
|
|
spec: Config<A>;
|
|
dependsOn: DependsOn;
|
|
write(options: { effects: Effects; input: TypeFromProps<A> }): Promise<ConfigType>;
|
|
read(options: { effects: Effects; config: ConfigType }): Promise<null | DeepPartial<TypeFromProps<A>>>;
|
|
}) {
|
|
const validator = options.spec.validator();
|
|
return {
|
|
setConfig: (async ({ effects, input }) => {
|
|
if (!validator.test(input)) {
|
|
await effects.error(String(validator.errorMessage(input)));
|
|
return { error: "Set config type error for config" };
|
|
}
|
|
const output = await options.write({ input, effects });
|
|
return output;
|
|
}) as ExpectedExports.setConfig,
|
|
getConfig: (async ({ effects, config }) => {
|
|
return {
|
|
spec: options.spec.build(),
|
|
config: nullIfEmpty(await options.read({ effects, config: config as ConfigType })),
|
|
};
|
|
}) as ExpectedExports.getConfig,
|
|
};
|
|
}
|
|
|
|
export default setupConfigExports;
|