2017-12-14 03:22:17 +01:00
|
|
|
/* global EXPIRE_SECONDS */
|
2017-08-24 23:54:02 +02:00
|
|
|
const html = require('choo/html');
|
2018-02-11 23:02:40 +01:00
|
|
|
const raw = require('choo/html/raw');
|
2018-02-13 20:32:59 +01:00
|
|
|
const assets = require('../../../common/assets');
|
|
|
|
const notFound = require('../notFound');
|
|
|
|
const setPasswordSection = require('../../templates/setPasswordSection');
|
|
|
|
const selectbox = require('../../templates/selectbox');
|
|
|
|
const deletePopup = require('../../templates/popup');
|
|
|
|
const { allowedCopy, delay, fadeOut } = require('../../utils');
|
2017-08-24 23:54:02 +02:00
|
|
|
|
|
|
|
module.exports = function(state, emit) {
|
|
|
|
const file = state.storage.getFileById(state.params.id);
|
|
|
|
if (!file) {
|
|
|
|
return notFound(state, emit);
|
|
|
|
}
|
2017-10-25 21:48:01 +02:00
|
|
|
|
2018-02-16 21:56:53 +01:00
|
|
|
return html`
|
2018-02-13 20:32:59 +01:00
|
|
|
<div id="shareWrapper" class="effect--fadeIn">
|
2018-03-28 08:19:07 +02:00
|
|
|
${expireInfo(file, state.translate, emit)}
|
2018-02-13 20:32:59 +01:00
|
|
|
<div class="sharePage">
|
|
|
|
<div class="sharePage__copyText">
|
2018-01-24 19:23:13 +01:00
|
|
|
${state.translate('copyUrlFormLabelWithName', { filename: file.name })}
|
|
|
|
</div>
|
2018-02-13 20:32:59 +01:00
|
|
|
<div class="copySection">
|
|
|
|
<input
|
|
|
|
id="fileUrl"
|
|
|
|
class="copySection__url"
|
|
|
|
type="url"
|
|
|
|
value="${file.url}"
|
|
|
|
readonly="true"/>
|
|
|
|
<button id="copyBtn"
|
|
|
|
class="inputBtn inputBtn--copy"
|
2017-08-31 18:43:36 +02:00
|
|
|
title="${state.translate('copyUrlFormButton')}"
|
|
|
|
onclick=${copyLink}>${state.translate('copyUrlFormButton')}</button>
|
2017-08-24 23:54:02 +02:00
|
|
|
</div>
|
2018-02-16 21:56:53 +01:00
|
|
|
${setPasswordSection(state, emit)}
|
2018-02-13 20:32:59 +01:00
|
|
|
<button
|
|
|
|
class="btn btn--delete"
|
2017-08-31 18:43:36 +02:00
|
|
|
title="${state.translate('deleteFileButton')}"
|
2017-12-23 04:20:19 +01:00
|
|
|
onclick=${showPopup}>${state.translate('deleteFileButton')}
|
2018-01-09 16:26:27 +01:00
|
|
|
</button>
|
2018-02-13 20:32:59 +01:00
|
|
|
<div class="sharePage__deletePopup">
|
|
|
|
${deletePopup(
|
|
|
|
state.translate('deletePopupText'),
|
|
|
|
state.translate('deletePopupYes'),
|
|
|
|
state.translate('deletePopupCancel'),
|
|
|
|
deleteFile
|
|
|
|
)}
|
2018-01-09 16:26:27 +01:00
|
|
|
</div>
|
2018-02-13 20:32:59 +01:00
|
|
|
<a class="link link--action"
|
2017-08-31 18:43:36 +02:00
|
|
|
href="/"
|
|
|
|
onclick=${sendNew}>${state.translate('sendAnotherFileLink')}</a>
|
2017-08-24 23:54:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2017-12-23 04:20:19 +01:00
|
|
|
function showPopup() {
|
2018-02-13 20:32:59 +01:00
|
|
|
const popup = document.querySelector('.popup');
|
|
|
|
popup.classList.add('popup--show');
|
|
|
|
popup.focus();
|
2017-12-23 04:20:19 +01:00
|
|
|
}
|
|
|
|
|
2017-08-24 23:54:02 +02:00
|
|
|
async function sendNew(e) {
|
|
|
|
e.preventDefault();
|
2018-02-13 20:32:59 +01:00
|
|
|
await fadeOut('#shareWrapper');
|
2017-08-24 23:54:02 +02:00
|
|
|
emit('pushState', '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
async function copyLink() {
|
|
|
|
if (allowedCopy()) {
|
|
|
|
emit('copy', { url: file.url, location: 'success-screen' });
|
2018-02-13 20:32:59 +01:00
|
|
|
const input = document.getElementById('fileUrl');
|
2017-08-29 20:25:41 +02:00
|
|
|
input.disabled = true;
|
2018-02-16 21:56:53 +01:00
|
|
|
input.classList.add('input--copied');
|
2018-02-13 20:32:59 +01:00
|
|
|
const copyBtn = document.getElementById('copyBtn');
|
2017-08-24 23:54:02 +02:00
|
|
|
copyBtn.disabled = true;
|
2018-02-13 20:32:59 +01:00
|
|
|
copyBtn.classList.add('inputBtn--copied');
|
2017-08-24 23:54:02 +02:00
|
|
|
copyBtn.replaceChild(
|
2018-02-13 20:32:59 +01:00
|
|
|
html`<img src="${assets.get('check-16.svg')}" class="cursor--pointer">`,
|
2017-08-24 23:54:02 +02:00
|
|
|
copyBtn.firstChild
|
|
|
|
);
|
|
|
|
await delay(2000);
|
2017-08-29 20:25:41 +02:00
|
|
|
input.disabled = false;
|
2018-02-16 21:56:53 +01:00
|
|
|
input.classList.remove('input--copied');
|
2018-02-13 20:32:59 +01:00
|
|
|
copyBtn.disabled = false;
|
|
|
|
copyBtn.classList.remove('inputBtn--copied');
|
2017-08-24 23:54:02 +02:00
|
|
|
copyBtn.textContent = state.translate('copyUrlFormButton');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteFile() {
|
|
|
|
emit('delete', { file, location: 'success-screen' });
|
2018-02-13 20:32:59 +01:00
|
|
|
await fadeOut('#shareWrapper');
|
2017-08-24 23:54:02 +02:00
|
|
|
emit('pushState', '/');
|
|
|
|
}
|
|
|
|
};
|
2018-02-16 21:56:53 +01:00
|
|
|
|
|
|
|
function expireInfo(file, translate, emit) {
|
|
|
|
const hours = Math.floor(EXPIRE_SECONDS / 60 / 60);
|
2018-03-28 08:19:07 +02:00
|
|
|
const el = html`<div class="title">${raw(
|
2018-02-16 21:56:53 +01:00
|
|
|
translate('expireInfo', {
|
|
|
|
downloadCount: '<select></select>',
|
|
|
|
timespan: translate('timespanHours', { num: hours })
|
|
|
|
})
|
|
|
|
)}</div>`;
|
|
|
|
const select = el.querySelector('select');
|
|
|
|
const options = [1, 2, 3, 4, 5, 20].filter(i => i > (file.dtotal || 0));
|
|
|
|
const t = num => translate('downloadCount', { num });
|
|
|
|
const changed = value => emit('changeLimit', { file, value });
|
2018-03-28 08:19:07 +02:00
|
|
|
el.replaceChild(selectbox(file.dlimit || 1, options, t, changed), select);
|
2018-02-16 21:56:53 +01:00
|
|
|
return el;
|
|
|
|
}
|