-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
290 lines (252 loc) · 8.26 KB
/
test.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
import {w,clone} from './index.js';
{
const o = undefined;
const {body} = document;
const myStyle = {
color: '#808080',
background: 'linear-gradient(to right, lime, dodgerblue)',
margin: 0
};
{
w`form ${o} ${myStyle},
p label ${"Name"} input ${{required: true, type:'text', placeholder:'your name'}}.
p label ${"Email"} input ${{required: true, type:'email', placeholder:'your email'}}.
p label ${"Password"} input ${{required: true, type:'password', placeholder:'your password'}}.
p button ${"#"}
`(body);
}
{
w`
main,
style ${'nav.menubar { position: sticky; top: 0 }'}.
nav ${{innerText:'Good', class:'menubar'}} ${{background: 'purple'}}.
header ${{class:'banner'}}.
article ${{class:'feature-box'}},
ul,
li aside,
h1 ${"A stunning feature"}.
h2 ${"Amazing byline of the feature"}.
.
li aside,
h1 ${"A stunning feature"}.
h2 ${"Amazing byline of the feature"}.
.
li aside,
h1 ${"A stunning feature"}.
h2 ${"Amazing byline of the feature"}.
.
.
.
article ${{class:'social-proof'}},
ul,
li aside,
h1 ${"A fawning testimonial"}.
h2 ${"Some Jerk paid to say nice things"}.
.
li aside,
h1 ${"A fawning testimonial"}.
h2 ${"Some Jerk paid to say nice things"}..
li aside,
h1 ${"A fawning testimonial"}.
h2 ${"Some Jerk paid to say nice things"}..
.
.
article ${{class:'cta plan-chooser'}},
ul,
li aside,
h1 ${"Free tier"}.
h2 ${"THis one is for penniless losers"}..
li aside,
h1 ${"Reccomended options"}
h2 ${"You'll subsidize the free tier"}..
li aside,
h1 ${"Enterprise jerks"}.
h2 ${"You'll pay us more than we need"}..
.
p ${"You only got one shot at this"} button ${"Purchase something now!"}.
.
footer ${{class:'meaningless-legaleze'}},
ul,
li a ${{innerText: "Some link you'll never be able to contact us by", href:"#go-die"}}.
li a ${{innerText: "Some link you'll never be able to contact us by", href:"#go-die"}}.
li a ${{innerText: "Some link you'll never be able to contact us by", href:"#go-die"}}.
li a ${{innerText: "Some link you'll never be able to contact us by", href:"#go-die"}}.
li a ${{innerText: "Some link you'll never be able to contact us by", href:"#go-die"}}.
li a ${{innerText: "Some link you'll never be able to contact us by", href:"#go-die"}}.
.
.
`(document.body);
}
// :text test
{
w`
h1,
:text ${"Bepis is "}.
em ${"REALLY"}.
:text ${" the best!"}.
:text ${" YES"}
`(document.body);
}
// :comp test
{
const data = [
{name:"Name", spec: {required: true, type:'text', placeholder:'your name'}},
{name:"Email", spec: {required: true, type:'text', placeholder:'your email'}},
{name:"Password", spec: {required: true, type:'text', placeholder:'your password'}},
];
const field = ({name, spec}) => w`p label ${name} input ${spec}`;
const form = ({x,y} = {}) => w`form ${o} ${myStyle},
:map ${data} ${field}.
p button ${x || y ? `# ${x+y}`: "#"}
`();
w`
article,
h1 ${"Godot Waited!!"}.
section ${{class:'form'}},
p ${"Fill it out"}.
:comp ${o} ${form}.
p ${"End of section"}
`(document.body);
w`
article,
h1 ${"Godot Waited with data function"}.
section ${{class:'form'}},
p ${"Fill it out"}.
:comp ${() => ({x:1,y:2})} ${form}.
p ${"End of section"}
`(document.body);
w`
article,
h1 ${"Godot Waited with 1 param comp on form"}.
section ${{class:'form'}},
p ${"Fill it out"}.
:comp ${form}.
p ${"End of section"}
`(document.body);
}
// :map test
{
const data = [
{name:"Name", spec: {required: true, type:'text', placeholder:'your name'}},
{name:"Email", spec: {required: true, type:'text', placeholder:'your email'}},
{name:"Password", spec: {required: true, type:'text', placeholder:'your password'}},
];
const field = ({name, spec}) => w`p label ${name} input ${spec}`;
w`form ${o} ${myStyle},
:map ${data} ${field}.
p button ${"#"}
`(body);
w`form ${"Excellent Form with Data Function"} ${myStyle},
:map ${() => data} ${field}.
p button ${"#"}
`(body);
}
const intervals = [];
// pin <key> test (instance)
// passes
{
// should print 2 widgets that are 'pinned' to their mount locations
let count = 0;
let print = key => w`
${key}
p label ${"Great " + key + " " + count++} input ${{value:"hat " + count}}`;
// mount
print('abc123')(document.body);
print('abc124')(document.body);
intervals.push(setInterval(() => print('abc123'), 1000));
intervals.push(setInterval(() => print('abc124'), 500));
}
// pin true test (singleton)
// passes
{
// should print only 1 widget updating every 500ms
let count = 0;
let print = key => w`
${true}
p label ${"Great " + count++} input ${{value:"hat " + count}}`;
//mount
print()(document.body);
intervals.push(setInterval(() => print('abc123'), 1000));
intervals.push(setInterval(() => print('abc124'), 500));
}
// pin false test (free)
// passes
{
// should print a new widget every 500ms
let count = 0;
let print = key => w`
${false}
p label ${"Great " + count++} input ${{value:"hat " + count}}`;
intervals.push(setInterval(() => print('abc123')(document.body), 1000));
intervals.push(setInterval(() => print('abc124')(document.body), 500));
}
// pin <key> no duplication on re-mount test
// passes
{
// should print only 2 widgets even tho re-mounted each call
let count = 0;
let print = key => w`
${key}
p label ${"Great " + key + " " + count++} input ${{value:"hat " + count}}`;
// mount
print('abc123')(document.body);
print('abc124')(document.body);
intervals.push(setInterval(() => print('abc123')(document.body), 1000));
intervals.push(setInterval(() => print('abc124')(document.body), 500));
}
setTimeout(() => {
console.log("Clearing intervals " + intervals.join(','));
intervals.forEach(i => clearInterval(i));
}, 5000);
{
// setup
const Item = item => w`${item.key}
li p,
:text ${item.description}.
a ${{ href: item.url }} :text ${item.name}.
.`;
const List = items => w`${true} ul :map ${items} ${Item}`;
const myItems = [
{ name: "Ratchet", description: "Tool", key: "z2" },
{ name: "Screw", description: "Part", key: "a3" },
{ name: "Sand", description: "Material", key: "p4" },
{ name: "Moxie", description: "Intangible", key: "x5" },
{ name: "Delilah", description: "Name", key: "s1" }
];
const newName = "Mojo";
Object.assign(window, { Item, List, myItems, newName });
// use
List(myItems)(document.body); // mount it
const myChangedItems = clone(myItems);
myChangedItems[3].name = newName; // change something
console.clear();
setTimeout(() => List(myChangedItems), 1000) // only item 3 will change
}
// function in style slot test
{
const print = value => w`p label ${"Label"} input ${{value}} ${styler}`;
print('abc124')(document.body);
function styler() {
return {
background: 'dodgerblue',
color: 'white',
fontWeight: 'bold',
fontSize: '21pt'
};
}
}
// string (stylist function name for style.dss) in style slot test
{
const print = value => w`p label ${"Label"} input ${{value}} ${"styler"}`;
print('abc124')(document.body);
function styler() {
return `
* {
background: 'dodgerblue';
color: 'white';
font-weight: 'bold';
}
`;
}
}
}