mixin.merge.js
4.16 KB
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
function pug_attr(t, e, n, f) {
return !1 !== e && null != e && (e || "class" !== t && "style" !== t) ? !0 === e ? " " + (f ? t : t + '="' + t + '"') : ("function" == typeof e.toJSON && (e = e.toJSON()),
"string" == typeof e || (e = JSON.stringify(e), n || -1 === e.indexOf('"')) ? (n && (e = pug_escape(e)),
" " + t + '="' + e + '"') : " " + t + "='" + e.replace(/'/g, "'") + "'") : "";
}
function pug_attrs(t, r) {
var a = "";
for (var s in t) if (pug_has_own_property.call(t, s)) {
var u = t[s];
if ("class" === s) {
u = pug_classes(u), a = pug_attr(s, u, !1, r) + a;
continue;
}
"style" === s && (u = pug_style(u)), a += pug_attr(s, u, !1, r);
}
return a;
}
function pug_classes(s, r) {
return Array.isArray(s) ? pug_classes_array(s, r) : s && "object" == typeof s ? pug_classes_object(s) : s || "";
}
function pug_classes_array(r, a) {
for (var s, e = "", u = "", c = Array.isArray(a), g = 0; g < r.length; g++) (s = pug_classes(r[g])) && (c && a[g] && (s = pug_escape(s)),
e = e + u + s, u = " ");
return e;
}
function pug_classes_object(r) {
var a = "", n = "";
for (var o in r) o && r[o] && pug_has_own_property.call(r, o) && (a = a + n + o,
n = " ");
return a;
}
function pug_escape(e) {
var a = "" + e, t = pug_match_html.exec(a);
if (!t) return e;
var r, c, n, s = "";
for (r = t.index, c = 0; r < a.length; r++) {
switch (a.charCodeAt(r)) {
case 34:
n = """;
break;
case 38:
n = "&";
break;
case 60:
n = "<";
break;
case 62:
n = ">";
break;
default:
continue;
}
c !== r && (s += a.substring(c, r)), c = r + 1, s += n;
}
return c !== r ? s + a.substring(c, r) : s;
}
var pug_has_own_property = Object.prototype.hasOwnProperty;
var pug_match_html = /["&<>]/;
function pug_merge(e, r) {
if (1 === arguments.length) {
for (var t = e[0], g = 1; g < e.length; g++) t = pug_merge(t, e[g]);
return t;
}
for (var l in r) if ("class" === l) {
var n = e[l] || [];
e[l] = (Array.isArray(n) ? n : [ n ]).concat(r[l] || []);
} else if ("style" === l) {
var n = pug_style(e[l]);
n = n && ";" !== n[n.length - 1] ? n + ";" : n;
var a = pug_style(r[l]);
a = a && ";" !== a[a.length - 1] ? a + ";" : a, e[l] = n + a;
} else e[l] = r[l];
return e;
}
function pug_style(r) {
if (!r) return "";
if ("object" == typeof r) {
var t = "";
for (var e in r) pug_has_own_property.call(r, e) && (t = t + e + ":" + r[e] + ";");
return t;
}
return r + "";
}
function template(locals) {
var pug_html = "", pug_mixins = {}, pug_interp;
pug_mixins["foo"] = pug_interp = function() {
var block = this && this.block, attributes = this && this.attributes || {};
pug_html = pug_html + "<p" + pug_attrs(pug_merge([ {
class: "bar"
}, attributes ]), false) + ">One</p><p" + pug_attrs(pug_merge([ {
class: "baz quux"
}, attributes ]), false) + ">Two</p><p" + pug_attrs(attributes, false) + ">Three</p><p" + pug_attrs(pug_merge([ {
class: "bar baz"
}, attributes ]), false) + ">Four</p>";
};
pug_html = pug_html + "<body>";
pug_mixins["foo"].call({
attributes: {
class: "hello"
}
});
pug_mixins["foo"].call({
attributes: {
id: "world"
}
});
pug_mixins["foo"].call({
attributes: {
class: "hello",
id: "world"
}
});
pug_mixins["foo"].call({
attributes: {
class: "hello world"
}
});
pug_mixins["foo"].call({
attributes: {
class: "hello"
}
});
pug_mixins["foo"].call({
attributes: {
class: "hello world"
}
});
pug_mixins["foo"]();
pug_mixins["foo"].call({
attributes: {
class: "hello"
}
});
pug_html = pug_html + "</body>";
return pug_html;
}