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
|
-- mmm.dom
-- see https://mmm.s-ol.nu/meta/mmm.dom/
import opairs from require 'alv.util'
void_tags = { 'area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source', 'track', 'wbr' }
void_tags = { t,t for t in *void_tags }
element = (element) -> (...) ->
children = { ... }
-- attributes are last arguments but mustn't be a ReactiveVar
attributes = children[#children]
if 'table' == (type attributes) and not attributes.node
table.remove children
else
attributes = {}
b = "<#{element}"
for k,v in opairs attributes, nil, true
if k == 'style' and 'table' == type v
tmp = ''
for kk, vv in opairs v
tmp ..= "#{kk}: #{vv}; "
v = tmp
b ..= " #{k}=\"#{v}\""
-- if there is only one argument,
-- children can be in attributes table too
if #children == 0
children = attributes
for i,v in ipairs children
if 'string' != type v
print v
error "wrong type: #{type v}"
children[i] = '' unless v
if void_tags[element]
assert #children == 0, "void tag #{element} cannot have children!"
b .. ">"
else
b ..= ">" .. table.concat children, ''
b ..= "</#{element}>"
b
setmetatable {}, __index: (name) =>
with val = element name
@[name] = val
|