1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
import { Point } from "../pen-gestures/ndollar";
import { AnalysisResult, ImportResults } from "../scraping/buxton/final/BuxtonImporter";
import { Utils } from "../Utils";
export class Message<T> {
private _name: string;
private _guid: string;
constructor(name: string) {
this._name = name;
this._guid = Utils.GenerateDeterministicGuid(name);
}
get Name(): string { return this._name; }
get Message(): string { return this._guid; }
}
export enum Types {
Number, List, Key, Image, Web, Document, Text, Icon, RichText, DocumentReference,
Html, Video, Audio, Ink, PDF, Tuple, Boolean, Script, Templates
}
export interface Transferable {
readonly id: string;
readonly type: Types;
readonly data?: any;
}
export enum YoutubeQueryTypes {
Channels, SearchVideo, VideoDetails
}
export interface YoutubeQueryInput {
readonly type: YoutubeQueryTypes;
readonly userInput?: string;
readonly videoIds?: string;
}
export interface Reference {
readonly id: string;
}
export interface Diff extends Reference {
readonly diff: any;
}
export interface GestureContent {
readonly points: Array<Point>;
readonly bounds: { right: number, left: number, bottom: number, top: number, width: number, height: number };
readonly width?: string;
readonly color?: string;
}
export interface MobileInkOverlayContent {
readonly enableOverlay: boolean;
readonly width?: number;
readonly height?: number;
readonly text?: string;
}
export interface UpdateMobileInkOverlayPositionContent {
readonly dx?: number;
readonly dy?: number;
readonly dsize?: number;
}
export interface MobileDocumentUploadContent {
readonly docId: string;
}
export interface RoomMessage {
readonly message: string;
readonly room: string;
}
export namespace MessageStore {
export const Foo = new Message<string>("Foo");
export const Bar = new Message<string>("Bar");
export const SetField = new Message<Transferable>("Set Field"); // send Transferable (no reply)
export const GetField = new Message<string>("Get Field"); // send string 'id' get Transferable back
export const GetFields = new Message<string[]>("Get Fields"); // send string[] of 'id' get Transferable[] back
export const GetDocument = new Message<string>("Get Document");
export const DeleteAll = new Message<any>("Delete All");
export const ConnectionTerminated = new Message<string>("Connection Terminated");
export const BeginBuxtonImport = new Message<string>("Begin Buxton Import");
export const BuxtonDocumentResult = new Message<AnalysisResult>("Buxton Document Result");
export const BuxtonImportComplete = new Message<ImportResults>("Buxton Import Complete");
export const GesturePoints = new Message<GestureContent>("Gesture Points");
export const MobileInkOverlayTrigger = new Message<MobileInkOverlayContent>("Trigger Mobile Ink Overlay");
export const UpdateMobileInkOverlayPosition = new Message<UpdateMobileInkOverlayPositionContent>("Update Mobile Ink Overlay Position");
export const MobileDocumentUpload = new Message<MobileDocumentUploadContent>("Upload Document From Mobile");
export const GetRefField = new Message<string>("Get Ref Field");
export const GetRefFields = new Message<string[]>("Get Ref Fields");
export const UpdateField = new Message<Diff>("Update Ref Field");
export const CreateField = new Message<Reference>("Create Ref Field");
export const YoutubeApiQuery = new Message<YoutubeQueryInput>("Youtube Api Query");
export const DeleteField = new Message<string>("Delete field");
export const DeleteFields = new Message<string[]>("Delete fields");
}
|