audiogram-beta/store.d.ts

61 lines
1.9 KiB
TypeScript
Raw Normal View History

2022-12-04 16:19:22 -05:00
declare namespace Store {
type ColumnMapping = [frequency: number, position: number, normal: boolean];
type Range = { Min: number; Max: number; Value: number; Step: number };
type TestFrequencySample = { Stim: number; Resp: boolean };
type TestFrequency = {
Hz: number;
TestL: TestFrequencySample;
TestR: TestFrequencySample;
UserL?: TestFrequencySample;
UserR?: TestFrequencySample;
};
type Test = { Name: string; Plot: Array<TestFrequency> };
type Context = {
Test?: Test;
Freq?: TestFrequency;
Mark?: TestFrequencySample;
};
type State = {
Chan: Range;
Freq: Range;
Stim: Range;
Live: Context;
2022-12-10 13:24:31 -05:00
Draw: DrawChart;
2022-12-12 15:57:49 -05:00
Show: {Cursor:boolean, Answer:boolean}
2022-12-10 14:45:15 -05:00
TestIndex: number;
Test: Array<Test>;
2022-12-04 16:19:22 -05:00
};
type ActionMark = { Name: "Mark"; Data: boolean | null };
type ActionTest = { Name: "Test"; Data: number };
type ActionChan = { Name: "Chan"; Data: number };
type ActionFreq = { Name: "Freq"; Data: number };
type ActionStim = { Name: "Stim"; Data: number };
2022-12-12 15:57:49 -05:00
type ActionShowCursor = {Name: "ShowCursor", Data:boolean};
type ActionShowAnswer = {Name: "ShowAnswer", Data:boolean};
type Action = ActionMark | ActionTest | ActionChan | ActionFreq | ActionStim | ActionShowCursor | ActionShowAnswer;
2022-12-04 16:19:22 -05:00
type Reducer = (inState: State, inAction: Action) => State;
type ContextUpdater = (inState: State) => boolean;
type PlotKeyUser = "UserL" | "UserR";
type PlotKeyTest = "TestL" | "TestR";
type PlotKey = PlotKeyUser | PlotKeyTest;
2022-12-10 13:24:31 -05:00
type DrawPoint = { X: string; Y: string; Mark?: TestFrequencySample };
2022-12-05 23:22:37 -05:00
type DrawLine = { Head:DrawPoint, Tail:DrawPoint};
type DrawGroup = { Points: Array<DrawPoint>; Paths: Array<DrawLine> };
2022-12-10 13:24:31 -05:00
type DrawChart = { Cross?:DrawPoint, UserL: DrawGroup, UserR: DrawGroup, TestL: DrawGroup, TestR: DrawGroup };
2022-12-05 23:22:37 -05:00
type Binding = [state:State, dispatch:(inAction:Action)=>void]
2022-12-11 14:56:43 -05:00
type Grade = {
Total:number,
Done:number,
Score:number
};
2022-12-10 23:36:48 -05:00
}