-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathViroVideo.tsx
219 lines (203 loc) · 7.02 KB
/
ViroVideo.tsx
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/**
* Copyright (c) 2015-present, Viro Media, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
import * as React from "react";
import {
findNodeHandle,
NativeModules,
NativeSyntheticEvent,
Platform,
requireNativeComponent,
} from "react-native";
// @ts-ignore
import resolveAssetSource from "react-native/Libraries/Image/resolveAssetSource";
import {
ViroVideoBufferEndEvent,
ViroVideoBufferStartEvent,
ViroVideoErrorEvent,
ViroVideoUpdateTimeEvent,
} from "./Types/ViroEvents";
import { ViroNativeRef, ViroSource } from "./Types/ViroUtils";
import { checkMisnamedProps } from "./Utilities/ViroProps";
import { ViroBase } from "./ViroBase";
type Props = {
stereoMode?: "LeftRight" | "RightLeft" | "TopBottom" | "BottomTop" | "None";
width?: number;
height?: number;
paused?: boolean;
loop?: boolean;
muted?: boolean;
volume?: number;
source: ViroSource;
/**
* Callback invoked when the underlying video component begins buffering. Called at
* least once at the beginning of playback/video creation.
*/
onBufferStart?: (
event: NativeSyntheticEvent<ViroVideoBufferStartEvent>
) => void;
/**
* Callback invoked when the underlying video component has finished buffering.
*/
onBufferEnd?: (event: NativeSyntheticEvent<ViroVideoBufferEndEvent>) => void;
/**
* Callback that is called when the video is finished playing. This
* function isn't called at the end of a video if looping is enabled.
*/
onFinish?: () => void;
/**
* Callback that is called when the current playback position has changed.
* This is called in the form:
* onUpdateTime(currentPlaybackTimeInSeconds, totalPlayBackDurationInSeconds);
*/
onUpdateTime?: (currentTime: number, totalTime: number) => void;
/**
* Callback triggered when the video fails to load. Invoked with
* {nativeEvent: {error}}
*/
onError?: (event: NativeSyntheticEvent<ViroVideoErrorEvent>) => void;
};
export class ViroVideo extends ViroBase<Props> {
_onBufferStart = (event: NativeSyntheticEvent<ViroVideoBufferStartEvent>) => {
this.props.onBufferStart && this.props.onBufferStart(event);
};
_onBufferEnd = (event: NativeSyntheticEvent<ViroVideoBufferEndEvent>) => {
this.props.onBufferEnd && this.props.onBufferEnd(event);
};
_onFinish = () => {
this.props.onFinish && this.props.onFinish();
};
_onUpdateTime = (event: NativeSyntheticEvent<ViroVideoUpdateTimeEvent>) => {
this.props.onUpdateTime &&
this.props.onUpdateTime(
event.nativeEvent.currentTime,
event.nativeEvent.totalTime
);
};
render() {
checkMisnamedProps("ViroVideo", this.props);
var source = resolveAssetSource(this.props.source);
// Since materials and transformBehaviors can be either a string or an array, convert the string to a 1-element array.
let materials =
typeof this.props.materials === "string"
? new Array(this.props.materials)
: this.props.materials;
let transformBehaviors =
typeof this.props.transformBehaviors === "string"
? new Array(this.props.transformBehaviors)
: this.props.transformBehaviors;
let timeToFuse = undefined;
if (
this.props.onFuse != undefined &&
typeof this.props.onFuse === "object"
) {
timeToFuse = this.props.onFuse.timeToFuse;
}
let transformDelegate =
this.props.onTransformUpdate != undefined
? this._onNativeTransformUpdate
: undefined;
let nativeProps = Object.assign({} as any, this.props);
nativeProps.onNativeTransformDelegateViro = transformDelegate;
nativeProps.hasTransformDelegate =
this.props.onTransformUpdate != undefined;
nativeProps.style = [this.props.style];
nativeProps.source = source;
nativeProps.materials = materials;
nativeProps.transformBehaviors = transformBehaviors;
nativeProps.onBufferStartViro = this._onBufferStart;
nativeProps.onBufferEndViro = this._onBufferEnd;
nativeProps.onFinishViro = this._onFinish;
nativeProps.onErrorViro = this._onError;
nativeProps.onUpdateTimeViro = this._onUpdateTime;
nativeProps.onHoverViro = this._onHover;
nativeProps.onClickViro = this._onClickState;
nativeProps.onTouchViro = this._onTouch;
nativeProps.onScrollViro = this._onScroll;
nativeProps.onSwipeViro = this._onSwipe;
nativeProps.onDragViro = this._onDrag;
nativeProps.onRotateViro = this._onRotate;
nativeProps.onPinchViro = this._onPinch;
nativeProps.canHover = this.props.onHover != undefined;
nativeProps.canClick =
this.props.onClick != undefined || this.props.onClickState != undefined;
nativeProps.canTouch = this.props.onTouch != undefined;
nativeProps.canScroll = this.props.onScroll != undefined;
nativeProps.canSwipe = this.props.onSwipe != undefined;
nativeProps.canDrag = this.props.onDrag != undefined;
nativeProps.canPinch = this.props.onPinch != undefined;
nativeProps.canRotate = this.props.onRotate != undefined;
nativeProps.canFuse = this.props.onFuse != undefined;
nativeProps.onFuseViro = this._onFuse;
nativeProps.onAnimationStartViro = this._onAnimationStart;
nativeProps.onAnimationFinishViro = this._onAnimationFinish;
nativeProps.timeToFuse = timeToFuse;
nativeProps.canCollide = this.props.onCollision != undefined;
nativeProps.onCollisionViro = this._onCollision;
nativeProps.ref = (component: ViroNativeRef) => {
this._component = component;
};
return <VRTVideoSurface {...nativeProps} />;
}
seekToTime = (timeInSeconds: number) => {
switch (Platform.OS) {
case "ios":
NativeModules.VRTVideoSurfaceManager.seekToTime(
findNodeHandle(this),
timeInSeconds
);
break;
case "android":
NativeModules.UIManager.dispatchViewManagerCommand(
findNodeHandle(this),
NativeModules.UIManager.VRTVideoSurface.Commands.seekToTime,
[timeInSeconds]
);
break;
}
};
}
var VRTVideoSurface = requireNativeComponent(
"VRTVideoSurface",
// @ts-ignore
ViroVideo,
{
nativeOnly: {
onBufferStartViro: true,
onBufferEndViro: true,
onUpdateTimeViro: true,
onFinishViro: true,
canHover: true,
canClick: true,
canTouch: true,
canScroll: true,
canSwipe: true,
canDrag: true,
canPinch: true,
canRotate: true,
onHoverViro: true,
onClickViro: true,
onTouchViro: true,
onScrollViro: true,
onSwipeViro: true,
onDragViro: true,
onPinchViro: true,
onRotateViro: true,
onErrorViro: true,
canFuse: true,
onFuseViro: true,
timeToFuse: true,
canCollide: true,
onCollisionViro: true,
onNativeTransformDelegateViro: true,
hasTransformDelegate: true,
onAnimationStartViro: true,
onAnimationFinishViro: true,
},
}
);