blob: c3388deeb22ade8af79ed9a46941ad43c8aeb237 (
plain) (
blame)
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
|
import './options.css';
import React from 'dom-chef';
import select from 'select-dom';
import linkifyUrls from 'linkify-urls';
import fitTextarea from 'fit-textarea';
import linkifyIssues from 'linkify-issues';
import indentTextarea from 'indent-textarea';
import {applyToLink as shortenLink} from 'shorten-repo-url';
import editTextNodes from './libs/linkify-text-nodes';
import parseBackticks from './libs/parse-backticks';
import optionsStorage from './options-storage';
function parseDescription(description: string): DocumentFragment {
const descriptionFragment = parseBackticks(description);
editTextNodes(linkifyUrls, descriptionFragment);
editTextNodes(linkifyIssues, descriptionFragment);
for (const a of select.all('a', descriptionFragment)) {
shortenLink(a, location.href);
}
return descriptionFragment;
}
function buildFeatureCheckbox({name, description, screenshot, disabled}: FeatureInfo): HTMLElement {
// `undefined` disconnects it from the options
const id = disabled ? undefined : `feature:${name}`;
const parsedDescription = parseDescription(
(disabled ? `Disabled because of ${disabled}; \n` : '') +
description
);
return (
<div className="feature">
<input type="checkbox" name={id} id={id} disabled={Boolean(disabled)} />
<div className="info">
<label for={id}>
<span className="feature-name">{name}</span>
{' '}
<a href={`https://github.com/sindresorhus/refined-github/blob/master/source/features/${name}.tsx`}>
source
</a>
{screenshot ? <>, <a href={screenshot}>screenshot</a></> : ''}
<br/>
<p className="description">{parsedDescription}</p>
</label>
</div>
</div>
);
}
async function init(): Promise<void> {
select('.js-features')!.append(...__featuresInfo__.map(buildFeatureCheckbox));
// Move minimized users input field below the respective feature checkbox
select('[for="feature:minimize-user-comments"]')!.after(select('.js-minimized-users-container')!);
await optionsStorage.syncForm('#options-form');
fitTextarea.watch('textarea');
indentTextarea.watch('textarea');
}
init();
|