-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathmain.js
66 lines (62 loc) · 2.33 KB
/
main.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
/**
* Shorthand for creating Elements.
* @param {*} tag The tag name of the element.
* @param {*} [props] Optional props.
* @param {*} children Child elements or strings
*/
function h(tag, props, ...children) {
let element = document.createElement(tag);
if (props) {
if (props.nodeType || typeof props !== "object") {
children.unshift(props);
}
else {
for (let name in props) {
let value = props[name];
if (name == "style") {
Object.assign(element.style, value);
}
else {
element.setAttribute(name, value);
element[name] = value;
}
}
}
}
for (let child of children) {
element.appendChild(typeof child === "object" ? child : document.createTextNode(child));
}
return element;
}
const lorem1 = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu dui rutrum, congue velit a, auctor nulla. Aenean lacinia."
const lorem2 = "Aenean lacinia, leo quis tempus dapibus, sapien lacus efficitur mauris, et tristique eros tortor et mauris. Vivamus nec tellus condimentum, fermentum enim eget, eleifend velit."
const lorem3 = "Ut volutpat nulla ac egestas lobortis. Leo quis tempus dapibus."
let dialog =
h("dialog",
h("form", { method:"dialog", style: { width: 400 } },
h("h1", "H1 Heading, Large Rule, Large Paragraph"),
h("hr", { class:"large" } ),
h("p", { class:"large", style:{ lineHeight: 20 }}, lorem1),
h("p", { class:"large"}, lorem3),
h("h2", "H2 Heading, Normal Rule, Normal Paragraph"),
h("hr"),
h("p", lorem1),
h("p", lorem3),
h("h3", "H3 Heading, Small Rule, Small Paragraph"),
h("hr", { class:"small" } ),
h("p", { class:"small"}, lorem1),
h("p", { class:"small"}, lorem3),
h("footer",
h("button", { uxpVariant: "primary", onclick(e) { dialog.close() } }, "Cancel"),
h("button", { uxpVariant: "cta", onclick(e) { dialog.close() } }, "Submit")
)
)
)
document.body.appendChild(dialog);
module.exports = {
commands: {
menuCommand: function () {
dialog.showModal();
}
}
};