-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathViroOrbitCamera.tsx
111 lines (100 loc) · 2.73 KB
/
ViroOrbitCamera.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
/**
* Copyright (c) 2015-present, Viro, 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.
*
* @providesModule ViroOrbitCamera
* @flow
*/
"use strict";
import * as React from "react";
import { requireNativeComponent, ViewProps } from "react-native";
import { ViroAnimation } from "./Animation/ViroAnimations";
import { Viro3DPoint, ViroNativeRef } from "./Types/ViroUtils";
import { ViroSceneContext } from "./ViroSceneContext";
export type Props = ViewProps & {
position?: Viro3DPoint;
focalPoint?: Viro3DPoint;
active: boolean;
animation?: ViroAnimation;
fieldOfView?: number;
};
export class ViroOrbitCamera extends React.Component<Props> {
_component: ViroNativeRef = null;
static contextType?: React.Context<any> | undefined = ViroSceneContext;
declare context: React.ContextType<typeof ViroSceneContext>;
componentDidMount() {
this.context.cameraDidMount(this);
}
componentWillUnmount() {
this.context.cameraWillUnmount(this);
}
componentDidUpdate(prevProps: Props, _prevState: any) {
if (prevProps.active != this.props.active) {
this.context.cameraDidUpdate(this, this.props.active);
}
}
setNativeProps = (nativeProps: Props) => {
this._component?.setNativeProps(nativeProps);
};
render() {
// Uncomment this line to check for misnamed props
//checkMisnamedProps("ViroOrbitCamera", this.props);
return (
<VRTOrbitCamera
ref={(component) => {
this._component = component;
}}
{...this.props}
/>
);
}
}
var VRTOrbitCamera = requireNativeComponent(
"VRTOrbitCamera",
// @ts-ignore
ViroOrbitCamera,
{
nativeOnly: {
scale: [1, 1, 1],
materials: [],
visible: true,
canHover: true,
canClick: true,
canTouch: true,
canScroll: true,
canSwipe: true,
canDrag: true,
canPinch: true,
canRotate: true,
onPinchViro: true,
onRotateViro: true,
onHoverViro: true,
onClickViro: true,
onTouchViro: true,
onScrollViro: true,
onSwipeViro: true,
onDragViro: true,
transformBehaviors: true,
canFuse: true,
onFuseViro: true,
timeToFuse: true,
viroTag: true,
scalePivot: true,
rotationPivot: true,
canCollide: true,
onCollisionViro: true,
onNativeTransformDelegateViro: true,
hasTransformDelegate: true,
physicsBody: true,
dragType: true,
dragPlane: true,
animation: true,
ignoreEventHandling: true,
renderingOrder: true,
},
}
);