blob: ac6dbe9a33cc545e91d083aafe2449df2758887e (
plain)
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
|
class Client {
/**
* @param {HTMLElement} content The base element where page content is placed
*/
constructor (content)
{
/** @type {WidgetToggle} */
this.toggle = new WidgetCheckbox();
content.appendChild(this.toggle.element);
this.slider = new WidgetSlider();
content.appendChild(this.slider.element);
this.temp = new WidgetColorTemp();
content.appendChild(this.temp.element);
this.light = new WidgetColorLight();
content.appendChild(this.light.element);
// content.appendChild(Widget("button").el);
// content.appendChild(Widget("checkbox").el);
// content.appendChild(Widget("slider").el);
// content.appendChild(Widget("color-wheel").el);
// content.appendChild(Widget("color-temp").el);
// content.appendChild(Widget("color-light").el);
// content.appendChild(Widget("thermostat").el);
// content.appendChild(Widget("sel-button").el);
this.content = content;
}
}
let contents = document.getElementsByTagName("content");
if (contents.length > 0)
OSmClient = new Client(contents[0]);
else
console.error("Unable to find content tag, OSm stopping client.");
|