-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathreply-without-leaving-page.js
executable file
·117 lines (97 loc) · 3.15 KB
/
reply-without-leaving-page.js
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
import { getPageDom, isClickModified } from "../libs/utils";
import { getAllComments, createSiblingLoader } from "../libs/dom-utils";
import { paths } from "../libs/paths";
function init(metadata) {
const searchParams = new URLSearchParams(window.location.search);
if (metadata.path === "/item" && !searchParams.get("p")) {
const replyForm = document.querySelector("table.fatitem form");
if (!replyForm) {
return false;
}
}
const comments = getAllComments();
for (const comment of comments) {
comment.dataset.rhnFormInjected = "0";
const buttons = [];
["reply", "edit", "delete-confirm"].forEach((action) => {
const link = comment.querySelector(`a[href^="${action}"]`);
if (link) {
buttons.push(link);
}
});
const replyDiv = comment.querySelector("div.reply");
const ACTIVE_DATA = {
form: undefined,
button: undefined,
};
for (const button of buttons) {
button.dataset.rhnActionName = button.innerText;
button.addEventListener("click", async (event) => {
if (isClickModified(event)) {
return;
}
event.preventDefault();
const { italiceQuotedText = false } = metadata.options;
const wrapperCharacter = italiceQuotedText ? "*" : "";
// Add '> ' before every new block of selection
const selection = window
.getSelection()
.toString()
.trim()
.split("\n")
.filter((str) => str.length > 0)
.map((str) => "> " + wrapperCharacter + str + wrapperCharacter)
.join("\n\n");
if (ACTIVE_DATA.form) {
// Removing currently present form
ACTIVE_DATA.form = undefined;
replyDiv.querySelector("form").remove();
if (ACTIVE_DATA.button) {
ACTIVE_DATA.button.innerText =
ACTIVE_DATA.button.dataset.rhnActionName;
}
// Adding newly clicked form
// eslint-disable-next-line no-negated-condition
if (ACTIVE_DATA.button !== button) {
button.click();
} else {
ACTIVE_DATA.button = undefined;
}
} else {
const loader = createSiblingLoader(
button,
"height:9px;margin-left:5px;"
);
const page = await getPageDom(button.href);
loader.remove();
const form = page.querySelector("form");
form.classList.add("__rhn__injected-form");
ACTIVE_DATA.form = form;
ACTIVE_DATA.button = button;
button.innerText = "hide " + button.dataset.rhnActionName;
replyDiv.append(form);
const textarea = form.querySelector("textarea");
if (textarea) {
if (selection.length > 0) {
textarea.value += `${
textarea.value.length > 0 ? "\n\n" : ""
}${selection}\n\n`;
}
textarea.focus();
}
}
});
}
}
return true;
}
const details = {
id: "reply-without-leaving-page",
pages: {
include: paths.comments,
exclude: [],
},
loginRequired: true,
init,
};
export default details;