blob: 4c480ce5c2ca64668dd6c689ff9b96ae5cc789b7 (
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
|
import React from 'dom-chef';
import select from 'select-dom';
import delegate from 'delegate-it';
import FoldDownIcon from 'octicon/fold-down.svg';
import * as pageDetect from 'github-url-detection';
import * as textFieldEdit from 'text-field-edit';
import features from '.';
import smartBlockWrap from '../helpers/smart-block-wrap';
function addContentToDetails(event: delegate.Event<MouseEvent, HTMLButtonElement>): void {
const field = event.delegateTarget.form!.querySelector('textarea')!;
const selection = field.value.slice(field.selectionStart, field.selectionEnd);
// Don't indent <summary> because indentation will not be automatic on multi-line content
const newContent = `
<details>
<summary>Details</summary>
${selection}
</details>
`.replace(/(\n|\b)\t+/g, '$1').trim();
field.focus();
textFieldEdit.insert(field, smartBlockWrap(newContent, field));
// Restore selection.
// `selectionStart` will be right after the newly-inserted text
field.setSelectionRange(
field.value.lastIndexOf('</summary>', field.selectionStart) + '</summary>'.length + 2,
field.value.lastIndexOf('</details>', field.selectionStart) - 2
);
}
function init(): void {
delegate(document, '.rgh-collapsible-content-btn', 'click', addContentToDetails);
for (const anchor of select.all('md-ref')) {
anchor.after(
<button type="button" className="toolbar-item tooltipped tooltipped-n rgh-collapsible-content-btn" aria-label="Add collapsible content">
<FoldDownIcon/>
</button>
);
}
}
void features.add(__filebasename, {
include: [
pageDetect.hasRichTextEditor
],
init
});
|