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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
/* eslint-disable no-use-before-define */
import * as React from 'react';
import ReactMarkdown from 'react-markdown';
import rehypeRaw from 'rehype-raw';
import remarkGfm from 'remark-gfm';
import { darkColors, dashBlue, getLabelColors, isDarkMode, lightColors } from './reportManagerUtils';
import { Issue } from './reportManagerSchema';
import { StrCast } from '../../../fields/Types';
import { Doc } from '../../../fields/Doc';
/**
* Mini helper components for the report component.
*/
interface FilterProps<T> {
items: T[];
activeValue: T | null;
setActiveValue: (val: T | null) => void;
}
// filter ui for issues (horizontal list of tags)
export function Filter<T extends string>({ items, activeValue, setActiveValue }: FilterProps<T>) {
// establishing theme
const darkMode = isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor));
const colors = darkMode ? darkColors : lightColors;
const isTagDarkMode = isDarkMode(StrCast(Doc.UserDoc().userColor));
const activeTagTextColor = isTagDarkMode ? darkColors.text : lightColors.text;
return (
<div className="issues-filter">
<Tag
text="All"
onClick={() => {
setActiveValue(null);
}}
fontSize="12px"
backgroundColor={activeValue === null ? StrCast(Doc.UserDoc().userColor) : 'transparent'}
color={activeValue === null ? activeTagTextColor : colors.textGrey}
borderColor={activeValue === null ? StrCast(Doc.UserDoc().userColor) : colors.border}
border
/>
{items.map(item => (
<Tag
key={item}
text={item}
onClick={() => {
setActiveValue(item);
}}
fontSize="12px"
backgroundColor={activeValue === item ? StrCast(Doc.UserDoc().userColor) : 'transparent'}
color={activeValue === item ? activeTagTextColor : colors.textGrey}
border
borderColor={activeValue === item ? StrCast(Doc.UserDoc().userColor) : colors.border}
/>
))}
</div>
);
}
interface IssueCardProps {
issue: Issue;
onSelect: () => void;
}
// Component for the issue cards list on the left
export function IssueCard({ issue, onSelect }: IssueCardProps) {
const [textColor, setTextColor] = React.useState('');
const [bgColor, setBgColor] = React.useState('transparent');
const [borderColor, setBorderColor] = React.useState('transparent');
const resetColors = () => {
const darkMode = isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor));
const colors = darkMode ? darkColors : lightColors;
setTextColor(colors.text);
setBorderColor(colors.border);
setBgColor('transparent');
};
const handlePointerOver = () => {
const darkMode = isDarkMode(StrCast(Doc.UserDoc().userColor));
setTextColor(darkMode ? darkColors.text : lightColors.text);
setBorderColor(StrCast(Doc.UserDoc().userColor));
setBgColor(StrCast(Doc.UserDoc().userColor));
};
React.useEffect(() => {
resetColors();
}, []);
return (
<div className="issue-card" onClick={onSelect} style={{ color: textColor, backgroundColor: bgColor, borderColor: borderColor }} onPointerOver={handlePointerOver} onPointerOut={resetColors}>
<div className="issue-top">
<label className="issue-label">#{issue.number}</label>
<div className="issue-tags">
{issue.labels.map(label => {
const labelString = typeof label === 'string' ? label : (label.name ?? '');
const colors = getLabelColors(labelString);
return <Tag key={labelString} text={labelString} backgroundColor={colors[0]} color={colors[1]} />;
})}
</div>
</div>
<h3 className="issue-title">{issue.title}</h3>
</div>
);
}
interface IssueViewProps {
issue: Issue;
}
// Detailed issue view that displays on the right
export function IssueView({ issue }: IssueViewProps) {
const [issueBody, setIssueBody] = React.useState('');
// Parses the issue body into a formatted markdown (main functionality is replacing urls with tags)
const parseBody = async (body: string) => {
const imgTagRegex = /<img\b[^>]*\/?>/;
const videoTagRegex = /<video\b[^>]*\/?>/;
const audioTagRegex = /<audio\b[^>]*\/?>/;
const fileRegex = /https:\/\/browndash\.com\/files/;
const localRegex = /http:\/\/localhost:1050\/files/;
const parts = body.split('\n');
const modifiedParts = await Promise.all(
parts.map(async part => {
if (imgTagRegex.test(part) || videoTagRegex.test(part) || audioTagRegex.test(part)) {
return `\n${await parseFileTag(part)}\n`;
}
if (fileRegex.test(part)) {
const tag = await parseDashFiles(part);
return tag;
}
if (localRegex.test(part)) {
const tag = await parseLocalFiles(part);
return tag;
}
return part;
})
);
setIssueBody(modifiedParts.join('\n'));
};
// Extracts the src from an image tag and either returns the raw url if not accessible or a new image tag
const parseFileTag = async (tag: string): Promise<string | undefined> => {
const regex = /src="([^"]+)"/;
let url = '';
const match = tag.match(regex);
if (!match) return tag;
url = match[1];
if (!url) return tag;
const mimeType = url.split('.').pop();
if (!mimeType) return tag;
switch (mimeType) {
// image
case '.jpg':
case '.png':
case '.jpeg':
case '.gif':
return getDisplayedFile(url, 'image');
// video
case '.mp4':
case '.mpeg':
case '.webm':
case '.mov':
return getDisplayedFile(url, 'video');
// audio
case '.mp3':
case '.wav':
case '.ogg':
return getDisplayedFile(url, 'audio');
default:
}
return tag;
};
// Returns the corresponding HTML tag for a src url
const parseDashFiles = async (url: string) => {
const dashImgRegex = /https:\/\/browndash\.com\/files[/\\]images/;
const dashVideoRegex = /https:\/\/browndash\.com\/files[/\\]videos/;
const dashAudioRegex = /https:\/\/browndash\.com\/files[/\\]audio/;
if (dashImgRegex.test(url)) {
return getDisplayedFile(url, 'image');
}
if (dashVideoRegex.test(url)) {
return getDisplayedFile(url, 'video');
}
if (dashAudioRegex.test(url)) {
return getDisplayedFile(url, 'audio');
}
return url;
};
// Returns the corresponding HTML tag for a src url
const parseLocalFiles = async (url: string) => {
const imgRegex = /http:\/\/localhost:1050\/files[/\\]images/;
const dashVideoRegex = /http:\/\/localhost:1050\.com\/files[/\\]videos/;
const dashAudioRegex = /http:\/\/localhost:1050\.com\/files[/\\]audio/;
if (imgRegex.test(url)) {
return getDisplayedFile(url, 'image');
}
if (dashVideoRegex.test(url)) {
return getDisplayedFile(url, 'video');
}
if (dashAudioRegex.test(url)) {
return getDisplayedFile(url, 'audio');
}
return url;
};
const getDisplayedFile = async (url: string, fileType: 'image' | 'video' | 'audio'): Promise<string | undefined> => {
switch (fileType) {
case 'image': {
const imgValid = await isImgValid(url);
if (!imgValid) return `\n${url} (This image could not be loaded)\n`;
return `\n${url}\n<img width="100%" alt="Issue asset" src=${url} />\n`;
}
case 'video': {
const videoValid = await isVideoValid(url);
if (!videoValid) return `\n${url} (This video could not be loaded)\n`;
return `\n${url}\n<video class="report-default-video" width="100%" controls alt="Issue asset" src=${url} />\n`;
}
case 'audio': {
const audioValid = await isAudioValid(url);
if (!audioValid) return `\n${url} (This audio could not be loaded)\n`;
return `\n${url}\n<audio src=${url} controls />\n`;
}
default:
}
return undefined;
};
// Loads an image and returns a promise that resolves as whether the image is valid or not
const isImgValid = (src: string): Promise<boolean> => {
const imgElement = document.createElement('img');
const validPromise: Promise<boolean> = new Promise(resolve => {
imgElement.addEventListener('load', () => resolve(true));
imgElement.addEventListener('error', () => resolve(false));
});
imgElement.src = src;
return validPromise;
};
// Loads a video and returns a promise that resolves as whether the video is valid or not
const isVideoValid = (src: string): Promise<boolean> => {
const videoElement = document.createElement('video');
const validPromise: Promise<boolean> = new Promise(resolve => {
videoElement.addEventListener('loadeddata', () => resolve(true));
videoElement.addEventListener('error', () => resolve(false));
});
videoElement.src = src;
return validPromise;
};
// Loads audio and returns a promise that resolves as whether the audio is valid or not
const isAudioValid = (src: string): Promise<boolean> => {
const audioElement = document.createElement('audio');
const validPromise: Promise<boolean> = new Promise(resolve => {
audioElement.addEventListener('loadeddata', () => resolve(true));
audioElement.addEventListener('error', () => resolve(false));
});
audioElement.src = src;
return validPromise;
};
// Called on mount to parse the body
React.useEffect(() => {
setIssueBody('Loading...');
parseBody((issue.body as string) ?? '');
}, [issue]);
return (
<div className="issue-view">
<span className="issue-label">
Issue{' '}
<a className="issue-link" href={issue.html_url} target="_blank" rel="noreferrer">
#{issue.number}
</a>
</span>
<h2 className="issue-title">{issue.title}</h2>
<div className="issue-date">
Opened on {new Date(issue.created_at).toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' })} {issue.user?.login && `by ${issue.user?.login}`}
</div>
{issue.labels.length > 0 && (
<div>
<div className="issue-tags">
{issue.labels.map(label => {
const labelString = typeof label === 'string' ? label : (label.name ?? '');
const colors = getLabelColors(labelString);
return <Tag key={labelString} text={labelString} backgroundColor={colors[0]} color={colors[1]} fontSize="12px" />;
})}
</div>
</div>
)}
<ReactMarkdown remarkPlugins={[remarkGfm]} rehypePlugins={[rehypeRaw]}>
{issueBody}
</ReactMarkdown>
</div>
);
}
interface TagProps {
text: string;
fontSize?: string;
color?: string;
backgroundColor?: string;
borderColor?: string;
border?: boolean;
onClick?: () => void;
}
// Small tag for labels of the issue
export function Tag({ text, color, backgroundColor, fontSize, border, borderColor, onClick }: TagProps) {
return (
<div
onClick={onClick ?? (() => {})}
className="report-tag"
style={{ color: color ?? '#ffffff', backgroundColor: backgroundColor ?? '#347bff', cursor: onClick ? 'pointer' : 'auto', fontSize: fontSize ?? '10px', border: border ? '1px solid' : 'none', borderColor: borderColor ?? '#94a3b8' }}>
{text}
</div>
);
}
interface FormInputProps {
value: string;
placeholder: string;
onChange: (val: string) => void;
}
export function FormInput({ value, placeholder, onChange }: FormInputProps) {
const [inputBorderColor, setInputBorderColor] = React.useState('');
return (
<input
className="report-input"
style={{ borderBottom: `1px solid ${inputBorderColor}` }}
value={value}
type="text"
placeholder={placeholder}
onChange={e => onChange(e.target.value)}
required
onPointerOver={() => {
if (inputBorderColor === dashBlue) return;
setInputBorderColor(isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor)) ? darkColors.textGrey : lightColors.textGrey);
}}
onPointerOut={() => {
if (inputBorderColor === dashBlue) return;
setInputBorderColor(isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor)) ? darkColors.border : lightColors.border);
}}
onFocus={() => {
setInputBorderColor(dashBlue);
}}
onBlur={() => {
setInputBorderColor(isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor)) ? darkColors.border : lightColors.border);
}}
/>
);
}
export function FormTextArea({ value, placeholder, onChange }: FormInputProps) {
const [textAreaBorderColor, setTextAreaBorderColor] = React.useState('');
return (
<textarea
className="report-textarea"
value={value}
placeholder={placeholder}
onChange={e => onChange(e.target.value)}
required
style={{ border: `1px solid ${textAreaBorderColor}` }}
onPointerOver={() => {
if (textAreaBorderColor === dashBlue) return;
setTextAreaBorderColor(isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor)) ? darkColors.textGrey : lightColors.textGrey);
}}
onPointerOut={() => {
if (textAreaBorderColor === dashBlue) return;
setTextAreaBorderColor(isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor)) ? darkColors.border : lightColors.border);
}}
onFocus={() => {
setTextAreaBorderColor(dashBlue);
}}
onBlur={() => {
setTextAreaBorderColor(isDarkMode(StrCast(Doc.UserDoc().userBackgroundColor)) ? darkColors.border : lightColors.border);
}}
/>
);
}
|