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
|
import { NDollarRecognizer } from "./ndollar";
import { Type } from "typescript";
import { InkField, PointData } from "../new_fields/InkField";
import { Docs } from "../client/documents/Documents";
import { Doc, WidthSym, HeightSym } from "../new_fields/Doc";
import { NumCast } from "../new_fields/Types";
import { CollectionFreeFormView } from "../client/views/collections/collectionFreeForm/CollectionFreeFormView";
import { Rect } from "react-measure";
export namespace GestureUtils {
namespace GestureDataTypes {
export type BoxData = Array<Doc>;
}
export class GestureEvent {
constructor(
readonly gesture: Gestures,
readonly points: PointData[],
readonly bounds: Rect,
readonly callbackFn?: Function
) { }
}
export interface GestureEventDisposer { (): void; }
export function MakeGestureTarget(
element: HTMLElement,
func: (e: Event, ge: GestureEvent) => void
): GestureEventDisposer {
const handler = (e: Event) => func(e, (e as CustomEvent<GestureEvent>).detail);
element.addEventListener("dashOnGesture", handler);
return () => {
element.removeEventListener("dashOnGesture", handler);
};
}
export enum Gestures {
Box = "box",
Line = "line",
Stroke = "stroke",
Scribble = "scribble"
}
export const GestureRecognizer = new NDollarRecognizer(false);
export function GestureOptions(name: string, gestureData?: any): (params: {}) => any {
switch (name) {
case Gestures.Box:
break;
}
throw new Error("This means that you're trying to do something with the gesture that hasn't been defined yet. Define it in GestureUtils.ts");
}
}
|