-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRaw.cover.tsx
211 lines (184 loc) · 3.64 KB
/
Raw.cover.tsx
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
interface RedElementAttribute extends Raw.ElementAttribute
{
a: number;
b: string;
}
declare namespace JSX
{
interface IntrinsicElements
{
red: E<RedElementAttribute>;
}
}
namespace Cover
{
/** */
export function coverCustomElement()
{
const e = <red a={1} b="string"></red>;
document.body.append(e);
return [
() => (e as any).a === 1,
() => (e as any).b === "string",
];
}
/** */
export function coverJSXElementWithRawCss()
{
const element = <div>{ raw.css(" > *", { color: "red" }) }</div>;
document.body.append(element);
}
/** */
export function coverJSXElementWithRawEvent()
{
const element = <div>{ raw.on("click", () => console.log("hello")) }Click me</div>;
document.body.append(element);
}
/** */
export function coverRawConnectedEvent()
{
raw.div(<red></red>);
raw.get(document.body)(
raw.section(
raw.on("connected", () =>
{
console.log("connected");
})
)
);
}
/** */
export function coverClassesWithExtraSpaces()
{
const div = raw.div(" a b c ");
return [
() => div.className === "a b c",
];
}
/** */
export function coverRawUseClassAttributeDirectly()
{
const e1 = raw.div({ class: "a b c" });
const e2 = <div class="x y z"></div>;
return [
() => e1.classList.contains("a") && e1.classList.contains("b") && e1.classList.contains("c"),
() => e2.classList.contains("x") && e2.classList.contains("y") && e2.classList.contains("z"),
];
}
/** */
export function coverRawStyleAttach()
{
raw.style("DIV", {
width: "100px",
height: "100px",
border: "10px solid green"
}).attach();
raw.get(document.body)(raw.div());
}
/** */
export function coverRawShadow()
{
raw.style("DIV", { borderRadius: "20px" });
raw.get(document.body)(
raw.div(
"shadow-container",
{
border: "10px solid red",
padding: "10px",
},
raw.shadow(
raw.style(
"DIV",
{
backgroundColor: "yellow"
},
),
raw.div(
"shadow-element-1",
{
width: "100px",
height: "100px",
border: "10px solid green"
}
)
),
raw.shadow(
raw.div(
"shadow-element-2",
{
width: "100px",
height: "100px",
border: "10px solid blue"
}
)
)
)
);
}
/** */
export function coverRawCssDeduplication()
{
const insert = () =>
{
document.body.append(
raw.div(
raw.css(" P", { color: "red" }),
raw.p(raw.text`para1`),
raw.p(raw.text`para2`),
)
);
};
insert();
insert();
}
/** */
export function coverRawArrayValues()
{
const div = raw.div(
{
width: ["error", "100%"]
}
);
document.body.append(div);
return () => div.style.width === "100%";
}
/** */
export function coverRawJSXCompatibility()
{
document.body.append(
raw.div(
<a href="#">This is <b>bold</b> text.</a>
)
);
}
/** */
export function coverTemplateStrings()
{
function blue(text: string) { return "<b>" + text + "</b>"; }
function red(text: string) { return "<r>" + text + "</r>"; }
raw.text`
We need a new ${blue("media channel")} where you can
have your ${blue("cake")} and ${red("eat")} it ${red("too")}.
`;
function br()
{
return raw.br();
}
const text = raw.text`
Here is some text. And a line break ${br()}
`;
}
/** */
export function coverBackgroundImageInPseudo()
{
const div = raw.div(
raw.css(":before", {
content: `""`,
backgroundImage: "linear-gradient(red, blue)",
}),
);
document.body.append(div);
}
//@ts-ignore
if (typeof module === "object") Object.assign(module.exports, { Cover });
}