import * as React from "react"; import { observer } from "mobx-react"; import { observable, reaction, action, IReactionDisposer, observe, IObservableArray, computed, toJS, IObservableObject } from "mobx"; import "./Track.scss"; import { Doc, DocListCastAsync, DocListCast } from "../../../new_fields/Doc"; import { Document, listSpec, createSchema, makeInterface, defaultSpec } from "../../../new_fields/Schema"; import { FieldValue, Cast, NumCast, BoolCast } from "../../../new_fields/Types"; import { List } from "../../../new_fields/List"; import { Keyframe, KeyframeFunc, RegionData } from "./Keyframe"; import { FlyoutProps } from "./Timeline"; import { AddComparisonParameters } from "../../northstar/model/idea/idea"; import { RichTextField } from "../../../new_fields/RichTextField"; import { node } from "prop-types"; import { NorthstarSettings } from "../../northstar/manager/Gateway"; interface IProps { node: Doc; currentBarX: number; changeCurrentBarX: (x:number) => void; setFlyout: (props:FlyoutProps) => any; } @observer export class Track extends React.Component { @observable private _inner = React.createRef(); @observable private _keys = ["x", "y", "width", "height", "panX", "panY", "scale", "opacity"]; private _reactionDisposers: IReactionDisposer[] = []; private _selectionManagerChanged?: IReactionDisposer; @computed private get regions() { return Cast(this.props.node.regions, listSpec(Doc)) as List; } componentWillMount() { this.props.node.regions = new List(); this.props.node.opacity = 1; } @action componentDidMount() { this.props.node.hidden = true; this.props.node.opacity = 1; reaction(() => this.props.currentBarX, () => { let region: (Doc | undefined) = this.findRegion(this.props.currentBarX); if (region !== undefined) { this.props.node.hidden = false; this.timeChange(this.props.currentBarX); } else { this.props.node.hidden = true; } }); reaction(() => { if (!this._onInterpolate){ let keys = Doc.allKeys(this.props.node); return keys.map(key => FieldValue(this.props.node[key])); } }, data => { let regiondata = this.findRegion(this.props.currentBarX); if (regiondata){ (Cast(regiondata.keyframes!, listSpec(Doc)) as List).forEach((kf) => { kf = kf as Doc; if(NumCast(kf.time!) === this.props.currentBarX){ kf.key = Doc.MakeCopy(this.props.node); console.log("key updated"); } }); } }); } /** * removes reaction when the component is removed from the timeline */ componentWillUnmount() { this._reactionDisposers.forEach(disp => disp()); this._reactionDisposers = []; } @observable private _onInterpolate:boolean = false; @action timeChange = async (time: number) => { let region = this.findRegion(time); let leftkf: (Doc | undefined) = this.calcMinLeft(region!); let rightkf: (Doc | undefined) = this.calcMinRight(region!); let currentkf: (Doc | undefined) = this.calcCurrent(region!); if (currentkf){ this._onInterpolate = true; console.log(this.filterKeys(Doc.allKeys(currentkf.key as Doc))); this.filterKeys(Doc.allKeys(currentkf.key as Doc)).forEach(k => { console.log(k); this.props.node[k] = (currentkf!.key as Doc)[k]; }); this._onInterpolate = false; } else if (leftkf && rightkf) { this.interpolate(leftkf, rightkf); } else if (leftkf) { this.filterKeys(Doc.allKeys(leftkf.key as Doc)).forEach(k => { this.props.node[k] = (leftkf!.key as Doc)[k]; }); } else if (rightkf) { this.filterKeys(Doc.allKeys(rightkf.key as Doc)).forEach(k => { this.props.node[k] = (rightkf!.key as Doc)[k]; }); } } @action private filterKeys = (keys:string[]):string[] => { return keys.reduce((acc:string[], key:string) => { if ( key !== "regions" && key !== "data" && key !== "creationDate" && key !== "cursors" && key !== "hidden"){ acc.push(key); } return acc; }, []) as string[]; } @action calcCurrent = (region:Doc):(Doc|undefined) => { let currentkf:(Doc|undefined) = undefined; (region.keyframes! as List).forEach((kf) => { kf = kf as Doc; if (NumCast(kf.time) === this.props.currentBarX){ currentkf = kf; } }); return currentkf; } @action calcMinLeft = (region: Doc): (Doc | undefined) => { //returns the time of the closet keyframe to the left let leftKf:(Doc| undefined) = undefined; let time:number = 0; (region.keyframes! as List).forEach((kf) => { kf = kf as Doc; if (NumCast(kf.time) < this.props.currentBarX && NumCast(kf.time) > NumCast(time)) { leftKf = kf; time = NumCast(kf.time); } }); return leftKf; } @action calcMinRight = (region: Doc): (Doc | undefined) => { //returns the time of the closest keyframe to the right let rightKf: (Doc|undefined) = undefined; let time:number = Infinity; (region.keyframes! as List).forEach((kf) => { kf = kf as Doc; if (NumCast(kf.time) > this.props.currentBarX && NumCast(kf.time) < NumCast(time)) { rightKf = kf; time = NumCast(kf.time); } }); return rightKf; } @action interpolate = async (kf1: Doc, kf2: Doc) => { console.log("interpolation"); let node1 = kf1.key as Doc; let node2 = kf2.key as Doc; const dif_time = NumCast(kf2.time) - NumCast(kf1.time); const ratio = (this.props.currentBarX - NumCast(kf1.time)) / dif_time; //linear this._keys.forEach(key => { const diff = NumCast(node2[key]) - NumCast(node1[key]); const adjusted = diff * ratio; this.props.node[key] = NumCast(node1[key]) + adjusted; }); } @action findRegion(time: number): (Doc | undefined) { let foundRegion = undefined; this.regions.map(region => { region = region as Doc; if (time >= NumCast(region.position) && time <= (NumCast(region.position) + NumCast(region.duration))) { foundRegion = region; } }); return foundRegion; } @action onInnerDoubleClick = (e: React.MouseEvent) => { let inner = this._inner.current!; let left = inner.getBoundingClientRect().left; let offsetX = Math.round(e.clientX - left); let regiondata = KeyframeFunc.defaultKeyframe(); regiondata.position = offsetX; let leftRegion = KeyframeFunc.findAdjacentRegion(KeyframeFunc.Direction.left, regiondata, this.regions); let rightRegion = KeyframeFunc.findAdjacentRegion(KeyframeFunc.Direction.right, regiondata, this.regions); if ((rightRegion && leftRegion && rightRegion.position - (leftRegion.position + leftRegion.duration) < NumCast(regiondata.fadeIn) + NumCast(regiondata.fadeOut)) || (rightRegion && rightRegion.position - regiondata.position < NumCast(regiondata.fadeIn) + NumCast(regiondata.fadeOut))){ return; } else if (rightRegion && rightRegion.position - regiondata.position >= NumCast(regiondata.fadeIn) + NumCast(regiondata.fadeOut)){ regiondata.duration = rightRegion.position - regiondata.position; } this.regions.push(regiondata); } render() { return (
{this.regions.map((region) => { return ; })}
); } }