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

449 lines
13 KiB
JavaScript
Raw Normal View History

2019-01-16 18:05:39 +01:00
/* global Android */
2018-10-25 04:07:10 +02:00
const html = require('choo/html');
const raw = require('choo/html/raw');
const assets = require('../../common/assets');
2019-01-16 22:20:15 +01:00
const {
bytes,
copyToClipboard,
list,
percent,
2019-01-24 00:10:09 +01:00
platform,
2019-01-16 22:20:15 +01:00
timeLeft
} = require('../utils');
2018-10-25 04:07:10 +02:00
const expiryOptions = require('./expiryOptions');
function expiryInfo(translate, archive) {
const l10n = timeLeft(archive.expiresAt - Date.now());
return raw(
translate('frontPageExpireInfo', {
downloadCount: translate('downloadCount', {
num: archive.dlimit - archive.dtotal
}),
timespan: translate(l10n.id, l10n)
})
);
}
2018-10-30 03:06:15 +01:00
function password(state) {
const MAX_LENGTH = 32;
return html`
2019-02-11 22:48:06 +01:00
<div class="my-2 px-1">
2018-11-09 01:24:32 +01:00
<div class="checkbox inline-block mr-3">
<input
id="add-password"
type="checkbox"
2019-02-12 20:50:06 +01:00
${state.archive.password ? 'checked' : ''}
2018-11-09 01:24:32 +01:00
autocomplete="off"
onchange="${togglePasswordInput}"
/>
<label for="add-password">
${state.translate('addPasswordMessage')}
</label>
</div>
2018-10-30 03:06:15 +01:00
<input
2018-11-09 01:24:32 +01:00
id="password-input"
2019-02-12 20:50:06 +01:00
class="${state.archive.password
2019-01-24 00:10:09 +01:00
? ''
2019-02-11 22:48:06 +01:00
: 'invisible'} border rounded-sm focus:border-blue-dark leading-normal my-2 py-1 px-2 h-8"
2018-10-30 03:06:15 +01:00
autocomplete="off"
2018-11-09 01:24:32 +01:00
maxlength="${MAX_LENGTH}"
type="password"
oninput="${inputChanged}"
onfocus="${focused}"
placeholder="${state.translate('unlockInputPlaceholder')}"
2019-02-12 20:50:06 +01:00
value="${state.archive.password || ''}"
2018-11-09 01:24:32 +01:00
/>
<label
id="password-msg"
for="password-input"
class="block text-xs text-grey-darker mt-1"
></label>
2018-10-30 03:06:15 +01:00
</div>
2018-11-09 01:24:32 +01:00
`;
2018-10-30 03:06:15 +01:00
function togglePasswordInput(event) {
event.stopPropagation();
const checked = event.target.checked;
const input = document.getElementById('password-input');
if (checked) {
input.classList.remove('invisible');
input.focus();
} else {
input.classList.add('invisible');
input.value = '';
document.getElementById('password-msg').textContent = '';
2019-02-12 20:50:06 +01:00
state.archive.password = null;
2018-10-30 03:06:15 +01:00
}
}
function inputChanged() {
const passwordInput = document.getElementById('password-input');
const pwdmsg = document.getElementById('password-msg');
const password = passwordInput.value;
const length = password.length;
if (length === MAX_LENGTH) {
pwdmsg.textContent = state.translate('maxPasswordLength', {
length: MAX_LENGTH
});
} else {
pwdmsg.textContent = '';
}
2019-02-12 20:50:06 +01:00
state.archive.password = password;
2018-10-30 03:06:15 +01:00
}
function focused(event) {
event.preventDefault();
const el = document.getElementById('password-input');
if (el.placeholder !== state.translate('unlockInputPlaceholder')) {
el.placeholder = '';
}
}
}
2018-10-25 04:07:10 +02:00
function fileInfo(file, action) {
return html`
<send-file class="flex flex-row items-center p-3 w-full">
2018-10-25 04:07:10 +02:00
<img class="" src="${assets.get('blue_file.svg')}"/>
2018-11-02 10:27:59 +01:00
<p class="ml-4 w-full">
2018-11-06 00:46:49 +01:00
<h1 class="text-sm font-medium word-break-all">${file.name}</h1>
2018-11-02 10:27:59 +01:00
<div class="text-xs font-normal opacity-75 pt-1">${bytes(
file.size
)}</div>
2018-10-25 04:07:10 +02:00
<div class="hidden">${file.type}</div>
</p>
${action}
</send-file>`;
2018-10-25 04:07:10 +02:00
}
function archiveDetails(translate, archive) {
if (archive.manifest.files.length > 1) {
return html`
2018-11-09 01:24:32 +01:00
<details
2019-01-29 21:06:23 +01:00
class="w-full pb-1"
2018-11-09 01:24:32 +01:00
${archive.open ? 'open' : ''}
ontoggle="${toggled}"
>
2019-02-11 22:48:06 +01:00
<summary class="text-blue-dark text-sm cursor-pointer"
2019-01-24 00:10:09 +01:00
>${translate('fileCount', {
num: archive.manifest.files.length
})}</summary
2018-11-09 01:24:32 +01:00
>
2019-01-24 00:10:09 +01:00
${list(
archive.manifest.files.map(f => fileInfo(f)),
'list-reset h-full'
)}
2018-11-09 01:24:32 +01:00
</details>
`;
2018-10-25 04:07:10 +02:00
}
2018-10-30 19:37:33 +01:00
function toggled(event) {
event.stopPropagation();
archive.open = event.target.open;
}
2018-10-25 04:07:10 +02:00
}
module.exports = function(state, emit, archive) {
2019-01-16 18:05:39 +01:00
const copyOrShare =
2019-01-24 00:10:09 +01:00
platform() !== 'android'
2019-01-16 18:05:39 +01:00
? html`
<button
2019-02-11 22:48:06 +01:00
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end font-medium flex items-center"
2019-01-16 18:05:39 +01:00
onclick=${copy}
>
2019-01-24 00:10:09 +01:00
<img src="${assets.get('copy-16.svg')}" class="mr-2" />
${state.translate('copyUrlHover')}
2019-01-16 18:05:39 +01:00
</button>
`
: html`
<button
2019-02-11 22:48:06 +01:00
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end font-medium flex items-center"
2019-01-16 18:05:39 +01:00
onclick=${share}
>
2019-01-23 15:42:13 +01:00
<img src="${assets.get('share-24.svg')}" class="mr-2" /> Share
2019-01-16 18:05:39 +01:00
</button>
`;
2019-01-24 00:10:09 +01:00
const dl =
platform() === 'web'
? html`
<a
2019-02-11 22:48:06 +01:00
class="flex items-baseline text-blue-dark hover:text-blue-darker focus:text-blue-darker font-medium"
2019-01-24 00:10:09 +01:00
href="${archive.url}"
>
2019-02-11 22:48:06 +01:00
<img src="${assets.get('dl.svg')}" class="mr-2" />
2019-01-24 00:10:09 +01:00
${state.translate('downloadButtonLabel')}
</a>
`
: html`
<div></div>
`;
2018-10-25 04:07:10 +02:00
return html`
<send-archive
id="archive-${archive.id}"
2019-02-11 22:48:06 +01:00
class="flex flex-col items-start rounded shadow-light bg-white p-4 w-full">
2018-10-25 04:07:10 +02:00
<p class="w-full">
<img class="float-left mr-3" src="${assets.get('blue_file.svg')}"/>
<input
type="image"
2019-01-18 09:09:17 +01:00
class="float-right self-center text-white delete"
2018-10-25 04:07:10 +02:00
alt="Delete"
src="${assets.get('close-16.svg')}"
onclick=${del}/>
2018-11-06 00:46:49 +01:00
<h1 class="text-sm font-medium word-break-all">${archive.name}</h1>
2018-11-02 10:27:59 +01:00
<div class="text-xs font-normal opacity-75 pt-1">${bytes(
archive.size
)}</div>
2018-10-25 04:07:10 +02:00
</p>
<div class="text-xs text-grey-dark w-full mt-2 mb-2">
${expiryInfo(state.translate, archive)}
</div>
${archiveDetails(state.translate, archive)}
2018-11-02 10:27:59 +01:00
<hr class="w-full border-t my-4">
2019-01-24 00:10:09 +01:00
<div class="flex justify-between w-full">
${dl}
${copyOrShare}
</div>
</send-archive>`;
2018-10-25 04:07:10 +02:00
function copy(event) {
event.stopPropagation();
copyToClipboard(archive.url);
const text = event.target.lastChild;
text.textContent = state.translate('copiedUrl');
setTimeout(
() => (text.textContent = state.translate('copyUrlHover')),
1000
);
2018-10-25 04:07:10 +02:00
}
function del(event) {
event.stopPropagation();
2019-02-12 20:50:06 +01:00
emit('delete', archive);
2018-10-25 04:07:10 +02:00
}
2019-01-16 18:05:39 +01:00
function share(event) {
event.stopPropagation();
Android.shareUrl(archive.url);
}
2018-10-25 04:07:10 +02:00
};
module.exports.wip = function(state, emit) {
return html`
2019-01-16 23:58:10 +01:00
<send-upload-area class="flex flex-col bg-white md:h-full w-full" id="wip">
2019-01-24 00:10:09 +01:00
${list(
Array.from(state.archive.files)
.reverse()
.map(f => fileInfo(f, remove(f))),
2019-02-11 22:48:06 +01:00
'bg-grey-lightest rounded-t list-reset overflow-y-auto px-4 md:h-full md:max-h-half-screen',
'bg-white px-2 my-2 shadow-light rounded'
2019-01-24 00:10:09 +01:00
)}
2019-01-30 16:59:22 +01:00
<div
2019-02-11 22:48:06 +01:00
class="flex-grow flex items-end p-4 bg-grey-lightest rounded-b mb-6 font-medium"
2019-01-30 16:59:22 +01:00
>
2018-11-09 01:24:32 +01:00
<input
id="file-upload"
class="hidden"
type="file"
multiple
onchange="${add}"
/>
<label
for="file-upload"
2018-11-17 02:17:57 +01:00
class="flex flex-row items-center justify-between w-full p-2 cursor-pointer"
2018-11-09 01:24:32 +01:00
title="${state.translate('addFilesButton')}"
>
2018-11-17 02:17:57 +01:00
<div class="flex items-center">
2019-01-24 00:10:09 +01:00
<img src="${assets.get('addfiles.svg')}" class="w-6 h-6 mr-2" />
${state.translate('addFilesButton')}
2018-11-17 02:17:57 +01:00
</div>
<div class="font-normal text-sm text-grey-darker">
${state.translate('totalSize', { size: bytes(state.archive.size) })}
</div>
2018-11-09 01:24:32 +01:00
</label>
</div>
${expiryOptions(state, emit)} ${password(state, emit)}
<button
id="upload-btn"
2019-02-11 22:48:06 +01:00
class="btn rounded-lg flex-no-shrink"
2018-12-12 00:11:38 +01:00
title="${state.translate('uploadFilesButton')}"
2018-11-09 01:24:32 +01:00
onclick="${upload}"
>
2018-12-12 00:11:38 +01:00
${state.translate('uploadFilesButton')}
2018-11-09 01:24:32 +01:00
</button>
</send-upload-area>
2018-11-09 01:24:32 +01:00
`;
2018-10-25 04:07:10 +02:00
function upload(event) {
2018-11-05 09:12:40 +01:00
window.scrollTo(0, 0);
2018-10-25 04:07:10 +02:00
event.preventDefault();
event.target.disabled = true;
if (!state.uploading) {
2019-02-12 20:50:06 +01:00
emit('upload');
2018-10-25 04:07:10 +02:00
}
}
function add(event) {
event.preventDefault();
const newFiles = Array.from(event.target.files);
emit('addFiles', { files: newFiles });
setTimeout(() => {
document
.querySelector('#wip > ul > li:first-child')
.scrollIntoView({ block: 'center' });
});
2018-10-25 04:07:10 +02:00
}
function remove(file) {
return html`
2018-11-09 01:24:32 +01:00
<input
type="image"
2019-01-18 09:09:17 +01:00
class="self-center text-white ml-4 delete"
2018-11-09 01:24:32 +01:00
alt="Delete"
src="${assets.get('close-16.svg')}"
onclick="${del}"
/>
`;
2018-10-25 04:07:10 +02:00
function del(event) {
event.stopPropagation();
emit('removeUpload', file);
}
}
};
module.exports.uploading = function(state, emit) {
const progress = state.transfer.progressRatio;
const progressPercent = percent(progress);
const archive = state.archive;
return html`
<send-upload-area
2018-10-25 04:07:10 +02:00
id="${archive.id}"
2019-02-11 22:48:06 +01:00
class="flex flex-col items-start rounded shadow-light bg-white p-4 w-full">
2018-10-25 04:07:10 +02:00
<p class="w-full">
<img class="float-left mr-3" src="${assets.get('blue_file.svg')}"/>
2018-11-06 00:46:49 +01:00
<h1 class="text-sm font-medium word-break-all">${archive.name}</h1>
2018-11-02 10:27:59 +01:00
<div class="text-xs font-normal opacity-75 pt-1">${bytes(
archive.size
)}</div>
2018-10-25 04:07:10 +02:00
</p>
<div class="text-xs text-grey-dark w-full mt-2 mb-2">
${expiryInfo(state.translate, {
2019-02-12 20:50:06 +01:00
dlimit: state.archive.dlimit,
2018-10-25 04:07:10 +02:00
dtotal: 0,
2019-02-12 20:50:06 +01:00
expiresAt: Date.now() + 500 + state.archive.timeLimit * 1000
2018-10-25 04:07:10 +02:00
})}
</div>
2019-02-11 22:48:06 +01:00
<div class="text-blue-dark text-sm font-medium mt-2">${progressPercent}</div>
2018-11-02 10:27:59 +01:00
<progress class="my-3" value="${progress}">${progressPercent}</progress>
2018-10-25 04:07:10 +02:00
<button
2019-02-11 22:48:06 +01:00
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end font-medium"
2018-10-25 04:07:10 +02:00
onclick=${cancel}>
${state.translate('uploadingPageCancel')}
</button>
</send-upload-area>`;
2018-10-25 04:07:10 +02:00
function cancel(event) {
event.stopPropagation();
event.target.disabled = true;
emit('cancel');
}
};
module.exports.empty = function(state, emit) {
return html`
<send-upload-area
2019-02-11 22:48:06 +01:00
class="flex flex-col items-center justify-center border-2 border-dashed border-grey rounded px-6 py-16 h-full w-full"
2019-01-24 00:10:09 +01:00
onclick="${e => {
if (e.target.tagName !== 'LABEL') {
document.getElementById('file-upload').click();
2018-11-09 01:24:32 +01:00
}
2019-01-24 00:10:09 +01:00
}}"
2018-11-09 01:24:32 +01:00
>
<img src="${assets.get('addfiles.svg')}" width="48" height="48" />
<div
2019-02-11 22:48:06 +01:00
class="pt-6 pb-2 text-center text-lg font-bold capitalize tracking-wide"
2018-11-09 01:24:32 +01:00
>
${state.translate('uploadDropDragMessage')}
</div>
<div class="pb-6 text-center text-base italic">
${state.translate('uploadDropClickMessage')}
</div>
<input
id="file-upload"
class="hidden"
type="file"
multiple
onchange="${add}"
onclick="${e => e.stopPropagation()}"
/>
<label
for="file-upload"
role="button"
2019-02-11 22:48:06 +01:00
class="btn rounded-lg flex items-center mt-4"
2018-11-09 01:24:32 +01:00
title="${state.translate('addFilesButton')}"
>
2018-10-25 04:07:10 +02:00
${state.translate('addFilesButton')}
2018-11-09 01:24:32 +01:00
</label>
</send-upload-area>
2018-11-09 01:24:32 +01:00
`;
2018-10-25 04:07:10 +02:00
function add(event) {
event.preventDefault();
const newFiles = Array.from(event.target.files);
emit('addFiles', { files: newFiles });
}
};
module.exports.preview = function(state, emit) {
const archive = state.fileInfo;
2018-10-30 19:37:33 +01:00
if (archive.open === undefined) {
archive.open = true;
}
2018-10-25 04:07:10 +02:00
return html`
2019-02-11 22:48:06 +01:00
<send-archive class="flex flex-col max-h-full bg-white rounded shadow-light p-4 w-full md:w-4/5">
2019-01-30 16:50:17 +01:00
<p class="w-full mb-4">
2018-10-25 04:07:10 +02:00
<img class="float-left mr-3" src="${assets.get('blue_file.svg')}"/>
2018-11-06 00:46:49 +01:00
<h1 class="text-sm font-medium word-break-all">${archive.name}</h1>
2018-11-02 10:27:59 +01:00
<div class="text-xs font-normal opacity-75 pt-1">${bytes(
archive.size
)}</div>
2018-10-25 04:07:10 +02:00
</p>
2019-01-30 16:50:17 +01:00
<div class="h-full md:h-48 overflow-y-auto">
${archiveDetails(state.translate, archive)}
</div>
2018-10-25 04:07:10 +02:00
<button
2018-10-31 19:31:17 +01:00
id="download-btn"
2019-02-11 22:48:06 +01:00
class="btn rounded-lg mt-4 w-full flex-no-shrink"
2018-10-25 04:07:10 +02:00
title="${state.translate('downloadButtonLabel')}"
onclick=${download}>
${state.translate('downloadButtonLabel')}
</button>
</send-archive>`;
2018-10-25 04:07:10 +02:00
function download(event) {
event.preventDefault();
event.target.disabled = true;
emit('download', archive);
}
};
2019-01-30 16:50:17 +01:00
module.exports.downloading = function(state) {
2018-10-25 04:07:10 +02:00
const archive = state.fileInfo;
const progress = state.transfer.progressRatio;
const progressPercent = percent(progress);
return html`
2019-02-11 22:48:06 +01:00
<send-archive class="flex flex-col bg-white rounded shadow-light p-4 w-full md:w-4/5">
2018-10-25 04:07:10 +02:00
<p class="w-full mb-4">
<img class="float-left mr-3" src="${assets.get('blue_file.svg')}"/>
2018-11-06 00:46:49 +01:00
<h1 class="text-sm font-medium word-break-all">${archive.name}</h1>
2018-11-02 10:27:59 +01:00
<div class="text-xs font-normal opacity-75 pt-1">${bytes(
archive.size
)}</div>
2018-10-25 04:07:10 +02:00
</p>
2019-02-11 22:48:06 +01:00
<div class="text-blue-dark text-sm font-medium mt-2">${progressPercent}</div>
2018-11-02 10:27:59 +01:00
<progress class="my-3" value="${progress}">${progressPercent}</progress>
</send-archive>`;
2018-10-25 04:07:10 +02:00
};