【发布时间】:2019-12-30 03:57:56
【问题描述】:
进程有一个枚举。它们有不同的步骤,也表示为枚举,如下所示。
enum Process {
Simple = "simple",
Advanced = "advanced"
}
enum SimpleStep {
A = "A",
B = "B"
}
enum AdvancedStep {
A = "A",
B = "B",
C = "C"
}
通过以下语句,我创建了一系列步骤。
const SIMPLE_STEPS = Object.keys(SimpleStep).map(
(k: string) => SimpleStep[k]
);
const ADVANCED_STEPS = Object.keys(AdvancedStep).map(
k => AdvancedStep[k]
);
const ALL_STEPS = {
[Process.Simple]: SIMPLE_STEPS,
[Process.Advanced]: ADVANCED_STEPS
};
我写了以下函数来获取步数。
// ???: Check if S is a step of Process
const getStepNumber = <P extends Process, S>(process: P, step: S) => {
return ALL_STEPS[process].indexOf(step) + 1;
};
// returns 2, which is correct
console.log('step number of B', getStepNumber(Process.Advanced, AdvancedStep.B));
// returns 0. Is it possible to prevent at compile-time?
console.log('step number of C', getStepNumber(Process.Simple, AdvancedStep.C));
正如您在代码示例中看到的那样,是否可以在编译时使用泛型防止以错误的步骤调用函数?
这里是操场,如果您想尝试整个示例:TS Playground
【问题讨论】:
标签: typescript generics typescript-typings typescript-generics