This repository was archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathComponent.ts
54 lines (44 loc) · 1.73 KB
/
Component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { View } from '../view';
import { Control, ControlState } from '../control';
export interface ComponentState {}
export interface ComponentParams {}
/**
* Abstract class defining the the base functionality from which all
* other components must extend.
*/
export abstract class Component<
Params extends ComponentParams = ComponentParams,
State extends ComponentState = ComponentState
> {
label: string;
control: Control;
params: Params & { mode: string } = {} as Params & { mode: string };
state: State = {} as State;
constructor(control: Control, params: Params & { mode?: string }) {
this.control = control;
this.params = {
...(this.params as object),
...(params as object),
mode: params.mode || '__BASE__',
} as Params & { mode: string };
}
// called when component is registered to a view for the first time
// allows running of code that is only allowed in the API's init function
onInit?(): void;
onActivate?(): void;
onDeactivate?(): void;
setState(partialState: Partial<State>): void {
// update object state
this.state = { ...(this.state as object), ...(partialState as object) } as State; // TODO: should be able to remove type casting in future typescript release
// re-render associated controls
this.render();
}
render(): void {
// update hardware state if in view
if (this.control.activeComponent === this) this.control.setState(this.getControlOutput());
}
// defines conversion of component state to control state
abstract getControlOutput(): Partial<ControlState>;
// handles control input
abstract onControlInput(input: ControlState): void;
}