MainWidget.tsx
72 lines
| 2.3 KiB
| text/x-typescript
|
TypeScriptLexer
cin
|
r107 | import { djbase, djclass } from "@implab/djx/declare"; | ||
import { DjxWidgetBase } from "@implab/djx/tsx/DjxWidgetBase"; | ||||
cin
|
r110 | import { bind, createElement, prop, watch, watchFor } from "@implab/djx/tsx"; | ||
import MainModel from "../model/MainModel"; | ||||
import { OrderUpdate, Observable } from "@implab/djx/observable"; | ||||
import { Appointment } from "../model/Appointment"; | ||||
import { LocalDate } from "@js-joda/core"; | ||||
cin
|
r107 | import Button = require("dijit/form/Button"); | ||
cin
|
r109 | |||
cin
|
r107 | @djclass | ||
export default class MainWidget extends djbase(DjxWidgetBase) { | ||||
cin
|
r110 | appointments?: Observable<OrderUpdate<Appointment>>; | ||
model: MainModel; | ||||
cin
|
r107 | |||
cin
|
r110 | dateTo?: LocalDate; | ||
cin
|
r107 | |||
cin
|
r110 | dateFrom?: LocalDate; | ||
cin
|
r107 | |||
cin
|
r110 | constructor(opts?: Partial<MainWidget> & ThisType<MainWidget>, srcNode?: string | Node) { | ||
super(opts, srcNode); | ||||
cin
|
r107 | |||
cin
|
r110 | const model = this.model = new MainModel(); | ||
this.own(model); | ||||
model.subscribe({ next: x => this.set(x) }); | ||||
} | ||||
cin
|
r107 | |||
render() { | ||||
return <div className="tundra"> | ||||
cin
|
r110 | <h2 ref={bind("innerHTML", prop(this, "title"))} /> | ||
{watch(prop(this, "appointments"), items => items && | ||||
<ul> | ||||
{watchFor(items, ({ id, title, getMembers }) => | ||||
<li>{title} | ||||
<ul> | ||||
{watchFor(getMembers(), ({ role, name, position }) => | ||||
<li className={role}>{name}({position})</li> | ||||
)} | ||||
</ul> | ||||
<div> | ||||
<Button onClick={() => this._onAddMemberClick(id)}>Add member</Button> | ||||
</div> | ||||
</li> | ||||
)} | ||||
</ul> | ||||
)} | ||||
<div> | ||||
<Button onClick={this._onAddAppointmentClick}>Add new appointment</Button> | ||||
</div> | ||||
cin
|
r107 | </div>; | ||
} | ||||
cin
|
r110 | load() { | ||
this.model.load(); | ||||
cin
|
r107 | } | ||
cin
|
r110 | private readonly _onAddMemberClick = (appointmentId: string) => { | ||
this.model.addMember(appointmentId, { | ||||
email: "some-mail", | ||||
name: "Member Name", | ||||
position: "Member position", | ||||
role: "participant" | ||||
}); | ||||
cin
|
r109 | }; | ||
cin
|
r107 | |||
cin
|
r110 | private readonly _onAddAppointmentClick = () => { | ||
this.model.addAppointment("Appointment", new Date, 30); | ||||
cin
|
r109 | }; | ||
cin
|
r107 | } | ||