wip on download page
This commit is contained in:
parent
12e6eb1666
commit
26a943939d
11 changed files with 39 additions and 50 deletions
|
@ -1,31 +0,0 @@
|
|||
const html = require('choo/html');
|
||||
const { list } = require('../utils');
|
||||
const archiveTile = require('./archiveTile');
|
||||
const intro = require('./intro');
|
||||
|
||||
module.exports = function(state, emit) {
|
||||
const archives = state.storage.files.map(archive =>
|
||||
archiveTile(state, emit, archive)
|
||||
);
|
||||
let wip = '';
|
||||
if (state.uploading) {
|
||||
wip = archiveTile.uploading(state, emit);
|
||||
} else if (state.archive) {
|
||||
wip = archiveTile.wip(state, emit);
|
||||
} else {
|
||||
wip = archiveTile.empty(state, emit);
|
||||
}
|
||||
archives.reverse();
|
||||
if (archives.length < 1) {
|
||||
archives.push(intro(state));
|
||||
}
|
||||
return html`
|
||||
<section class="h-full w-full px-6 md:flex md:flex-row">
|
||||
<div class="pt-4 md:pb-4 md:mr-6 md:w-1/2">${wip}</div>
|
||||
${list(
|
||||
archives,
|
||||
'list-reset h-full md:w-1/2 overflow-y-scroll foo pt-2',
|
||||
'py-2'
|
||||
)}
|
||||
</section>`;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue