drop.chapril.org-firefoxsend/app/ui/header.js

26 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
const html = require('choo/html');
const account = require('./account');
module.exports = function(state, emit) {
const header = html`
2018-11-05 09:12:40 +01:00
<header class="relative flex-none flex flex-row items-center justify-between bg-blue md:bg-white w-full px-6 h-16 md:shadow z-20">
2018-10-25 04:07:10 +02:00
<a
class="header-logo"
href="/">
2018-11-05 09:12:40 +01:00
<h1 class="text-white md:text-black font-normal">Firefox <b>Send</b></h1>
2018-10-25 04:07:10 +02:00
</a>
${account(state, emit)}
2018-10-29 17:52:24 +01:00
<div class="invisible absolute pin-t pin-l mt-12 w-full flex flex-col items-center pointer-events-none">
<div class="border rounded bg-grey-darkest text-white mt-2 p-2">Your upload has finished.<button class="border border-blue rounded-sm bg-blue text-white inline-block p-1 ml-2">Copy Link</button><button class="text-white inline-block p-1 ml-2"></button></div>
${state.toast ? state.toast() : ''}
</div>
2018-10-25 04:07:10 +02:00
</header>`;
// HACK
// We only want to render this once because we
// toggle the targets of the links with utils/openLinksInNewTab
// header.isSameNode = function(target) {
// return target && target.nodeName && target.nodeName === 'HEADER';
// };
return header;
};