From d5b261cc8886054a1a21b53d717ec9520156d6e4 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Mon, 13 Nov 2023 17:17:38 +0100 Subject: [PATCH] added: popup to follow links --- main.js | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- style.css | 15 +++++++++++++- 2 files changed, 75 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 9bad561..c27dd73 100644 --- a/main.js +++ b/main.js @@ -19,7 +19,8 @@ var defaultsettings = sync: false, tagsinlists: true, tagfilter: "", - darkcode: true + darkcode: true, + uselinkpopup: true }; //builtin @@ -783,6 +784,47 @@ function tagatpos() return md.value.substring(start + 1, end); } +function removelinkdialog() +{ + if (typeof linkdialog != "undefined") + { + notepage.removeChild(linkdialog); + } +} + +function showlinkdialog(link) +{ + var div = document.createElement("div"); + div.setAttribute("style", "top:" + event.pageY + "px;left:" + event.pageX + "px"); + div.setAttribute("id", "linkdialog"); + + var a = document.createElement("a"); + a.setAttribute("id", "linkelt"); + + if (link.startsWith("https://")) + { + a.setAttribute("href", link); + a.setAttribute("target", "_blank"); + a.innerText = link; + div.onclick = removelinkdialog; + } + else + { + a.setAttribute("href", "#"); + a.innerText = link; + div.onclick = function() + { + removelinkdialog(); + loadnote(link); + }; + } + + div.appendChild(a); + + setTimeout(removelinkdialog, 3000); + notepage.appendChild(div); +} + function clickeditor() { if (!saved) @@ -790,6 +832,7 @@ function clickeditor() console.log("Not saved, ctrl+click ignored."); return; } + if (event.ctrlKey) { var link = linkatpos(); @@ -810,6 +853,23 @@ function clickeditor() window.open(word, '_blank'); } } + else if (settings.uselinkpopup) + { + removelinkdialog(); + var link = linkatpos(); + if (link) + { + showlinkdialog(link); + } + else + { + var word = wordatpos(); + if (word.startsWith("https://")) + { + showlinkdialog(word); + } + } + } } function restoresettings() diff --git a/style.css b/style.css index 892c624..2298b8e 100644 --- a/style.css +++ b/style.css @@ -142,5 +142,18 @@ body::-webkit-scrollbar-thumb { /* colors */ .color-code { color:white; - background-color:black; + background-color:rgb(55, 53, 47); +} + +/* link dialog */ +#linkdialog { + border-radius: 3px; + opacity:1; + color: white; + background-color:rgb(55, 53, 47); + position:absolute; +} + +#linkelt { + margin: 5px 7px 5px 7px; }