This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
web-component.js
153 lines (110 loc) · 3.77 KB
/
web-component.js
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// Define the web component using the standard Web Components API
class HelloWorld extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
connectedCallback() {
const shadow = this.shadowRoot;
const div = document.createElement('div');
div.classList.add('hello-world');
div.textContent = 'Hello World!';
div.style.color = 'orange';
shadow.appendChild(div);
}
}
// Register the web component
customElements.define('hello-world', HelloWorld);
// Define the web component using the standard Web Components API
class NumToWords extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
connectedCallback() {
let data = window.ftd.component_data(this);
let num = data.num.get();
const shadow = this.shadowRoot;
const div = document.createElement('div');
div.textContent = numberToWords(num);
div.style.color = 'orange';
div.style.borderWidth = '1px';
div.style.borderColor = 'yellow';
div.style.borderStyle = 'dashed';
div.style.padding = '10px';
data.num.on_change(function () {
const changed_value = data.num.get();
div.textContent = numberToWords(changed_value);
});
shadow.appendChild(div);
}
}
// Register the web component
customElements.define('num-to-words', NumToWords);
// Define the web component using the standard Web Components API
class MutNumToWords extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
connectedCallback() {
let data = window.ftd.component_data(this);
let num = data.num.get();
const shadow = this.shadowRoot;
const div = document.createElement('div');
div.innerHTML = "Output is "
+ numberToWords(num)
+ "<br> Btw, I decrement num";
div.style.color = 'orange';
div.style.borderWidth = '1px';
div.style.borderColor = 'yellow';
div.style.borderStyle = 'dashed';
div.style.padding = '10px';
div.style.cursor = 'pointer';
div.onclick = function (_) {
let current_num = data.num.get();
current_num -= 1;
data.num.set(current_num);
}
data.num.on_change(function () {
const changed_value = data.num.get();
div.innerHTML = "Output is "
+ numberToWords(changed_value)
+ "<br> Btw, I decrement num";
});
shadow.appendChild(div);
}
}
// Register the web component
customElements.define('mut-num-to-words', MutNumToWords);
function numberToWords(num) {
const ones = ['', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine'];
const tens = ['', '', 'twenty', 'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty', 'ninety'];
const teens = ['ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', 'sixteen', 'seventeen', 'eighteen', 'nineteen'];
if (num == 0) {
return 'zero';
}
if (num < 0) {
return 'minus ' + numberToWords(Math.abs(num));
}
let words = '';
if (Math.floor(num / 1000) > 0) {
words += numberToWords(Math.floor(num / 1000)) + ' thousand ';
num %= 1000;
}
if (Math.floor(num / 100) > 0) {
words += numberToWords(Math.floor(num / 100)) + ' hundred ';
num %= 100;
}
if (num >= 10 && num <= 19) {
words += teens[num - 10] + ' ';
num = 0;
} else if (num >= 20 || num === 0) {
words += tens[Math.floor(num / 10)] + ' ';
num %= 10;
}
if (num > 0) {
words += ones[num] + ' ';
}
return words.trim();
}