rejetto / hfs

HFS is a web file server to run on your computer. Share folders or even a single file thanks to the virtual file system.
GNU General Public License v3.0
2.29k stars 227 forks source link

Copy link #541

Closed djmakers closed 7 months ago

djmakers commented 7 months ago

Feature to copy link for folders and files

rejetto commented 7 months ago

the browser already has such feature. right click on any file or folder, and copy link.

rejetto commented 7 months ago

i don't exclude to duplicate the browser feature if it seems to be much needed, but at the moment i'm not sure about that. Anyway, HFS is quite flexible and one can add this text to Admin / Custom HTML / HTML Head

<script>
addEventListener('DOMContentLoaded', () =>
    HFS.onEvent('fileMenu', ({ entry }) => ({
      label: "Copy link",
      async onClick() { 
        await navigator.clipboard.writeText(location + entry.n)
        HFS.dialogLib.alertDialog("Link copied")
      }
    }))
)
</script>
rejetto commented 7 months ago

took the occasion to add it to examples of customization