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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
import { CollectionFreeFormView } from "../../views/collections/collectionFreeForm";
import React, { useState } from "react";
import { IReactionDisposer, observe, reaction, observable } from "mobx";
import { SelectionManager } from "../../util/SelectionManager";
export class RecordingApi {
@observable static _instance: LinkManager;
constructor() {
}
type Movement = {
time: number,
panX: number,
panY: number,
}
export type Presentation = {
movements: Array<Movement>
meta: Object,
startDate: Date | null,
}
const NULL_PRESENTATION = {
movements: [],
meta: {},
startDate: null,
}
const [currentPresentation, setCurrentPresenation] = useState<Presentation>(NULL_PRESENTATION)
const [isRecording, setIsRecording] = useState(false)
const [absoluteStart, setAbsoluteStart] = useState<number>(-1)
export const initAndStart = (meta?: Object): Error | undefined => {
// check if already init a presentation
if (currentPresentation.startDate !== null) {
console.error('[recordingApi.ts] start() failed: current presentation data exists. please call clear() first.')
return new Error('[recordingApi.ts] start()')
}
// (1a) get start date for presenation
const startDate = new Date()
// (1b) set start timestamp to absolute timestamp
setAbsoluteStart(startDate.getTime())
// TODO: (2) assign meta content
// (3) assign init values to currentPresenation
setCurrentPresenation({ ...currentPresentation, startDate })
// (4) set isRecording true to allow trackMovements
setIsRecording(true)
}
export const clear = (): Error | undefined => {
// TODO: maybe archive the data?
if (isRecording) {
console.error('[recordingApi.ts] clear() failed: currently recording presentation. call pause() or finish() first')
return new Error('[recordingApi.ts] clear()')
}
// clear presenation data
setCurrentPresenation(NULL_PRESENTATION)
// set isRecording false
setIsRecording(false)
// default absoluteStart
setAbsoluteStart(-1)
}
export const pause = (): Error | undefined => {
if (currentPresentation.startDate === null) {
console.error('[recordingApi.ts] pause() failed: no presentation started. try calling init() first')
return new Error('[recordingApi.ts] pause()')
}
// don't allow track movments
setIsRecording(false)
// set relativeStart to the pausedTimestamp
const timestamp = new Date().getTime()
setAbsoluteStart(timestamp)
}
export const resume = () => {
if (currentPresentation.startDate === null) {
console.error('[recordingApi.ts] resume() failed: no presentation started. try calling init() first')
return new Error('[recordingApi.ts] resume()')
}
const timestamp = new Date().getTime()
const startTimestamp = currentPresentation.startDate?.getTime()
if (!startTimestamp) {
console.error('[recordingApi.ts] resume() failed: no presentation data. try calling init() first')
return new Error('[recordingApi.ts] pause()')
}
setAbsoluteStart(prevTime => {
// const relativeUnpause = timestamp - absoluteStart
// const timePaused = relativeUnpause - prevTime
// return timePaused + absoluteStart
const absoluteTimePaused = timestamp - prevTime
return absoluteTimePaused
})
}
export const finish = (): Error | Presentation => {
if (currentPresentation.movements === null) {
console.error('[recordingApi.ts] finish() failed: no presentation data. try calling init() first')
return new Error('[recordingApi.ts] finish()')
}
// make copy and clear this class's data
// const returnCopy = { ...currentPresentation }
// clear()
// // return the copy
// return returnCopy
return currentPresentation
}
export const trackMovements = (panX: number, panY: number): Error | undefined => {
// ensure we are recording
if (!isRecording) {
console.error('[recordingApi.ts] pause() failed: recording is paused()')
return new Error('[recordingApi.ts] pause()')
}
// get the relative time
const timestamp = new Date().getTime()
const relativeTime = timestamp - absoluteStart
// make new movement struct
const movement: Movement = { time: relativeTime, panX, panY }
// add that movement struct to the current presentation data
setCurrentPresenation(prevPres => {
const movements = [...prevPres.movements, movement]
return {...prevPres, movements}
})
}
// TOOD: need to pause all intervals if possible lol
// TODO: extract this into different class with pause and resume recording
export const followMovements = (presentation: Presentation, docView: CollectionFreeFormView): void => {
const document = docView.Document
const { movements } = presentation
movements.forEach(movement => {
const { panX, panY, time } = movement
// set the pan to what was stored
setTimeout(() => {
document._panX = panX;
document._panY = panY;
}, time)
})
}
// export let pres: Map<CollectionFreeFormView, IReactionDisposer> = new Map()
// export function AddRecordingFFView(ffView: CollectionFreeFormView): void {
// pres.set(ffView,
// reaction(() => ({ x: ffView.panX, y: ffView.panY }),
// (pt) => RecordingApi.trackMovements(ffView, pt.x, pt.y)))
// )
// }
// export function RemoveRecordingFFView(ffView: CollectionFreeFormView): void {
// const disposer = pres.get(ffView);
// disposer?.();
// pres.delete(ffView)
// }
}
|