7197cc3bea
* add legal and final strings * removed unneeded suffixes from string ids * removed unused strings and simplified string ids for vnext-only strings * reword nostreams option
105 lines
2.7 KiB
JavaScript
105 lines
2.7 KiB
JavaScript
const html = require('choo/html');
|
|
const Component = require('choo/component');
|
|
|
|
class Account extends Component {
|
|
constructor(name, state, emit) {
|
|
super(name);
|
|
this.state = state;
|
|
this.emit = emit;
|
|
this.enabled = state.capabilities.account;
|
|
this.local = state.components[name] = {};
|
|
this.setState();
|
|
}
|
|
|
|
avatarClick(event) {
|
|
event.preventDefault();
|
|
const menu = document.getElementById('accountMenu');
|
|
menu.classList.toggle('invisible');
|
|
menu.focus();
|
|
}
|
|
|
|
hideMenu(event) {
|
|
event.stopPropagation();
|
|
const menu = document.getElementById('accountMenu');
|
|
menu.classList.add('invisible');
|
|
}
|
|
|
|
login(event) {
|
|
event.preventDefault();
|
|
this.emit('signup-cta', 'button');
|
|
}
|
|
|
|
logout(event) {
|
|
event.preventDefault();
|
|
this.emit('logout');
|
|
}
|
|
|
|
changed() {
|
|
return this.local.loggedIn !== this.state.user.loggedIn;
|
|
}
|
|
|
|
setState() {
|
|
const changed = this.changed();
|
|
if (changed) {
|
|
this.local.loggedIn = this.state.user.loggedIn;
|
|
}
|
|
return changed;
|
|
}
|
|
|
|
update() {
|
|
return this.setState();
|
|
}
|
|
|
|
createElement() {
|
|
if (!this.enabled) {
|
|
return html`
|
|
<div></div>
|
|
`;
|
|
}
|
|
const user = this.state.user;
|
|
const translate = this.state.translate;
|
|
if (!this.local.loggedIn) {
|
|
return html`
|
|
<send-account>
|
|
<button
|
|
class="p-2 md:p-4 border rounded-lg text-blue-dark border-blue-dark hover:text-white hover:bg-blue-dark focus:outline"
|
|
onclick="${e => this.login(e)}"
|
|
title="${translate('signInButton')}"
|
|
>
|
|
${translate('signInButton')}
|
|
</button>
|
|
</send-account>
|
|
`;
|
|
}
|
|
return html`
|
|
<send-account class="relative h-8">
|
|
<input
|
|
type="image"
|
|
alt="${user.email}"
|
|
class="w-8 h-8 rounded-full border text-blue md:text-white focus:outline"
|
|
src="${user.avatar}"
|
|
onclick="${e => this.avatarClick(e)}"
|
|
/>
|
|
<ul
|
|
id="accountMenu"
|
|
class="invisible list-reset absolute pin-t pin-r mt-10 pt-2 pb-2 bg-white shadow-md whitespace-no-wrap outline-none z-50"
|
|
onblur="${e => this.hideMenu(e)}"
|
|
>
|
|
<li class="p-2 text-grey-dark">${user.email}</li>
|
|
<li>
|
|
<button
|
|
class="block w-full text-left px-4 py-2 text-grey-darkest hover:bg-blue hover:text-white cursor-pointer focus:outline"
|
|
onclick="${e => this.logout(e)}"
|
|
title="${translate('signOut')}"
|
|
>
|
|
${translate('signOut')}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</send-account>
|
|
`;
|
|
}
|
|
}
|
|
|
|
module.exports = Account;
|