blob: c980d25513ba999b3b928e2b66a030e60cea3e45 (
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
|
import './cross-deleted-pr-branches.css';
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import {wrap} from '../helpers/dom-utils.js';
import features from '../feature-manager.js';
function init(): void | false {
const lastBranchAction = select.last('.TimelineItem-body .user-select-contain.commit-ref');
const headReferenceLink = select('.head-ref a');
if (!headReferenceLink && !lastBranchAction) {
return; // Don't return false, This feature’s CSS already takes care of this
}
if (!lastBranchAction?.closest('.TimelineItem-body')!.textContent!.includes(' deleted ')) {
return false;
}
const deletedBranchName = lastBranchAction.textContent!.trim();
const repoRootUrl = headReferenceLink?.href.split('/', 5).join('/');
for (const element of select.all('.commit-ref')) {
const branchName = element.textContent!.trim();
if (branchName === deletedBranchName) {
element.title = 'This branch has been deleted';
if (!headReferenceLink) {
continue;
}
if (element.classList.contains('head-ref')) {
select('a', element)!.href = repoRootUrl!;
} else {
wrap(element, <a href={repoRootUrl}/>);
}
}
}
}
void features.add(import.meta.url, {
include: [
pageDetect.isPRConversation,
],
deduplicate: 'has-rgh-inner',
awaitDomReady: true, // Must wait for the last one
init,
});
|