Minor fixes.

This commit is contained in:
Dermot Duffy
2022-09-23 18:21:17 -07:00
parent c910b5d2a4
commit 0491018aab
3 changed files with 42 additions and 29 deletions
+13
View File
@@ -122,6 +122,12 @@ export class TimelineDataManager {
return this._recordingSummary.get(cameraID) ?? null;
}
/**
* Create a dataview for a given set of camera.
* @param cameraIDs The cameraIDs to include.
* @param showRecordings Whether or not to show recordings.
* @returns
*/
public createDataView(
cameraIDs: Set<string>,
showRecordings: boolean,
@@ -134,10 +140,17 @@ export class TimelineDataManager {
});
}
/**
* Create a dataview for segments.
* @returns
*/
public createSegmentDataView(): DataView<RecordingSegmentsItem> {
return new DataView(this._recordingSegments);
}
/**
* Get the underlying recording segments dataset.
*/
get recordingSegments(): DataSet<RecordingSegmentsItem> {
return this._recordingSegments;
}