Skip to content

Commit c087fff

Browse files
committed
add notification pings for examples
1 parent c0f629d commit c087fff

File tree

5 files changed

+69
-9
lines changed

5 files changed

+69
-9
lines changed

index.html

+12-3
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,18 @@
326326
<!-- Input Panel -->
327327
<div id="inputPanel" class="flex flex-col dark:bg-dark">
328328
<div id="inputPanelHeader" class="header h-7 justify-start flex-none drop-shadow-sm">
329-
<button id="GUITab" type="button" class="header-item">GUI</button>
330-
<button id="HIDTab" type="button" class="header-item">HID</button>
331-
<button id="SensorTab" type="button" class="header-item">SENSOR</button>
329+
<button id="GUITab" type="button" class="header-item flex items-center justify-center relative">
330+
GUI
331+
<span id="GUIPing" class="animate-ping absolute top-0 right-0 h-2 w-2 rounded-full bg-orange opacity-75 hidden"></span>
332+
</button>
333+
<button id="HIDTab" type="button" class="header-item flex items-center justify-center relative">
334+
HID
335+
<span id="HIDPing" class="animate-ping absolute top-0 right-0 h-2 w-2 rounded-full bg-orange opacity-75 hidden"></span>
336+
</button>
337+
<button id="SensorTab" type="button" class="header-item flex items-center justify-center relative">
338+
SENSOR
339+
<span id="SensorPing" class="animate-ping absolute top-0 right-0 h-2 w-2 rounded-full bg-orange opacity-75 hidden"></span>
340+
</button>
332341
</div>
333342
<div id="GUIContainer" class="dark:bg-dark-2 w-full h-full">
334343
<div id="GUIPanel" class="w-full h-full relative overflow-hidden">

src/components/examples/examples.ts

