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

136 lines
3.8 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');
2018-10-30 19:37:33 +01:00
const intro = require('./intro');
const modal = require('./modal');
const notFound = require('./notFound');
2018-10-25 04:07:10 +02:00
function password(state, emit) {
const fileInfo = state.fileInfo;
const invalid = fileInfo.password === null;
const div = html`
2018-11-16 21:39:36 +01:00
<div
class="h-full flex flex-col items-center justify-center border border-grey-light bg-white py-8"
>
2018-10-25 04:07:10 +02:00
<label
2018-10-30 22:00:37 +01:00
id="password-error"
2018-11-02 10:27:59 +01:00
class="${invalid ? '' : 'invisible'} text-red my-4"
2018-11-16 21:39:36 +01:00
for="password-input"
>
2018-10-25 04:07:10 +02:00
${state.translate('passwordTryAgain')}
</label>
2018-11-16 21:39:36 +01:00
<form class="w-5/6" onsubmit="${checkPassword}" data-no-csrf>
<input
id="password-input"
2019-01-24 21:31:20 +01:00
class="w-full border rounded ${invalid
? 'border-red'
: 'border-grey'} leading-loose px-2 py-1"
2018-10-30 22:00:37 +01:00
maxlength="32"
2018-10-25 04:07:10 +02:00
autocomplete="off"
placeholder="${state.translate('unlockInputPlaceholder')}"
2018-11-16 21:39:36 +01:00
oninput="${inputChanged}"
type="password"
/>
2018-10-25 04:07:10 +02:00
2018-11-16 21:39:36 +01:00
<input
type="submit"
2018-10-25 04:07:10 +02:00
id="password-btn"
2018-10-30 22:00:37 +01:00
class="hidden"
2018-11-16 21:39:36 +01:00
value="${state.translate('unlockInputLabel')}"
/>
2018-10-25 04:07:10 +02:00
</form>
2018-11-16 21:39:36 +01:00
</div>
`;
2018-10-25 04:07:10 +02:00
if (!(div instanceof String)) {
setTimeout(() => document.getElementById('password-input').focus());
}
function inputChanged() {
2018-10-30 22:00:37 +01:00
const label = document.getElementById('password-error');
const input = document.getElementById('password-input');
label.classList.add('invisible');
input.classList.remove('border-red');
2018-10-25 04:07:10 +02:00
}
function checkPassword(event) {
event.preventDefault();
const password = document.getElementById('password-input').value;
if (password.length > 0) {
document.getElementById('password-btn').disabled = true;
state.fileInfo.url = window.location.href;
state.fileInfo.password = password;
emit('getMetadata');
}
return false;
}
return div;
}
function createFileInfo(state) {
return {
id: state.params.id,
secretKey: state.params.key,
nonce: downloadMetadata.nonce,
requiresPassword: downloadMetadata.pwd
};
}
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 = archiveTile.downloading(state, emit);
break;
case 'complete':
2018-10-30 22:00:37 +01:00
content = html`
2018-11-16 21:39:36 +01:00
<div
id="download-complete"
class="flex flex-col items-center justify-center h-full bg-white border border-grey-light p-2"
>
<h1 class="text-center font-bold my-4 text-2xl">
${state.translate('downloadFinish')}
</h1>
<p class="mb-4">
2019-01-11 10:15:03 +01:00
<a
href="/"
class="text-blue hover:text-blue-dark focus:text-blue-darker font-medium"
2018-11-16 21:39:36 +01:00
>${state.translate('sendYourFilesLink')}</a
>
</p>
</div>
`;
2018-10-25 04:07:10 +02:00
break;
default:
content = archiveTile.preview(state, emit);
}
} else if (state.fileInfo.requiresPassword && !state.fileInfo.password) {
content = password(state, emit);
}
return html`
2018-11-16 21:39:36 +01:00
<main class="main container">
${state.modal && modal(state, emit)}
2018-11-16 21:39:36 +01:00
<section class="relative h-full w-full p-6 md:flex md:flex-row">
<div class="md:mr-6 md:w-1/2">${content}</div>
<div class="md:w-1/2 mt-6 md:mt-0">${intro(state)}</div>
</section>
</main>
`;
2018-10-25 04:07:10 +02:00
};