1
0
Fork 0
cautious-journey/src/resolve.ts

94 lines
1.9 KiB
TypeScript
Raw Normal View History

2020-08-15 17:38:33 +00:00
import { FlagLabel, getValueName, prioritySort, StateLabel } from './labels';
/**
* How a label changed.
*/
export enum ChangeVerb {
EXISTING = 'existing',
CREATED = 'created',
REMOVED = 'removed',
REQUIRED = 'required',
}
/**
* Details of a label change.
*/
export interface ChangeRecord {
/**
* The label which caused this change.
*/
cause: string;
/**
* How the label was changed.
*/
effect: ChangeVerb;
/**
* The label being changed.
*/
label: string;
}
export interface ErrorRecord {
error: Error;
label: string;
}
/**
* Collected inputs for a resolver run.
*/
export interface ResolveInput {
flags: Array<FlagLabel>;
labels: Array<string>;
states: Array<StateLabel>;
}
/**
* Collected results from a resolver run.
*/
export interface ResolveResult {
changes: Array<ChangeRecord>;
errors: Array<ErrorRecord>;
labels: Array<string>;
}
/**
* Resolve the desired set of labels, given a starting set and the flags/states to be
* applied.
*/
export function resolveLabels(options: ResolveInput): ResolveResult {
const activeLabels = new Set(options.labels);
const changes: Array<ChangeRecord> = [];
const errors: Array<ErrorRecord> = [];
2020-08-15 17:38:33 +00:00
const sortedFlags = prioritySort(options.flags);
for (const flag of sortedFlags) {
const { name } = flag;
if (activeLabels.has(name)) {
// TODO: check removes
// TODO: check requires
}
}
2020-08-15 17:38:33 +00:00
const sortedStates = prioritySort(options.states);
for (const state of sortedStates) {
2020-08-15 17:38:33 +00:00
const sortedValues = prioritySort(state.values);
for (const value of sortedValues) {
2020-08-15 17:38:33 +00:00
const name = getValueName(state, value);
if (activeLabels.has(name)) {
// TODO: check higher-priority values
// TODO: check removes
// TODO: check requires
// TODO: check becomes
}
}
}
return {
changes,
errors,
labels: Array.from(activeLabels),
};
}