import Memory = require("dojo/store/Memory"); import Observable = require("dojo/store/Observable"); import { Appointment, AppointmentRole, Member } from "./Appointment"; import { Contact } from "./Contact"; import { Uuid } from "@implab/core-amd/Uuid"; import { query } from "@implab/djx/observable"; import { IDestroyable } from "@implab/core-amd/interfaces"; import { delay } from "@implab/core-amd/safe"; type AppointmentRecord = Omit & { id: string }; type ContactRecord = Contact; type MemberRecord = Member & { appointmentId: string; }; const item = (map: (x: T) => T2) => ({ item, ...props }: U) => ({ item: map(item), ...props }); export class MainContext implements IDestroyable { private readonly _appointments = new Observable(new Memory()); private readonly _contacts = new Observable(new Memory()); private readonly _members = new Observable(new Memory()); async createAppointment(title: string, startAt: Date, duration: number, members: Member[]) { await delay(1000); const id = Uuid(); this._appointments.add({ id, startAt, duration, title }); members.forEach(member => this._members.add({ appointmentId: id, ...member }, { id: Uuid() }) as void ); } queryAppointments({ dateFrom, dateTo }: { dateFrom?: Date; dateTo?: Date; } = {}) { return query(this._appointments)(({ startAt }) => (!dateFrom || dateFrom <= startAt) && (!dateTo || startAt <= dateTo) ).map(item(this._mapAppointment)); } async addMember(appointmentId: string, member: Member) { await delay(1000); this._members.add({ appointmentId, ...member }); } private readonly _mapAppointment = ({ startAt, title, duration, id }: AppointmentRecord) => ({ id, title, startAt, duration, getMembers: (role?: AppointmentRole) => this._members.query(role ? { appointmentId: id, role } : { appointmentId: id }) }); destroy() { } }