Smarter clipboard copies

This commit is contained in:
Ian Gulliver
2024-11-27 22:36:00 -06:00
parent 5d7ace205a
commit 657637c85b

View File

@@ -100,6 +100,9 @@ function set(short, long) {
params.set('short', short);
params.set('long', long);
const oldShort = document.getElementById('short').value;
const oldLong = document.getElementById('long').value;
fetch(`./?${params.toString()}`, {
method: 'POST',
}).then(async (resp) => {
@@ -113,9 +116,14 @@ function set(short, long) {
setShortItem(newShort, 'check-square');
// Only set the icons if we were actually setting from these inputs
if (document.getElementById('short').value == short && document.getElementById('long').value == long) {
document.getElementById('short-icon').setAttribute('name', 'check-square');
document.getElementById('long-icon').setAttribute('name', 'check-square');
}
// Only set the clipboard if the user didn't change the inputs
if (document.getElementById('short').value == oldShort && document.getElementById('long').value == oldLong) {
await navigator.clipboard.writeText(`${window.location.origin}/${newShort}`);
}
});