Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | 2x 2x 2x | import Node from 'type/node';
import Template from 'template';
import SystemId from 'system/enum/id';
interface Input {
readonly account: Node;
}
class AccountMenuTemplate extends Template<Input> {
protected getHtml(): string {
if (this.isAuthenticated()) {
return this.renderAuthenticated();
} else {
return this.renderUnauthenticated();
}
}
private renderAuthenticated(): string {
const account_id = this.getAccountId();
const account_url = this.getAccountUrl();
return `
<menu>
<span>logged in as</span>
<a href="${account_url}">${account_id}</a>.
<a href="/logout">log out</a>
</menu>
`;
}
private renderUnauthenticated(): string {
return `
<menu>
<a href="/login">log in</a>
<span>or</span>
<a href="/register">register</a>
</menu>
`;
}
private isAuthenticated(): boolean {
const account_id = this.getAccountId();
return account_id !== SystemId.ANONYMOUS_ACCOUNT;
}
private getAccountId(): string {
const account = this.getAccount();
return account.id;
}
private getAccountUrl(): string {
const account = this.getAccount();
return this.buildNodeUrl(account);
}
private getAccount(): Node {
const input = this.getInput();
return input.account;
}
}
export default AccountMenuTemplate;
|