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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
import React from 'dom-chef';
import * as pageDetect from 'github-url-detection';
import {BellIcon, BellSlashIcon, IssueReopenedIcon} from '@primer/octicons-react';
import features from '../feature-manager.js';
import observe from '../helpers/selector-observer.js';
// Make the element look selected, not disabled, but effectively disable clicks/focus
const disableAttrs = {
'aria-selected': true,
className: 'selected',
tabIndex: -1,
style: {pointerEvents: 'none'},
} as const satisfies React.HTMLAttributes<HTMLButtonElement>;
function SubButton(): JSX.Element {
return (
<button
data-disable-with
name="id"
type="submit"
className="btn btn-sm flex-1 BtnGroup-item tooltipped tooltipped-sw"
/>
);
}
function getReasonElement(subscriptionButton: HTMLButtonElement): HTMLParagraphElement {
return subscriptionButton
.closest('.thread-subscription-status')!
.querySelector('p.reason')!;
}
function getCurrentStatus(subscriptionButton: HTMLButtonElement): 'none' | 'all' | 'status' {
const reason = getReasonElement(subscriptionButton).textContent!;
// You’re receiving notifications because you chose custom settings for this thread.
if (reason.includes('custom settings')) {
return 'status';
}
// You’re not receiving notifications from this thread.
if (reason.includes('not receiving')) {
return 'none';
}
return 'all';
}
function addButton(subscriptionButton: HTMLButtonElement): void {
const status = getCurrentStatus(subscriptionButton);
// Save first
const originalId = subscriptionButton.form!.elements.id;
subscriptionButton.after(
<div className="BtnGroup d-flex width-full">
<SubButton
// @ts-expect-error I don't remember how to fix this
value="unsubscribe"
aria-label="Unsubscribe"
{...(status === 'none' && disableAttrs)}
>
<BellSlashIcon/> None
</SubButton>
<SubButton
// @ts-expect-error I don't remember how to fix this
value="subscribe"
aria-label="Subscribe to all events"
{...(status === 'all' && disableAttrs)}
>
<BellIcon/> All
</SubButton>
<SubButton
// @ts-expect-error I don't remember how to fix this
value="subscribe_to_custom_notifications"
aria-label="Subscribe just to status changes (closing, reopening, merging)"
{...(status === 'status' && disableAttrs)}
>
<IssueReopenedIcon/> Status
</SubButton>
</div>,
// Always submitted, but ignored unless the value is `subscribe_to_custom_notifications`
// Keep outside BtnGroup
<input type="hidden" name="events[]" value="merged"/>,
<input type="hidden" name="events[]" value="closed"/>,
<input type="hidden" name="events[]" value="reopened"/>,
);
// Remove it only if the form was successfully added
originalId.remove();
subscriptionButton.hidden = true;
// 'all' can have many reasons, but the other two don't add further information #6684
if (status !== 'all') {
getReasonElement(subscriptionButton).hidden = true;
}
}
function init(signal: AbortSignal): void {
// Repos you're ignoring can't be subscribed to, so the button is disabled
observe('button[data-thread-subscribe-button]:not([disabled])', addButton, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.isConversation,
],
awaitDomReady: true, // The sidebar is at the end of the page
init,
});
/*
Test URLs
- Issue: https://github.com/refined-github/sandbox/issues/3
- PR: https://github.com/refined-github/sandbox/pull/4
- Also test a repo you're completely ignoring
*/
|