2018-10-25 04:07:10 +02:00
|
|
|
const html = require('choo/html');
|
2018-11-12 20:13:31 +01:00
|
|
|
const Component = require('choo/component');
|
|
|
|
const Account = require('./account');
|
2019-02-19 22:13:14 +01:00
|
|
|
const assets = require('../../common/assets');
|
2019-01-24 00:10:09 +01:00
|
|
|
const { platform } = require('../utils');
|
2018-10-25 04:07:10 +02:00
|
|
|
|
2018-11-12 20:13:31 +01:00
|
|
|
class Header extends Component {
|
|
|
|
constructor(name, state, emit) {
|
|
|
|
super(name);
|
|
|
|
this.state = state;
|
|
|
|
this.emit = emit;
|
|
|
|
this.account = state.cache(Account, 'account');
|
|
|
|
}
|
|
|
|
|
|
|
|
update() {
|
|
|
|
this.account.render();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
createElement() {
|
2019-01-08 22:50:47 +01:00
|
|
|
const title =
|
2019-01-24 00:10:09 +01:00
|
|
|
platform() === 'android'
|
2019-01-08 22:50:47 +01:00
|
|
|
? html`
|
2019-02-19 22:13:14 +01:00
|
|
|
<a class=""><img src="${assets.get('logo.svg')}"/></a>
|
2019-01-08 22:50:47 +01:00
|
|
|
`
|
|
|
|
: html`
|
2019-02-19 22:13:14 +01:00
|
|
|
<a class="" href="/"><img src="${assets.get('logo.svg')}"/></a>
|
2019-01-08 22:50:47 +01:00
|
|
|
`;
|
2018-11-12 20:13:31 +01:00
|
|
|
return html`
|
|
|
|
<header
|
2019-02-22 21:00:39 +01:00
|
|
|
class="relative flex-none flex flex-row items-center justify-between w-full px-6 h-16 md:h-24 z-20 bg-transparent"
|
2018-11-12 20:13:31 +01:00
|
|
|
>
|
2019-01-08 22:50:47 +01:00
|
|
|
${title} ${this.account.render()}
|
2018-11-12 20:13:31 +01:00
|
|
|
</header>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Header;
|