gamja/components/buffer-list.js
Simon Ser b449ace4b4
Switch to react
Under the hood, preact is used to reduce dependency size. We still don't
have a build stage, so htm is used instead of JSX.
2020-06-24 14:37:49 +02:00

29 lines
645 B
JavaScript

import { html, Component } from "/lib/index.js";
function BufferItem(props) {
function handleClick(event) {
event.preventDefault();
props.onClick();
}
var name = props.buffer.name;
if (name == "*") {
name = "server";
}
return html`
<li class=${props.active ? "active" : ""}>
<a href="#" onClick=${handleClick}>${name}</a>
</li>
`;
}
export default function BufferList(props) {
return html`
<ul id="buffer-list">
${Array.from(this.props.buffers.values()).map(buf => html`
<${BufferItem} buffer=${buf} onClick=${() => props.onBufferClick(buf.name)} active=${props.activeBuffer == buf.name}/>
`)}
</ul>
`;
}