blob: dd69b70df44d0bbddeb3c8a4746f005bdf75bdd8 (
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
|
import React from 'dom-chef';
import select from 'select-dom';
import onetime from 'onetime';
import {observe} from 'selector-observer';
import * as pageDetect from 'github-url-detection';
import {wrap} from '../helpers/dom-utils';
import features from '.';
function init(): void {
observe('.review-item .dropdown-item[href^="#pullrequestreview-"]:not(.rgh-jump-to-change-requested-comment)', {
constructor: HTMLAnchorElement,
add(messageContainer) {
messageContainer.classList.add('rgh-jump-to-change-requested-comment');
const element = select('.review-status-item div[title*="requested changes"]')?.lastChild;
if (element) {
wrap(element, <a href={messageContainer.href}/>);
}
}
});
}
void features.add(__filebasename, {
include: [
pageDetect.isPRConversation
],
init: onetime(init)
});
|