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

91 lines
2.4 KiB
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
/* global downloadMetadata */
const html = require('choo/html');
const archiveTile = require('./archiveTile');
const modal = require('./modal');
const noStreams = require('./noStreams');
const notFound = require('./notFound');
const downloadPassword = require('./downloadPassword');
const downloadCompleted = require('./downloadCompleted');
const BIG_SIZE = 1024 * 1024 * 256;
2018-10-25 04:07:10 +02:00
function createFileInfo(state) {
return {
id: state.params.id,
secretKey: state.params.key,
nonce: downloadMetadata.nonce,
requiresPassword: downloadMetadata.pwd
};
}
function downloading(state, emit) {
return html`
<div
class="flex flex-col w-full h-full items-center md:justify-center md:-mt-8"
>
2019-06-14 20:30:43 +02:00
<h1 class="text-3xl font-bold mb-4">
${state.translate('downloadingTitle')}
</h1>
${archiveTile.downloading(state, emit)}
</div>
`;
}
2018-10-25 04:07:10 +02:00
function preview(state, emit) {
if (!state.capabilities.streamDownload && state.fileInfo.size > BIG_SIZE) {
return noStreams(state, emit);
}
return html`
2018-11-16 21:39:36 +01:00
<div
class="flex flex-col w-full max-w-md h-full mx-auto items-center justify-center"
2018-11-16 21:39:36 +01:00
>
2019-06-14 20:30:43 +02:00
<h1 class="text-3xl font-bold mb-4">
${state.translate('downloadTitle')}
</h1>
2019-03-01 23:12:23 +01:00
<p class="w-full text-grey-darkest text-center leading-normal">
${state.translate('downloadDescription')}
2019-02-22 21:42:10 +01:00
</p>
${archiveTile.preview(state, emit)}
2018-11-16 21:39:36 +01:00
</div>
`;
2018-10-25 04:07:10 +02:00
}
module.exports = function(state, emit) {
let content = '';
if (!state.fileInfo) {
state.fileInfo = createFileInfo(state);
if (!state.fileInfo.nonce) {
return notFound(state);
}
2018-10-25 04:07:10 +02:00
}
if (!state.transfer && !state.fileInfo.requiresPassword) {
emit('getMetadata');
}
if (state.transfer) {
switch (state.transfer.state) {
case 'downloading':
case 'decrypting':
content = downloading(state, emit);
2018-10-25 04:07:10 +02:00
break;
case 'complete':
content = downloadCompleted(state);
2018-10-25 04:07:10 +02:00
break;
default:
content = preview(state, emit);
2018-10-25 04:07:10 +02:00
}
} else if (state.fileInfo.requiresPassword && !state.fileInfo.password) {
content = downloadPassword(state, emit);
2018-10-25 04:07:10 +02:00
}
return html`
2019-02-22 22:31:54 +01:00
<main class="main">
${state.modal && modal(state, emit)}
2019-05-03 18:26:10 +02:00
<section
class="relative h-full w-full p-6 md:p-8 md:rounded-xl md:shadow-big"
>
2019-01-30 16:50:17 +01:00
${content}
2018-11-16 21:39:36 +01:00
</section>
</main>
`;
2018-10-25 04:07:10 +02:00
};