-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
83 lines (79 loc) · 2.19 KB
/
Copy pathscript.js
File metadata and controls
83 lines (79 loc) · 2.19 KB
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
document.addEventListener("DOMContentLoaded", () => {
document.querySelectorAll("button, .card, select").forEach((el) => {
el.addEventListener("pointerdown", () => {
if (!el.disabled) el.classList.add("active");
});
el.addEventListener("pointerup", () => {
el.classList.remove("active");
});
el.addEventListener("pointercancel", () => {
el.classList.remove("active");
});
el.addEventListener("pointerleave", () => {
el.classList.remove("active");
});
el.addEventListener("pointerenter", () => {
if (!el.disabled) el.classList.add("hover");
});
el.addEventListener("pointerleave", () => {
el.classList.remove("hover");
});
});
});
document.addEventListener("contextmenu", (e) => {
const el = e.target;
if (
el.tagName === "INPUT" ||
el.tagName === "TEXTAREA" ||
el.isContentEditable
) {
return;
}
e.preventDefault();
});
async function copyData() {
const el = document.querySelector("._copy");
try {
await navigator.clipboard.writeText(el.value);
} catch (e) {
console.error("Clipboard error:", e);
alert("Unable to copy to clipboard.");
}
}
async function pasteData() {
const el = document.querySelector("._paste");
try {
el.value = await navigator.clipboard.readText();
} catch (e) {
console.error("Clipboard error:", e);
alert("Unable to read clipboard.");
}
}
function clearData() {
document.querySelectorAll("._clear").forEach((el) => {
el.value = "";
});
}
if (
"serviceWorker" in navigator &&
!(
window.location.hostname.startsWith("localhost") ||
window.location.hostname.startsWith("127.0.0.1") ||
window.location.hostname.startsWith("192.168.")
)
) {
navigator.serviceWorker
.register("/sw.js", { scope: "/" })
.catch((err) => console.error("SW registration failed:", err));
navigator.serviceWorker.addEventListener("message", (event) => {
if (event.data.type === "SW_UPDATED") {
const version = event.data.version;
console.log(`New SW version: ${version}`);
if (
confirm(`New version ${version} installed.\nDo you want to reload now?`)
) {
window.location.reload();
}
}
});
}