24
1
Fork 0
drop.chapril.org-firefoxsend/app/ui/copyDialog.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-10-26 03:55:11 +02:00
const html = require('choo/html');
const { copyToClipboard } = require('../utils');
2018-10-29 17:52:24 +01:00
module.exports = function(name, url) {
2019-04-26 22:30:33 +02:00
const dialog = function(state, emit, close) {
2018-10-26 03:55:11 +02:00
return html`
<send-copy-dialog
2019-03-01 21:56:10 +01:00
class="flex flex-col items-center text-center p-4 max-w-sm m-auto"
>
2019-06-14 20:30:43 +02:00
<h1 class="text-3xl font-bold my-4">
${state.translate('notifyUploadEncryptDone')}
</h1>
2019-02-26 23:52:37 +01:00
<p class="font-normal leading-normal text-grey-darkest word-break-all">
${state.translate('copyLinkDescription')} <br />
2019-02-22 16:42:08 +01:00
${name}
2018-11-16 21:39:36 +01:00
</p>
<input
type="text"
id="share-url"
2019-02-13 20:14:53 +01:00
class="w-full my-4 border rounded-lg leading-loose h-12 px-2 py-1"
2018-11-16 21:39:36 +01:00
value="${url}"
readonly="true"
/>
2019-02-21 00:58:44 +01:00
<button
2019-06-14 20:30:43 +02:00
class="btn rounded-lg w-full flex-shrink-0 focus:outline"
2019-02-21 00:58:44 +01:00
onclick="${copy}"
title="${state.translate('copyLinkButton')}"
2019-02-21 00:58:44 +01:00
>
${state.translate('copyLinkButton')}
2018-11-16 21:39:36 +01:00
</button>
2019-02-21 00:58:44 +01:00
<button
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker my-4 font-medium cursor-pointer focus:outline"
2019-01-11 10:15:03 +01:00
onclick="${close}"
2019-02-21 04:59:29 +01:00
title="${state.translate('okButton')}"
2018-11-16 21:39:36 +01:00
>
2019-02-21 00:58:44 +01:00
${state.translate('okButton')}
</button>
</send-copy-dialog>
2018-11-16 21:39:36 +01:00
`;
2018-10-26 03:55:11 +02:00
function copy(event) {
event.stopPropagation();
copyToClipboard(url);
event.target.textContent = state.translate('copiedUrl');
setTimeout(close, 1000);
}
};
2019-04-26 22:30:33 +02:00
dialog.type = 'copy';
return dialog;
2018-10-26 03:55:11 +02:00
};