+19-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import DropdownElement from "@/components/navbar/dropdownElement";
1111
import NestedDropdown from "@/components/navbar/nestedDropdown";
12+
import InputPanelHeader from "@/components/inputPanel/inputPanelHeader";
1213
import {
1314
loadChuckFileFromURL,
1415
loadDataFileFromURL,
@@ -108,12 +109,18 @@ export default class Examples {
108109
);
109110
Examples.newExample(
110111
"Hello Sine GUI",
111-
() => loadChuckFileFromURL("examples/helloSineGUI.ck"),
112+
() => {
113+
loadChuckFileFromURL("examples/helloSineGUI.ck")
114+
InputPanelHeader.setNotificationPing(0, true);
115+
},
112116
guiNested
113117
);
114118
Examples.newExample(
115119
"FM Synthesis GUI",
116-
() => loadChuckFileFromURL("examples/fmGUI.ck"),
120+
() => {
121+
loadChuckFileFromURL("examples/fmGUI.ck")
122+
InputPanelHeader.setNotificationPing(0, true);
123+
},
117124
guiNested
118125
);
119126

@@ -125,12 +132,18 @@ export default class Examples {
125132
);
126133
Examples.newExample(
127134
"Mouse PWM HID",
128-
() => loadChuckFileFromURL("examples/mouseHID.ck"),
135+
() => {
136+
loadChuckFileFromURL("examples/mouseHID.ck"),
137+
InputPanelHeader.setNotificationPing(1, true);
138+
},
129139
hidNested
130140
);
131141
Examples.newExample(
132142
"Keyboard Organ HID",
133-
() => loadChuckFileFromURL("examples/keyboardHID.ck"),
143+
() => {
144+
loadChuckFileFromURL("examples/keyboardHID.ck")
145+
InputPanelHeader.setNotificationPing(1, true);
146+
},
134147
hidNested
135148
);
136149

@@ -145,13 +158,15 @@ export default class Examples {
145158
() => {
146159
loadChuckFileFromURL("examples/gyro/gyroDemo.ck");
147160
loadDataFileFromURL("examples/gyro/gyroLoop.wav");
161+
InputPanelHeader.setNotificationPing(2, true);
148162
},
149163
sensorNested
150164
);
151165
Examples.newExample(
152166
"Accel Demo",
153167
() => {
154168
loadChuckFileFromURL("examples/accelDemo.ck");
169+
InputPanelHeader.setNotificationPing(2, true);
155170
},
156171
sensorNested
157172
);

src/components/inputPanel/inputPanelHeader.ts

+21-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export default class InputPanelHeader {
66
public static inputButtons: HTMLButtonElement[] = [];
77
public static inputContainers: HTMLDivElement[] = [];
88
public static inputToggles: InputHeaderToggle[] = [];
9+
public static inputPings: HTMLSpanElement[] = [];
910

1011
public static activeToggleIndex: number = -1;
1112

@@ -18,6 +19,9 @@ export default class InputPanelHeader {
1819
InputPanelHeader.inputContainers.push(
1920
document.querySelector<HTMLDivElement>("#GUIContainer")!
2021
);
22+
InputPanelHeader.inputPings.push(
23+
document.querySelector<HTMLSpanElement>("#GUIPing")!
24+
);
2125

2226
// HID
2327
InputPanelHeader.inputButtons.push(
@@ -26,21 +30,28 @@ export default class InputPanelHeader {
2630
InputPanelHeader.inputContainers.push(
2731
document.querySelector<HTMLDivElement>("#HIDContainer")!
2832
);
33+
InputPanelHeader.inputPings.push(
34+
document.querySelector<HTMLSpanElement>("#HIDPing")!
35+
);
2936

30-
// HID
37+
// Sensor
3138
InputPanelHeader.inputButtons.push(
3239
document.querySelector<HTMLButtonElement>("#SensorTab")!
3340
);
3441
InputPanelHeader.inputContainers.push(
3542
document.querySelector<HTMLDivElement>("#SensorContainer")!
3643
);
44+
InputPanelHeader.inputPings.push(
45+
document.querySelector<HTMLSpanElement>("#SensorPing")!
46+
);
3747

3848
// Build toggles with containers
3949
for (let i = 0; i < InputPanelHeader.inputButtons.length; i++) {
4050
InputPanelHeader.inputToggles.push(
4151
new InputHeaderToggle(
4252
InputPanelHeader.inputButtons[i],
4353
InputPanelHeader.inputContainers[i],
54+
InputPanelHeader.inputPings[i],
4455
i
4556
)
4657
);
@@ -74,4 +85,13 @@ export default class InputPanelHeader {
7485
// Resize GUI
7586
GUI.onResize();
7687
}
88+
89+
/**
90+
* Set the notification ping to be visible
91+
*/
92+
static setNotificationPing(tabIndex: number, on: boolean) {
93+
for (let i = 0; i < InputPanelHeader.inputButtons.length; i++) {
94+
InputPanelHeader.inputToggles[i].setNotificationPing(i == tabIndex && on);
95+
}
96+
}
7797
}

src/components/toggle/inputHeaderToggle.ts

+16
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@ import InputPanelHeader from "../inputPanel/inputPanelHeader";
1818

1919
export default class InputHeaderToggle extends HeaderToggle {
2020
public tabIndex: number;
21+
public notificationPing: HTMLSpanElement;
2122

2223
constructor(
2324
button: HTMLButtonElement,
2425
contentContainer: HTMLDivElement,
26+
notificationPing: HTMLSpanElement,
2527
tabIndex: number
2628
) {
2729
super(button, contentContainer, false);
30+
this.notificationPing = notificationPing;
2831
this.tabIndex = tabIndex;
2932
}
3033

@@ -45,6 +48,7 @@ export default class InputHeaderToggle extends HeaderToggle {
4548
this.button.classList.remove(HOVER_COLOR_CLASS);
4649
this.button.classList.remove(DARK_TEXT_HOVER_CLASS);
4750
this.button.classList.remove(DARK_HOVER_COLOR_CLASS);
51+
this.notificationPing.classList.add("hidden");
4852
this.contentContainer.classList.remove("hidden");
4953

5054
this.open = true;
@@ -61,4 +65,16 @@ export default class InputHeaderToggle extends HeaderToggle {
6165
this.open = false;
6266
}
6367
}
68+
69+
/**
70+
* Set the notification ping to be visible
71+
* @param on show or hide the notification ping
72+
*/
73+
setNotificationPing(on: boolean) {
74+
if (!this.open && on) {
75+
this.notificationPing.classList.remove("hidden");
76+
} else {
77+
this.notificationPing.classList.add("hidden");
78+
}
79+
}
6480
}

src/styles/index.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ td:nth-child(4) {
315315
height: 36px;
316316
}
317317

318-
/* LOGGER */
318+
/* LOG CONSOLE */
319319
.log-container {
320320
@apply px-2 py-1 mb-1 overflow-hidden border border-dark-d rounded-lg bg-white dark:bg-dark dark:border-dark-4;
321321
}

0 commit comments

Comments
 (0)