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
|
import React from 'dom-chef';
import select from 'select-dom';
import delegate, {DelegateEvent} from 'delegate-it';
import copyToClipboard from 'copy-text-to-clipboard';
import features from '../libs/features';
function handleClick({delegateTarget: button}: DelegateEvent<MouseEvent, HTMLButtonElement>): void {
const file = button.closest('.Box, .js-gist-file-update-container');
const content = select.all('.blob-code-inner', file!)
.map(({innerText: line}) => line === '\n' ? '' : line) // Must be `.innerText`
.join('\n');
copyToClipboard(content);
button.textContent = 'Copied!';
button.classList.remove('tooltipped');
setTimeout(() => {
button.textContent = 'Copy';
button.classList.add('tooltipped');
}, 2000);
}
function renderButton(): void {
for (const button of select.all('.file-actions .btn, [data-hotkey="b"]')) {
button
.parentElement! // `BtnGroup`
.prepend(
<button
className="btn btn-sm tooltipped tooltipped-n BtnGroup-item rgh-copy-file"
aria-label="Copy file to clipboard"
type="button">
Copy
</button>
);
}
}
function removeButton(): void {
select('.rgh-copy-file')?.remove();
}
function init(): void {
delegate('.rgh-copy-file', 'click', handleClick);
if (select.exists('.blob.instapaper_body')) {
delegate('.rgh-md-source', 'rgh:view-markdown-source', renderButton);
delegate('.rgh-md-source', 'rgh:view-markdown-rendered', removeButton);
} else {
renderButton();
}
}
features.add({
id: __featureName__,
description: 'Adds a button to copy a file’s content.',
screenshot: 'https://cloud.githubusercontent.com/assets/170270/14453865/8abeaefe-00c1-11e6-8718-9406cee1dc0d.png',
include: [
features.isSingleFile,
features.isGist
],
load: features.onAjaxedPages,
init
});
|