mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-25 08:48:09 -05:00
b449ace4b4
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.
29 lines
645 B
JavaScript
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>
|
|
`;
|
|
}
|