-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
260 lines (232 loc) · 9.12 KB
/
App.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
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
import React, { useEffect, useRef, useState } from "react";
import ReactDOM from "react-dom";
import { ThemeProvider, Global } from "@emotion/react";
import styled, { configureRules } from "./src/emotion-mirror";
declare module "@emotion/react" {
export interface Theme {
color: string;
}
}
const Screen = styled.div`
background: black;
color: white;
height: 100%;
`;
const App: React.FC = () => {
const [styles, setStyles] = useState<string>(`
background: gray;
box-sizing: border-box;
color: black;
font-family: Roboto, sans-serif;
font-size: 24px;
height: 100%;
padding: 20px;
width: 100%;
`);
const Component = styled.div(styles);
const [stylelineRules, setStylelintRules] = useState<{
[key: string]: true | string[] | null;
}>({
"unit-allowed-list": ["%", "px"],
});
const textareaRef = useRef<HTMLTextAreaElement>(null);
const [warnings, setWarnings] = useState<string[]>([]);
const warnWarningsPromise = useRef(getEmptyWarningsPromise());
useEffect(() => {
configureRules(stylelineRules);
warnWarningsPromise.current = getEmptyWarningsPromise();
}, [stylelineRules]);
useEffect(() => {
if (textareaRef.current) {
textareaRef.current.value = styles;
}
warnWarningsPromise.current = getEmptyWarningsPromise();
}, [styles]);
useEffect(() => {
const debouncedSetWarnings = debounce(setWarnings, 1);
const { warn } = console;
console.warn = (message) => {
warnWarningsPromise.current.then((warnings) => {
warnings.push(message);
debouncedSetWarnings(warnings);
return warnings;
});
warn(message);
};
return () => {
console.warn = warn;
};
}, []);
return (
<ThemeProvider theme={{ color: "RebeccaPurple" }}>
<Global
styles={{
"*": { margin: 0, padding: 0 },
"body, html, #app": { background: 'black', height: "100%", width: "100%" },
}}
/>
<Screen>
<SplitLayout>
<div>
<Component>Rendered Styled Component</Component>
</div>
<div>
<StylelintRules>
<h2>Stylelint Rules</h2>
{Object.entries(stylelineRules).map(
([rule, value], index) => (
<li key={index}>
{rule}:{" "}
<input
onChange={({
target: { value },
}) => {
setStylelintRules(
(stylelintRules) => ({
...stylelintRules,
[rule]: value.split(
","
),
})
);
setWarnings([]);
setTimeout(() => {
warnWarningsPromise.current = getEmptyWarningsPromise();
setStyles(styles);
});
}}
type="text"
value={
typeof value === "object"
? value?.join(",")
: ""
}
/>
</li>
)
)}
</StylelintRules>
<StylesTextarea
onKeyDown={(event) => {
const { shiftKey, which } = event;
if (textareaRef.current && which === 9) {
const {
current: textareaElement,
} = textareaRef;
const {
selectionStart = 0,
} = textareaElement;
const tabSize = 4;
const tabString = Array(tabSize + 1).join(
" "
);
event.preventDefault();
if (shiftKey) {
if (
styles.substr(
selectionStart - tabSize,
tabSize
) === tabString
) {
textareaElement.value = `${styles.substr(
0,
selectionStart - tabSize
)}${styles.substr(selectionStart)}`;
textareaElement.setSelectionRange(
selectionStart - tabSize,
selectionStart - tabSize
);
}
} else {
textareaElement.value = `${styles.substr(
0,
selectionStart
)}${tabString}${styles.substr(
selectionStart
)}`;
textareaElement.setSelectionRange(
selectionStart + tabSize,
selectionStart + tabSize
);
}
setTimeout(() => {
setStyles(textareaElement.value);
});
}
}}
onChange={({ target: { value } }) => {
setStyles(value);
setWarnings([]);
}}
ref={textareaRef}
value={textareaRef.current?.value}
/>
{warnings.length > 0 && (
<Warnings>
{warnings.map((warning, index) => (
<Warning key={index}>{warning}</Warning>
))}
</Warnings>
)}
</div>
</SplitLayout>
</Screen>
</ThemeProvider>
);
};
const SplitLayout = styled.div`
box-sizing: border-box;
display: flex;
gap: 20px;
height: 100%;
padding: 20px;
> div {
box-sizing: border-box;
height: 100%;
overflow: auto;
width: 100%;
}
`;
const StylelintRules = styled.ul`
list-style: none;
margin-bottom: 20px;
max-height: 25%;
overflow-y: auto;
`;
const StylesTextarea = styled.textarea`
border: none;
border-radius: 8px;
box-sizing: border-box;
height: 25%;
margin-bottom: 20px;
outline: none;
width: 100%;
`;
const Warning = styled.li`
background: #322808;
border-bottom: 1px solid #635617;
color: #e7ad47;
font-size: 11px;
padding: 3px 8px 1px;
white-space: pre-line;
`;
const Warnings = styled.ul`
border-top: 1px solid #635617;
font-family: menlo, monospace;
list-style: none;
max-height: 50%;
overflow-y: auto;
`;
ReactDOM.render(<App />, document.getElementById("app"));
function debounce(functionToDebounce, timeout = 0) {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => {
functionToDebounce.apply(null, args);
}, timeout);
};
}
function getEmptyWarningsPromise() {
return new Promise<string[]>((resolve) => resolve([]));
}