aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/nodes')
-rw-r--r--src/client/views/nodes/AudioBox.tsx59
-rw-r--r--src/client/views/nodes/VideoBox.tsx12
2 files changed, 39 insertions, 32 deletions
diff --git a/src/client/views/nodes/AudioBox.tsx b/src/client/views/nodes/AudioBox.tsx
index 06f1c4ae1..538d7d5cb 100644
--- a/src/client/views/nodes/AudioBox.tsx
+++ b/src/client/views/nodes/AudioBox.tsx
@@ -34,6 +34,7 @@ import "./AudioBox.scss";
import { FieldView, FieldViewProps } from "./FieldView";
import { LinkDocPreview } from "./LinkDocPreview";
import e = require("connect-flash");
+import { undoBatch } from "../../util/UndoManager";
declare class MediaRecorder {
constructor(e: any); // whatever MediaRecorder has
@@ -74,9 +75,10 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
@observable _waveHeight: Opt<number> = this.layoutDoc._height;
@observable _paused: boolean = false;
@observable _trimming: boolean = false;
- @observable _trimStart: number = NumCast(this.layoutDoc.clipStart) ? NumCast(this.layoutDoc.clipStart) : 0;
- @observable _trimEnd: number = NumCast(this.layoutDoc.clipEnd) ? NumCast(this.layoutDoc.clipEnd)
- : this.duration;
+ @observable _trimStart: number = NumCast(this.layoutDoc.clipStart);
+ @observable _trimEnd: number = NumCast(this.layoutDoc.clipEnd, this.duration);
+ @computed get trimStart() { return this._trimming ? this._trimStart : NumCast(this.layoutDoc.clipStart); }
+ @computed get trimEnd() { return this._trimming ? this._trimEnd : NumCast(this.layoutDoc.clipEnd, this.duration); }
@computed get mediaState():
| undefined
@@ -84,7 +86,7 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
| "recording"
| "paused"
| "playing" {
- return this.dataDoc.mediaState as
+ return this.layoutDoc.mediaState as
| undefined
| "pendingRecording"
| "recording"
@@ -92,7 +94,7 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
| "playing";
}
set mediaState(value) {
- this.dataDoc.mediaState = value;
+ this.layoutDoc.mediaState = value;
}
public static SetScrubTime = action((timeInMillisFrom1970: number) => {
AudioBox._scrubTime = 0;
@@ -104,11 +106,15 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
DateField
)?.date.getTime();
}
- @computed get duration() {
+ @computed get rawDuration() {
return NumCast(this.dataDoc[`${this.fieldKey}-duration`]);
}
+ @computed get duration() {
+ return NumCast(this.layoutDoc.clipEnd, NumCast(this.layoutDoc.clipStart) + NumCast(this.dataDoc[`${this.fieldKey}-duration`])) - NumCast(this.layoutDoc.clipStart);
+ // NumCast(this.dataDoc[`${this.fieldKey}-duration`]);
+ }
@computed get trimDuration() {
- return this._trimming && this._trimEnd ? this.duration : this._trimEnd - this._trimStart;
+ return this.trimEnd - this.trimStart;
}
@computed get anchorDocs() {
return DocListCast(this.dataDoc[this.annotationKey]);
@@ -228,8 +234,6 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
runInAction(
() => (this.dataDoc[this.fieldKey + "-duration"] = htmlEle.duration)
);
- this.layoutDoc.clipEnd = this.layoutDoc.clipEnd ? Math.min(this.duration, NumCast(this.layoutDoc.clipEnd)) : this.duration;
- this._trimEnd = this._trimEnd ? Math.min(this.duration, this._trimEnd) : this.duration;
this.links
.map((l) => this.getLinkData(l))
.forEach(({ la1, la2, linkTime }) => {
@@ -259,7 +263,7 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
// play back the audio from time
@action
- playFrom = (seekTimeInSeconds: number, endTime: number = this._trimEnd, fullPlay: boolean = false) => {
+ playFrom = (seekTimeInSeconds: number, endTime: number = this.trimEnd, fullPlay: boolean = false) => {
clearTimeout(this._play);
if (Number.isNaN(this._ele?.duration)) {
setTimeout(() => this.playFrom(seekTimeInSeconds, endTime), 500);
@@ -270,9 +274,9 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
} else {
this.Pause();
}
- } else if (this._trimStart <= endTime && seekTimeInSeconds <= this._trimEnd) {
- const start = Math.max(this._trimStart, seekTimeInSeconds);
- const end = Math.min(this._trimEnd, endTime);
+ } else if (this.trimStart <= endTime && seekTimeInSeconds <= this.trimEnd) {
+ const start = Math.max(this.trimStart, seekTimeInSeconds);
+ const end = Math.min(this.trimEnd, endTime);
this._ele.currentTime = start;
this._ele.play();
runInAction(() => (this.mediaState = "playing"));
@@ -385,14 +389,14 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
Play = (e?: any) => {
let start;
if (this._ended || this._ele!.currentTime === this.duration) {
- start = this._trimStart;
+ start = NumCast(this.layoutDoc.clipStart);
this._ended = false;
}
else {
start = this._ele!.currentTime;
}
- this.playFrom(start, this._trimEnd, true);
+ this.playFrom(start, this.trimEnd, true);
e?.stopPropagation?.();
}
@@ -502,16 +506,16 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
}
// hides trim controls and displays new clip
- @action
- finishTrim = () => {
+ @undoBatch
+ finishTrim = action(() => {
if (this.mediaState === "playing") {
this.Pause();
}
- this.layoutDoc.clipStart = this._trimStart;
- this.layoutDoc.clipEnd = this._trimEnd;
+ this.layoutDoc.clipStart = this.trimStart;
+ this.layoutDoc.clipEnd = this.trimEnd;
+ this.setAnchorTime(Math.max(Math.min(this.trimEnd, this._ele!.currentTime), this.trimStart));
this._trimming = false;
- this.setAnchorTime(Math.max(Math.min(this._trimEnd, this._ele!.currentTime), this._trimStart));
- }
+ });
@action
setStartTrim = (newStart: number) => {
@@ -544,6 +548,8 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
this.heightPercent) /
100 // panelHeight * heightPercent is player height. * heightPercent is timeline height (as per css inline)
timelineWidth = () => this.props.PanelWidth() - AudioBox.playheadWidth;
+ trimEndFunc = () => this.trimEnd;
+ trimStartFunc = () => this.trimStart;
@computed get renderTimeline() {
return (
<CollectionStackedTimeline
@@ -558,13 +564,12 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
focus={DocUtils.DefaultFocus}
bringToFront={emptyFunction}
CollectionView={undefined}
+ rawDuration={this.rawDuration}
duration={this.duration}
playFrom={this.playFrom}
setTime={this.setAnchorTime}
playing={this.playing}
- whenChildContentsActiveChanged={
- this.timelineWhenChildContentsActiveChanged
- }
+ whenChildContentsActiveChanged={this.timelineWhenChildContentsActiveChanged}
moveDocument={this.moveDocument}
addDocument={this.addDocument}
removeDocument={this.removeDocument}
@@ -577,8 +582,8 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
PanelWidth={this.timelineWidth}
PanelHeight={this.timelineHeight}
trimming={this._trimming}
- trimStart={this._trimStart}
- trimEnd={this._trimEnd}
+ trimStart={this.trimStartFunc}
+ trimEnd={this.trimEndFunc}
trimDuration={this.trimDuration}
setStartTrim={this.setStartTrim}
setEndTrim={this.setEndTrim}
@@ -710,7 +715,7 @@ export class AudioBox extends ViewBoxAnnotatableComponent<
<div className="audioBox-current-time">
{this._trimming ?
formatTime(Math.round(NumCast(this.layoutDoc._currentTimecode)))
- : formatTime(Math.round(NumCast(this.layoutDoc._currentTimecode) - NumCast(this._trimStart)))}
+ : formatTime(Math.round(NumCast(this.layoutDoc._currentTimecode) - NumCast(this.trimStart)))}
</div>
<div className="audioBox-total-time">
{this._trimming || !this._trimEnd ?
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx
index 3fc460102..84eeacc29 100644
--- a/src/client/views/nodes/VideoBox.tsx
+++ b/src/client/views/nodes/VideoBox.tsx
@@ -9,7 +9,7 @@ import { InkTool } from "../../../fields/InkField";
import { makeInterface } from "../../../fields/Schema";
import { Cast, NumCast, StrCast } from "../../../fields/Types";
import { AudioField, nullAudio, VideoField } from "../../../fields/URLField";
-import { emptyFunction, formatTime, OmitKeys, returnOne, setupMoveUpEvents, Utils, returnFalse } from "../../../Utils";
+import { emptyFunction, formatTime, OmitKeys, returnOne, setupMoveUpEvents, Utils, returnFalse, returnZero } from "../../../Utils";
import { Docs, DocUtils } from "../../documents/Documents";
import { Networking } from "../../Network";
import { CurrentUserUtils } from "../../util/CurrentUserUtils";
@@ -526,6 +526,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp
timelineScreenToLocal = () => this.props.ScreenToLocalTransform().scale(this.scaling()).translate(0, -this.heightPercent / 100 * this.props.PanelHeight());
setAnchorTime = (time: number) => this.player!.currentTime = this.layoutDoc._currentTimecode = time;
timelineHeight = () => this.props.PanelHeight() * (100 - this.heightPercent) / 100;
+ trimEndFunc = () => this.duration;
@computed get renderTimeline() {
return <div className="videoBox-stackPanel" style={{ transition: this.transition, height: `${100 - this.heightPercent}%` }}>
<CollectionStackedTimeline ref={this._stackedTimeline} {...this.props}
@@ -538,6 +539,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp
bringToFront={emptyFunction}
CollectionView={undefined}
duration={this.duration}
+ rawDuration={this.duration}
playFrom={this.playFrom}
setTime={this.setAnchorTime}
playing={this.playing}
@@ -550,11 +552,11 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp
playLink={this.playLink}
PanelHeight={this.timelineHeight}
trimming={false}
- trimStart={0}
- trimEnd={this.duration}
+ trimStart={returnZero}
+ trimEnd={this.trimEndFunc}
trimDuration={this.duration}
- setStartTrim={() => { }}
- setEndTrim={() => { }}
+ setStartTrim={emptyFunction}
+ setEndTrim={emptyFunction}
/>
</div>;
}