Skip to content

Instantly share code, notes, and snippets.

View vpalos's full-sized avatar

Valeriu Paloş vpalos

View GitHub Profile
@vpalos
vpalos / enum-keys.ts
Last active February 25, 2020 06:46
How to use `enum` values as strictly typed object keys in TypeScript.
enum DialogButton {
YES = "yes",
NO = "no",
CANCEL = "cancel"
}
interface IDialog {
buttons: { [B in DialogButton]?: boolean },
callback: (button: DialogButton) => void
}
@vpalos
vpalos / Alarms.ts
Last active August 3, 2024 12:03
Code sketch for Broker Alarms
/**
* A Condition represents the logical test which eventually is used to trigger
* an alarm (e.g. "out-of-comm", "temperature-below-freezing" etc.). This is a
* class, because a Condition can have parameters and it has to manage them.
*/
abstract class AlarmCondition {
/**
* It can be in either "Up" state (good scenario) or "Down" state (bad scenario).
* By default (unless the constructor does something else), it starts as "Up".
*/