mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-25 08:48:09 -05:00
0a825547a7
This works in preact, but doesn't with react.
68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
import { html, Component } from "/lib/index.js";
|
|
import { BufferType, Unread } from "/state.js";
|
|
|
|
function BufferItem(props) {
|
|
function handleClick(event) {
|
|
event.preventDefault();
|
|
props.onClick();
|
|
}
|
|
|
|
var name = props.buffer.name;
|
|
if (props.buffer.type == BufferType.SERVER) {
|
|
name = "server";
|
|
}
|
|
|
|
var activeClass = props.active ? "active" : "";
|
|
|
|
var unreadClass = "";
|
|
if (props.buffer.unread != Unread.NONE) {
|
|
unreadClass = "unread-" + props.buffer.unread;
|
|
}
|
|
|
|
var url = "#";
|
|
switch (props.buffer.type) {
|
|
case BufferType.SERVER:
|
|
url = "irc:///";
|
|
break;
|
|
case BufferType.CHANNEL:
|
|
url = "irc:///" + encodeURIComponent(props.buffer.name);
|
|
break;
|
|
case BufferType.NICK:
|
|
url = "irc:///" + encodeURIComponent(props.buffer.name) + ",isnick";
|
|
break;
|
|
}
|
|
|
|
return html`
|
|
<li class="${activeClass} ${unreadClass}">
|
|
<a href=${url} onClick=${handleClick}>${name}</a>
|
|
</li>
|
|
`;
|
|
}
|
|
|
|
function compareBuffers(a, b) {
|
|
if (a.type == BufferType.SERVER) {
|
|
return -1;
|
|
}
|
|
if (b.type == BufferType.SERVER) {
|
|
return 1;
|
|
}
|
|
|
|
if (a.name > b.name) {
|
|
return -1;
|
|
}
|
|
if (a.name < b.name) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
export default function BufferList(props) {
|
|
return html`
|
|
<ul>
|
|
${Array.from(props.buffers.values()).sort(compareBuffers).map(buf => html`
|
|
<${BufferItem} key=${buf.name} buffer=${buf} onClick=${() => props.onBufferClick(buf.name)} active=${props.activeBuffer == buf.name}/>
|
|
`)}
|
|
</ul>
|
|
`;
|
|
}
|