first attempt at making UI work again, with tiles and gaps

This commit is contained in:
Bruno Windels 2019-06-02 00:03:55 +02:00
parent 3de86cdf33
commit 210a00d541
8 changed files with 55 additions and 46 deletions

View file

@ -24,12 +24,20 @@ export default class GapTile extends SimpleTile {
} }
} }
get shape() {
return "gap";
}
get isLoading() { get isLoading() {
return this._loading; return this._loading;
} }
get direction() { get isUp() {
return this._entry.direction; return this._entry.direction.isBackward;
}
get isDown() {
return this._entry.direction.isForward;
} }
get error() { get error() {

View file

@ -19,4 +19,8 @@ export default class ImageTile extends MessageTile {
get height() { get height() {
return 200; return 200;
} }
get label() {
return "this is an image";
}
} }

View file

@ -7,6 +7,10 @@ export default class MessageTile extends SimpleTile {
this._date = new Date(this._entry.event.origin_server_ts); this._date = new Date(this._entry.event.origin_server_ts);
} }
get shape() {
return "message";
}
get sender() { get sender() {
return this._entry.event.sender; return this._entry.event.sender;
} }

View file

@ -1,6 +1,11 @@
import SimpleTile from "./SimpleTile.js"; import SimpleTile from "./SimpleTile.js";
export default class RoomNameTile extends SimpleTile { export default class RoomNameTile extends SimpleTile {
get shape() {
return "announcement";
}
get label() { get label() {
const event = this._entry.event; const event = this._entry.event;
const content = event.content; const content = event.content;

View file

@ -1,6 +1,11 @@
import SimpleTile from "./SimpleTile.js"; import SimpleTile from "./SimpleTile.js";
export default class RoomNameTile extends SimpleTile { export default class RoomNameTile extends SimpleTile {
get shape() {
return "annoucement";
}
get label() { get label() {
const event = this._entry.event; const event = this._entry.event;
const content = event.content; const content = event.content;

View file

@ -1,7 +1,7 @@
import MessageTile from "./MessageTile.js"; import MessageTile from "./MessageTile.js";
export default class TextTile extends MessageTile { export default class TextTile extends MessageTile {
get text() { get label() {
const content = this._getContent(); const content = this._getContent();
const body = content && content.body; const body = content && content.body;
if (this._entry.type() === "m.emote") { if (this._entry.type() === "m.emote") {

View file

@ -14,9 +14,7 @@ export default class RoomView {
mount() { mount() {
this._viewModel.on("change", this._onViewModelUpdate); this._viewModel.on("change", this._onViewModelUpdate);
this._nameLabel = html.h2(null, this._viewModel.name); this._nameLabel = html.h2(null, this._viewModel.name);
this._timelineList = new ListView({ this._timelineList = new ListView({}, entry => new TimelineTile(entry));
list: this._viewModel.timelineEntries
}, entry => new TimelineTile(entry));
this._timelineList.mount(); this._timelineList.mount();
this._root = html.div({className: "RoomView"}, [ this._root = html.div({className: "RoomView"}, [
@ -40,8 +38,8 @@ export default class RoomView {
if (prop === "name") { if (prop === "name") {
this._nameLabel.innerText = this._viewModel.name; this._nameLabel.innerText = this._viewModel.name;
} }
else if (prop === "timelineEntries") { else if (prop === "timelineViewModel") {
this._timelineList.update({list: this._viewModel.timelineEntries}); this._timelineList.update({list: this._viewModel.timelineViewModel.tiles});
} }
} }

View file

@ -1,29 +1,8 @@
import * as html from "./html.js"; import * as html from "./html.js";
function tileText(event) {
const content = event.content;
switch (event.type) {
case "m.room.message": {
const msgtype = content.msgtype;
switch (msgtype) {
case "m.text":
return content.body;
default:
return `unsupported msgtype: ${msgtype}`;
}
}
case "m.room.name":
return `changed the room name to "${content.name}"`;
case "m.room.member":
return `changed membership to ${content.membership}`;
default:
return `unsupported event type: ${event.type}`;
}
}
export default class TimelineTile { export default class TimelineTile {
constructor(entry) { constructor(tileVM) {
this._entry = entry; this._tileVM = tileVM;
this._root = null; this._root = null;
} }
@ -32,21 +11,7 @@ export default class TimelineTile {
} }
mount() { mount() {
let children; this._root = renderTile(this._tileVM);
if (this._entry.gap) {
children = [
html.strong(null, "Gap"),
" with prev_batch ",
html.strong(null, this._entry.gap.prev_batch)
];
} else if (this._entry.event) {
const event = this._entry.event;
children = [
html.strong(null, event.sender),
`: ${tileText(event)}`,
];
}
this._root = html.li(null, children);
return this._root; return this._root;
} }
@ -54,3 +19,23 @@ export default class TimelineTile {
update() {} update() {}
} }
function renderTile(tile) {
switch (tile.shape) {
case "message":
return html.li(null, [html.strong(tile.sender), `: ${tile.label}`]);
case "gap": {
const button = html.button(null, (tile.isUp ? "🠝" : "🠟") + " fill gap");
const handler = () => {
tile.fill();
button.removeEventListener("click", handler);
};
button.addEventListener("click", handler);
return html.li(null, button);
}
case "announcement":
return html.li(null, tile.label);
default:
return html.li(null, "unknown tile shape: " + tile.shape);
}
}