blob: 13dc5e8204fe44d9273bb66b4c3fa816efcf6e06 [file] [log] [blame]
avm99963cbea3142019-03-28 00:48:15 +01001var mutationObserver, intersectionObserver, options;
2
avm99963af7860e2019-06-04 03:33:26 +02003function parseUrl(url) {
4 var forum_a = url.match(/forum\/([0-9]+)/i);
5 var thread_a = url.match(/thread\/([0-9]+)/i);
6
7 if (forum_a === null || thread_a === null) {
8 return false;
9 }
10
11 return {
12 "forum": forum_a[1],
13 "thread": thread_a[1]
14 };
15}
16
avm999637beddb32020-01-18 19:52:46 +010017function recursiveParentElement(el, tag) {
18 while (el !== document.documentElement) {
19 el = el.parentNode;
20 if (el.tagName == tag) return el;
21 }
22
23 return undefined;
24}
25
avm999633b9ff842019-06-04 04:01:31 +020026function duplicateThreads() {
27 var modal = document.querySelector(".pane[pane-id=\"default-1\"]");
28 var duplicateinto = parseUrl(modal.querySelector("#infinitegforums_duplicateinto").value);
29 if (duplicateinto === false) {
30 return;
31 }
32 modal.querySelector("footer").style.display = "none";
33 var checkboxes = document.querySelectorAll(".thread-group material-checkbox[aria-checked=\"true\"]");
34 modal.querySelector("main").innerHTML = '<p style="text-align: center;">'+chrome.i18n.getMessage("inject_duplicate_progress")+':<br><progress id="infinitegforums_progress" max="'+checkboxes.length+'" value="0"></progress></p>';
35 checkboxes.forEach(checkbox => {
avm999637beddb32020-01-18 19:52:46 +010036 var thread = parseUrl(recursiveParentElement(checkbox, "A").href);
avm999633b9ff842019-06-04 04:01:31 +020037 var script = document.createElement('script');
38 script.textContent = 'fetch("https://support.google.com/s/community/api/MarkDuplicateThread", {"credentials":"include","headers":{"content-type":"text/plain; charset=utf-8"},"body":\'{\"1\":\"'+thread.forum+'\",\"2\":\"'+thread.thread+'\",\"3\":{\"2\":{\"1\":\"'+duplicateinto.forum+'\",\"2\":\"'+duplicateinto.thread+'\"}}}\',"method":"POST","mode":"cors"}).then(_ => { var progress = document.querySelector("#infinitegforums_progress"); progress.value = parseInt(progress.value) + 1; if (progress.value == progress.getAttribute("max")) { location.reload(); } });';
39 document.head.appendChild(script);
40 script.remove();
41 });
42}
43
avm99963847ee632019-03-27 00:57:44 +010044function mutationCallback(mutationList, observer) {
45 mutationList.forEach((mutation) => {
46 if (mutation.type == "childList") {
47 mutation.addedNodes.forEach(function (node) {
avm99963d0757252019-03-30 20:13:00 +010048 if (typeof node.classList !== "undefined") {
avm99963d0757252019-03-30 20:13:00 +010049 if (options.thread && node.classList.contains("load-more-bar")) {
50 intersectionObserver.observe(node.querySelector(".load-more-button"));
51 }
52
avm999636d9c5fe2019-06-04 00:35:53 +020053 if (options.threadall && node.classList.contains("load-more-bar")) {
54 intersectionObserver.observe(node.querySelector(".load-all-button"));
55 }
56
avm99963d0757252019-03-30 20:13:00 +010057 if (options.history && ("parentNode" in node) && node.parentNode !== null && ("tagName" in node.parentNode) && node.parentNode.tagName == "EC-USER") {
58 var nameElement = node.querySelector(".name span");
59 if (nameElement !== null) {
avm9996351c95852019-06-17 21:37:41 +020060 var name = nameElement.innerText;
61 var query = encodeURIComponent("(creator:\""+name+"\" | replier:\""+name+"\") -forum:0");
62 var urlpart = encodeURIComponent("query="+query);
avm99963d0757252019-03-30 20:13:00 +010063 var link = document.createElement("a");
avm9996351c95852019-06-17 21:37:41 +020064 link.setAttribute("href", "https://support.google.com/s/community/search/"+urlpart);
avm99963a3d1ef32019-03-30 23:33:29 +010065 link.innerText = chrome.i18n.getMessage("inject_previousposts");
avm999637beddb32020-01-18 19:52:46 +010066 node.querySelector(".main-card-content").appendChild(document.createElement("br"));
67 node.querySelector(".main-card-content").appendChild(link);
avm99963d0757252019-03-30 20:13:00 +010068 }
69 }
avm99963af7860e2019-06-04 03:33:26 +020070
71 if (options.batchduplicate && ("tagName" in node) && node.tagName == "MATERIAL-BUTTON" && node.getAttribute("debugid") !== null && (node.getAttribute("debugid") == "mark-read-button" || node.getAttribute("debugid") == "mark-unread-button") && ("parentNode" in node) && document.querySelector("[debugid=\"batchduplicate\"]") === null && node.parentNode !== null && ("parentNode" in node.parentNode) && node.parentNode.parentNode !== null && ("tagName" in node.parentNode.parentNode) && node.parentNode.parentNode.tagName == "EC-BULK-ACTIONS") {
72 var clone = node.cloneNode(true);
73 clone.setAttribute("debugid", "batchduplicate");
74 clone.setAttribute("title", chrome.i18n.getMessage("inject_duplicatebtn"));
75 clone.querySelector("material-icon").setAttribute("icon", "control_point_duplicate");
76 clone.querySelector("i.material-icon-i").innerText = "control_point_duplicate";
77 node.parentNode.prepend(clone);
78 clone.addEventListener("click", function() {
79 var modal = document.querySelector(".pane[pane-id=\"default-1\"]");
80 modal.classList.add("visible");
81 modal.style.display = "block";
82 modal.innerHTML = '<material-dialog role="dialog" aria-modal="true" style="display: block!important; width: 600px; max-width: 100%; margin: 8px auto; padding: 16px 0; background: white; box-shadow: 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12), 0 11px 15px -7px rgba(0,0,0,.2);"><header role="presentation" style="padding: 24px 24px 0; width: 100%; box-sizing: border-box;"><div style="color: #202124; font-family: \'Google Sans\',sans-serif; font-size: 18px; font-weight: 400; line-height: 24px; margin-bottom: 4px; text-align: center;">'+chrome.i18n.getMessage("inject_duplicatebtn")+'</div></header><main role="presentation" style="font-size: 13px; font-weight: 400; color: rgba(0,0,0,.87); overflow: auto; padding: 0 24px;"><p><label for="duplicate_thread">'+chrome.i18n.getMessage("inject_duplicateinto")+' </label><input type="url" id="infinitegforums_duplicateinto" placeholder="'+chrome.i18n.getMessage("inject_duplicateinto_placeholder")+'" style="width: 400px;"></p></main><footer role="presentation" style="padding: 0 24px;"><material-button role="button" style="display: inline-block; float: right; color: #1a73e8; height: 36px; min-width: 64px; margin: 0 4px; cursor: pointer;" id="infinitegforums_duplicate"><div class="content" style="line-height: 36px; text-align: center;">'+chrome.i18n.getMessage("inject_duplicate_confirm")+'</div></material-button><material-button role="button" style="display: inline-block; float: right; color: #1a73e8; height: 36px; min-width: 64px; margin: 0 4px; cursor: pointer;" id="infinitegforums_cancel"><div class="content" style="line-height: 36px; text-align: center;">'+chrome.i18n.getMessage("inject_duplicate_cancel")+'</div></material-button><div style="clear: both;"></div></footer></material-dialog>';
avm999633b9ff842019-06-04 04:01:31 +020083 modal.querySelector("#infinitegforums_duplicateinto").focus();
avm99963af7860e2019-06-04 03:33:26 +020084 modal.querySelector("#infinitegforums_cancel").addEventListener("click", function() {
85 var modal = document.querySelector(".pane[pane-id=\"default-1\"]");
86 modal.classList.remove("visible");
87 modal.style.display = "none";
88 modal.innerHTML = "";
89 });
avm999633b9ff842019-06-04 04:01:31 +020090 modal.querySelector("#infinitegforums_duplicateinto").addEventListener("keypress", function() {
91 if (event.keyCode == 13) {
92 duplicateThreads();
avm99963af7860e2019-06-04 03:33:26 +020093 }
avm99963af7860e2019-06-04 03:33:26 +020094 });
avm999633b9ff842019-06-04 04:01:31 +020095 modal.querySelector("#infinitegforums_duplicate").addEventListener("click", duplicateThreads);
avm99963af7860e2019-06-04 03:33:26 +020096 });
97 }
avm99963d0757252019-03-30 20:13:00 +010098 }
avm99963847ee632019-03-27 00:57:44 +010099 });
100 }
101 });
102}
103
avm99963adf90862020-04-12 13:27:45 +0200104function intersectionCallback(entries, observer) {
avm99963847ee632019-03-27 00:57:44 +0100105 entries.forEach(entry => {
106 if (entry.isIntersecting) {
107 entry.target.click();
108 }
109 });
110};
111
112var observerOptions = {
113 childList: true,
114 attributes: true,
115 subtree: true
116}
117
avm99963847ee632019-03-27 00:57:44 +0100118var intersectionOptions = {
119 root: document.querySelector('.scrollable-content'),
120 rootMargin: '0px',
121 threshold: 1.0
122}
123
avm99963cbea3142019-03-28 00:48:15 +0100124chrome.storage.sync.get(null, function(items) {
125 options = items;
126
127 mutationObserver = new MutationObserver(mutationCallback);
128 mutationObserver.observe(document.querySelector(".scrollable-content"), observerOptions);
129
130 intersectionObserver = new IntersectionObserver(intersectionCallback, intersectionOptions);
avm99963122dc9b2019-03-30 18:44:18 +0100131
132 if (options.fixedtoolbar) {
133 var link = document.createElement('link');
134 link.setAttribute("rel", "stylesheet");
avm999638a3a6152019-03-31 21:12:02 +0200135 link.setAttribute("href", "data:text/css;charset=UTF-8,ec-bulk-actions{position: sticky; top: 0; background: white; z-index: 96;}");
avm99963b21f6252019-03-30 22:06:21 +0100136 document.head.appendChild(link);
avm99963122dc9b2019-03-30 18:44:18 +0100137 }
avm99963cbea3142019-03-28 00:48:15 +0100138});