blob: 68334e0a254490c952b57f28743bee4a6263448b (
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
|
import React from 'dom-chef';
import select from 'select-dom';
import PencilIcon from 'octicon/pencil.svg';
import elementReady from 'element-ready';
import * as pageDetect from 'github-url-detection';
import features from '.';
import GitHubURL from '../github-helpers/github-url';
import {isPermalink} from '../github-helpers';
import getDefaultBranch from '../github-helpers/get-default-branch';
async function init(): Promise<void | false> {
const readmeHeader = await elementReady('#readme .Box-header h2');
if (!readmeHeader) {
return false;
}
const isPermalink_ = await isPermalink();
const filename = readmeHeader.textContent!.trim();
const fileLink = select<HTMLAnchorElement>(`.js-navigation-open[title="${filename}"]`)!;
const url = new GitHubURL(fileLink.href).assign({
route: 'edit'
});
if (isPermalink_) {
url.branch = await getDefaultBranch(); // Permalinks can't be edited
}
// The button already exists on repos you can push to.
const existingButton = select<HTMLAnchorElement>('a[aria-label="Edit this file"]');
if (existingButton) {
if (isPermalink_) {
// GitHub has a broken link in this case #2997
existingButton.href = String(url);
}
return;
}
readmeHeader.after(
<a
href={String(url)}
className="Box-btn-octicon btn-octicon float-right"
aria-label="Edit this file"
>
<PencilIcon/>
</a>
);
}
void features.add(__filebasename, {
include: [
pageDetect.isRepoTree
],
awaitDomReady: false,
init
});
|