forked from kitajs/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
428 lines (363 loc) · 10.2 KB
/
index.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/// <reference path="./jsx.d.ts" />
/**
* A const used to represent a html fragment.
*
* @typedef {import('.').Fragment}
*/
const Fragment = Symbol.for('kHtmlFragment')
/**
* Returns true if the character at the given index is an uppercase character.
*
* @param {string} input the string to check.
* @param {number} index the index of the character to check.
* @returns {boolean} if the character at the given index is an uppercase character.
* @this {void}
*/
function isUpper (input, index) {
const code = input.charCodeAt(index)
return code >= 65 /* A */ && code <= 90 /* Z */
}
/**
* Converts a camel cased string to a kebab cased string.
*
* @param {string} camel the camel cased string to convert.
* @this {void}
*/
function toKebabCase (camel) {
const length = camel.length
let start = 0
let end = 0
let kebab = ''
let prev = true
let curr = isUpper(camel, 0)
let next
for (; end < length; end++) {
next = isUpper(camel, end + 1)
// detects the start of a new camel case word and avoid lowercasing abbreviations.
if (!prev && curr && !next) {
// @ts-expect-error - this indexing is safe.
kebab += camel.slice(start, end) + '-' + camel[end].toLowerCase()
start = end + 1
}
prev = curr
curr = next
}
// Appends the remaining string.
kebab += camel.slice(start, end)
return kebab
}
/**
* Escapes a string for use in an HTML attribute value.
*
* @param {any} value the value to escape. If the value is not a string it will be converted to a string with `toString()` or `toISOString()` if it is a Date.
* @returns {string} the escaped string.
* @this {void}
*/
function escapeHtml (value) {
// Handle non string values
if (typeof value !== 'string') {
// HTML Dates can just be ISO stringified
if (value instanceof Date) {
return value.toISOString()
}
// Calls toString() on the value
value = String(value)
}
const length = value.length
let escaped = ''
let start = 0
let end = 0
for (; end < length; end++) {
switch (value[end]) {
case '&':
escaped += value.slice(start, end) + '&'
start = end + 1
continue
case '>':
escaped += value.slice(start, end) + '>'
start = end + 1
continue
case '<':
escaped += value.slice(start, end) + '<'
start = end + 1
continue
case '"':
escaped += value.slice(start, end) + '"'
start = end + 1
continue
case "'":
escaped += value.slice(start, end) + '''
start = end + 1
continue
case '\u00A0':
escaped += value.slice(start, end) + ' '
start = end + 1
continue
}
}
// Appends the remaining string.
escaped += value.slice(start, end)
return escaped
}
/**
* Returns true if the element is a html void element.
*
* @param {string} tag the name of the element to check.
* @returns {boolean} if the element is a html void element.
* @this {void}
*/
function isVoidElement (tag) {
// Ordered by most common to least common.
return (
tag === 'img' ||
tag === 'input' ||
tag === 'meta' ||
tag === 'br' ||
tag === 'hr' ||
tag === 'link' ||
tag === 'area' ||
tag === 'base' ||
tag === 'col' ||
tag === 'command' ||
tag === 'embed' ||
tag === 'keygen' ||
tag === 'param' ||
tag === 'source' ||
tag === 'track' ||
tag === 'wbr'
)
}
/**
* Transforms an object of style attributes into a html style string.
*
* @param {object | string} style
* @returns {string}
* @this {void}
*/
function styleToString (style) {
if (typeof style === 'string') {
return escapeHtml(style)
}
const keys = Object.keys(style)
const length = keys.length
let key
let index = 0
let result = ''
for (; index < length; index++) {
key = keys[index]
// @ts-expect-error - this indexing is safe.
result += toKebabCase(key) + ':' + escapeHtml(style[key]) + ';'
}
return result
}
/**
* Transforms an object of attributes into a html attributes string.
*
* **This function does not support Date objects.**
*
* @example `a b="c" d="1"`
*
* @param {object} attributes a record of literal values to use as attributes.
* @returns {string} the generated html attributes string.
* @this {void}
*/
function attributesToString (attributes) {
if (!attributes) {
return ''
}
const keys = Object.keys(attributes)
const length = keys.length
let key, value, formattedName
let result = ''
let index = 0
for (; index < length; index++) {
key = keys[index]
// Skips all @kitajs/html specific attributes.
if (key === 'children' || key === 'safe') {
continue
}
// @ts-expect-error - this indexing is safe.
value = attributes[key]
// React className compatibility.
if (key === 'className') {
// @ts-expect-error - both were provided, so use the class attribute.
if (attributes.class !== undefined) {
continue
}
key = 'class'
}
if (key === 'style') {
result += ' style="' + styleToString(value) + '"'
continue
}
// @ts-expect-error - this indexing is safe.
formattedName = toKebabCase(key)
if (typeof value === 'boolean') {
// Only add the attribute if the value is true.
if (value) {
result += ' ' + formattedName
}
continue
}
if (value === null || value === undefined) {
continue
}
result += ' ' + formattedName
if (value !== '') {
result += '="' + escapeHtml(value) + '"'
}
}
return result
}
/**
* Joins raw string html elements into a single html string.
*
* A raw html fragment is just an array of strings, this method concatenates .
*
* @param {import('.').Children[]} contents an maybe nested array of strings to concatenate.
* @param {boolean} [escape=false] if we should escape the contents before concatenating them.
* @returns {string} the concatenated and escaped string of contents.
* @this {void}
*/
function contentsToString (contents, escape) {
const length = contents.length
if (length === 0) {
return ''
}
let result = ''
let content
let index = 0
for (; index < length; index++) {
content = contents[index]
// Ignores non 0 falsy values
if (!content && content !== 0) {
continue
}
if (Array.isArray(content)) {
result += contentsToString(content, escape)
} else if (escape === true) {
result += escapeHtml(content)
} else {
result += content
}
}
return result
}
/**
* Generates a html string from the given contents.
*
* @param {string | Function | typeof Fragment} name the name of the element to create or a function that creates the element.
* @param {import('.').PropsWithChildren<any> | null} attrs a record of literal values to use as attributes. A property named `children` will be used as the children of the element.
* @param {...import('.').Children} children the inner contents of the element.
* @returns {string} the generated html string.
* @this {void}
*/
function createElement (name, attrs, ...children) {
// Adds the children to the attributes if it is not present.
if (attrs === null) {
attrs = { children }
}
// Calls the element creator function if the name is a function
if (typeof name === 'function') {
// In case the children attributes is not present, add it as a property.
if (attrs.children === undefined) {
// When only a single child is present, unwrap it.
if (children.length > 1) {
attrs.children = children
} else {
attrs.children = children[0]
}
}
return name(attrs)
}
if (name === Fragment) {
return contentsToString(children)
}
// Switches the tag name when this custom `tag` is present.
if (name === 'tag') {
name = String(attrs.of)
delete attrs.of
}
if (children.length === 0 && isVoidElement(name)) {
return '<' + name + attributesToString(attrs) + '/>'
}
return (
'<' +
name +
attributesToString(attrs) +
'>' +
contentsToString(children, attrs.safe) +
'</' +
name +
'>'
)
}
/**
* Compiles html with the given arguments specified with $name syntax.
*
* @param {string} html
* @returns {function} the compiled function which
* @this {void}
*/
function compile (html) {
const length = html.length
let body = 'return '
let nextStart = 0
let paramEnd = 0
let index = 0
for (; index < length; index++) {
// Escapes the backtick character because it will be used to wrap the string
// in a template literal.
if (html[index] === '`') {
body += '`' + html.slice(nextStart, index) + '\\``+'
nextStart = index + 1
continue
}
// Escapes the backslash character because it will be used to escape the
// backtick character.
if (html[index] === '\\') {
body += '`' + html.slice(nextStart, index) + '\\\\`+'
nextStart = index + 1
continue
}
// Skip non $ characters
if (html[index] !== '$') {
continue
}
// Finds the end index of the current variable
paramEnd = index
while (
html[++paramEnd] !== undefined &&
// @ts-expect-error - this indexing is safe.
html[paramEnd].match(/[a-zA-Z0-9]/)
);
body +=
'`' +
html.slice(nextStart, index) +
'`+(args["' +
html.slice(index + 1, paramEnd) +
'"] || "' +
html.slice(index, paramEnd) +
'")+'
nextStart = paramEnd
index = paramEnd
}
// Adds the remaining string
body += '`' + html.slice(nextStart) + '`'
// eslint-disable-next-line no-new-func
return Function('args', body)
}
module.exports.escapeHtml = escapeHtml
module.exports.isVoidElement = isVoidElement
module.exports.attributesToString = attributesToString
module.exports.toKebabCase = toKebabCase
module.exports.isUpper = isUpper
module.exports.styleToString = styleToString
module.exports.createElement = createElement
module.exports.h = createElement
module.exports.contentsToString = contentsToString
module.exports.compile = compile
module.exports.Fragment = Fragment
// esModule interop
Object.defineProperty(exports, '__esModule', { value: true })
module.exports.default = Object.assign({}, module.exports)