summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfoxfire52 <foxfire52@virgilio.it>2024-10-25 14:10:56 +0200
committerGitHub <noreply@github.com>2024-10-25 14:10:56 +0200
commit51d6f285117753f556bf9c1f2072bac8719f626e (patch)
tree33db467d669a0b4cb4e8c27371efd99c8a74f398
parentUpdate chat.v1.js (diff)
downloadgpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.tar
gpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.tar.gz
gpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.tar.bz2
gpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.tar.lz
gpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.tar.xz
gpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.tar.zst
gpt4free-51d6f285117753f556bf9c1f2072bac8719f626e.zip
Diffstat (limited to '')
-rw-r--r--g4f/gui/client/static/js/highlightjs-copy.min.js45
1 files changed, 44 insertions, 1 deletions
diff --git a/g4f/gui/client/static/js/highlightjs-copy.min.js b/g4f/gui/client/static/js/highlightjs-copy.min.js
index ac11d33e..f74a6172 100644
--- a/g4f/gui/client/static/js/highlightjs-copy.min.js
+++ b/g4f/gui/client/static/js/highlightjs-copy.min.js
@@ -1 +1,44 @@
-class CopyButtonPlugin{constructor(options={}){self.hook=options.hook;self.callback=options.callback}"after:highlightElement"({el,text}){let button=Object.assign(document.createElement("button"),{innerHTML:"Copy",className:"hljs-copy-button"});button.dataset.copied=false;el.parentElement.classList.add("hljs-copy-wrapper");el.parentElement.appendChild(button);el.parentElement.style.setProperty("--hljs-theme-background",window.getComputedStyle(el).backgroundColor);button.onclick=function(){if(!navigator.clipboard)return;let newText=text;if(hook&&typeof hook==="function"){newText=hook(text,el)||text}navigator.clipboard.writeText(newText).then(function(){button.innerHTML="Copied!";button.dataset.copied=true;let alert=Object.assign(document.createElement("div"),{role:"status",className:"hljs-copy-alert",innerHTML:"Copied to clipboard"});el.parentElement.appendChild(alert);setTimeout(()=>{button.innerHTML="Copy";button.dataset.copied=false;el.parentElement.removeChild(alert);alert=null},2e3)}).then(function(){if(typeof callback==="function")return callback(newText,el)})}}} \ No newline at end of file
+class CopyButtonPlugin {
+ constructor(options = {}) {
+ self.hook = options.hook;
+ self.callback = options.callback
+ }
+ "after:highlightElement"({
+ el,
+ text
+ }) {
+ let button = Object.assign(document.createElement("button"), {
+ innerHTML: "Copy",
+ className: "hljs-copy-button"
+ });
+ button.dataset.copied = false;
+ el.parentElement.classList.add("hljs-copy-wrapper");
+ el.parentElement.appendChild(button);
+ el.parentElement.style.setProperty("--hljs-theme-background", window.getComputedStyle(el).backgroundColor);
+ button.onclick = function () {
+ if (!navigator.clipboard) return;
+ let newText = text;
+ if (hook && typeof hook === "function") {
+ newText = hook(text, el) || text
+ }
+ navigator.clipboard.writeText(newText).then(function () {
+ button.innerHTML = "Copied!";
+ button.dataset.copied = true;
+ let alert = Object.assign(document.createElement("div"), {
+ role: "status",
+ className: "hljs-copy-alert",
+ innerHTML: "Copied to clipboard"
+ });
+ el.parentElement.appendChild(alert);
+ setTimeout(() => {
+ button.innerHTML = "Copy";
+ button.dataset.copied = false;
+ el.parentElement.removeChild(alert);
+ alert = null
+ }, 2e3)
+ }).then(function () {
+ if (typeof callback === "function") return callback(newText, el)
+ })
+ }
+ }
+}