From 0c33053fcfb2e178be1df1001e7194405c6ca870 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 25 Feb 2017 16:30:18 +0900 Subject: [PATCH] [Client] Implement copy file url to clipboard --- src/web/app/common/scripts/copy-to-clipboard.js | 13 +++++++++++++ src/web/app/desktop/tags/drive/file-contextmenu.tag | 10 +++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 src/web/app/common/scripts/copy-to-clipboard.js diff --git a/src/web/app/common/scripts/copy-to-clipboard.js b/src/web/app/common/scripts/copy-to-clipboard.js new file mode 100644 index 000000000..2e67024c8 --- /dev/null +++ b/src/web/app/common/scripts/copy-to-clipboard.js @@ -0,0 +1,13 @@ +/** + * Clipboardに値をコピー(TODO: 文字列以外も対応) + */ +module.exports = val => { + const form = document.createElement('textarea'); + form.textContent = val; + document.body.appendChild(form); + form.select(); + const result = document.execCommand('copy'); + document.body.removeChild(form); + + return result; +}; diff --git a/src/web/app/desktop/tags/drive/file-contextmenu.tag b/src/web/app/desktop/tags/drive/file-contextmenu.tag index 29f1befc4..17376adb8 100644 --- a/src/web/app/desktop/tags/drive/file-contextmenu.tag +++ b/src/web/app/desktop/tags/drive/file-contextmenu.tag @@ -35,10 +35,13 @@