clipboard.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. window.addEventListener('load', () => {
  2. document.querySelectorAll('span.copy-icon').forEach(element => {
  3. element.addEventListener('click', (el) => copyElementsContentToClipboard(element));
  4. })
  5. document.querySelectorAll('span.anchor-icon').forEach(element => {
  6. element.addEventListener('click', (el) => {
  7. if(element.hasAttribute('pointing-to')){
  8. const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to')
  9. copyTextToClipboard(element, location)
  10. }
  11. });
  12. })
  13. })
  14. const copyElementsContentToClipboard = (element) => {
  15. const selection = window.getSelection();
  16. const range = document.createRange();
  17. range.selectNodeContents(element.parentNode.parentNode);
  18. selection.removeAllRanges();
  19. selection.addRange(range);
  20. copyAndShowPopup(element, () => selection.removeAllRanges())
  21. }
  22. const copyTextToClipboard = (element, text) => {
  23. var textarea = document.createElement("textarea");
  24. textarea.textContent = text;
  25. textarea.style.position = "fixed";
  26. document.body.appendChild(textarea);
  27. textarea.select();
  28. copyAndShowPopup(element, () => document.body.removeChild(textarea))
  29. }
  30. const copyAndShowPopup = (element, after) => {
  31. try {
  32. document.execCommand('copy');
  33. element.nextElementSibling.classList.add('active-popup');
  34. setTimeout(() => {
  35. element.nextElementSibling.classList.remove('active-popup');
  36. }, 1200);
  37. } catch (e) {
  38. console.error('Failed to write to clipboard:', e)
  39. }
  40. finally {
  41. if(after) after()
  42. }
  43. }
  44. const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0]