-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcheckbox.ts
59 lines (52 loc) · 1.26 KB
/
checkbox.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
55
56
57
58
59
// Copyright 2023 Im-Beast. MIT license.
import { ComponentOptions } from "../component.ts";
import { Computed, Signal } from "../signals/mod.ts";
import { signalify } from "../utils/signals.ts";
import { Button } from "./button.ts";
export enum Mark {
Check = "✓",
Cross = "✗",
}
export interface CheckBoxOptions extends ComponentOptions {
checked: boolean | Signal<boolean>;
}
/**
* Component for creating interactive checkbox
*
* @example
* ```ts
* new CheckBox({
* parent: tui,
* checked: false,
* theme: {
* base: crayon.bgGreen,
* focused: crayon.bgLightGreen,
* active: crayon.bgYellow,
* },
* rectangle: {
* column: 1,
* row: 1,
* height: 1,
* width: 1,
* },
* zIndex: 0,
* });
* ```
*/
export class CheckBox extends Button {
checked: Signal<boolean>;
constructor(options: CheckBoxOptions) {
const checkedSignal = signalify(options.checked);
Object.assign(options, {
label: {
text: new Computed(() => checkedSignal.value ? Mark.Check : Mark.Cross),
},
});
super(options);
this.checked = checkedSignal;
}
interact(method: "mouse" | "keyboard"): void {
super.interact(method);
if (this.state.peek() === "active") this.checked.value = !this.checked.peek();
}
}