import React from "react"
import { StyleSheet, View, TouchableHighlight, Image } from "react-native"
import {
ViroARSceneNavigator,
ViroARScene,
ViroARPlane,
ViroAmbientLight,
ViroDirectionalLight,
ViroMaterials,
Viro3DObject,
ViroSpotLight,
ViroNode,
ViroSurface,
} from "react-viro"
import autobind from "autobind-decorator"
import backImage from "./images/back.png"
import { config } from "../config"
const shapes = {
order: {
source: require("./models/hardhat_obj.obj"),
resources: [require("./models/hardhat.mtl")],
},
complaint: {
source: require("./models/question_obj.obj"),
resources: [require("./models/question.mtl")],
},
inspection: {
source: require("./models/clipboard_obj.obj"),
resources: [require("./models/clipboard.mtl")],
},
}
const distance = (vectorA, vectorB) => {
return Math.sqrt(
(vectorB[0] - vectorA[0]) * (vectorB[0] - vectorA[0]) +
(vectorB[1] - vectorA[1]) * (vectorB[1] - vectorA[1]) +
(vectorB[2] - vectorA[2]) * (vectorB[2] - vectorA[2])
)
}
class WorkItemSceneAR extends React.Component {
constructor(props) {
super(props)
this.state = {
position: [0, 0, 0],
rotation: [0, 0, 0],
scale: [0.15, 0.15, 0.15],
shouldBillboard: true,
}
}
@autobind
handleLoadEnd() {
this.arScene.getCameraOrientationAsync().then((orientation) => {
return this.arScene
.performARHitTestWithRay(orientation.forward)
.then((results) => {
// Default position is just 1.5 meters in front of the user.
const forward = orientation.forward
const defaultPosition = [
forward[0] * 1.5,
forward[1] * 1.5,
forward[2] * 1.5,
]
let hitResultPosition = null
// Filter the hit test results based on the position.
if (results.length > 0) {
for (var i = 0; i < results.length; i++) {
let result = results[i]
if (result.type == "ExistingPlaneUsingExtent") {
let distance = Math.sqrt(
(result.transform.position[0] - position[0]) *
(result.transform.position[0] - position[0]) +
(result.transform.position[1] - position[1]) *
(result.transform.position[1] - position[1]) +
(result.transform.position[2] - position[2]) *
(result.transform.position[2] - position[2])
)
if (distance > 0.2 && distance < 10) {
// If we found a plane greater than .2 and less than 10 meters away then choose it!
hitResultPosition = result.transform.position
break
}
} else if (result.type == "FeaturePoint" && !hitResultPosition) {
// If we haven't found a plane and this feature point is within range,
// then we'll use it as the initial display point
let distance = this._distance(
position,
result.transform.position
)
if (distance > 0.2 && distance < 10) {
hitResultPosition = result.transform.position
}
}
}
}
this.setState({
position: hitResultPosition || defaultPosition,
})
setTimeout(() => {
this.updateInitialRotation()
}, 200)
})
})
}
@autobind
updateInitialRotation() {
this.arNode.getTransformAsync().then((retDict) => {
let rotation = retDict.rotation
let absX = Math.abs(rotation[0])
let absZ = Math.abs(rotation[2])
let yRotation = rotation[1]
// If the X and Z aren't 0, then adjust the y rotation.
if (absX > 1 && absZ > 1) {
yRotation = 180 - yRotation
}
this.setState({
rotation: [0, yRotation, 0],
shouldBillboard: false,
})
})
}
@autobind
handleClick(position, source) {
const { workItemId } = this.props
this.props.history.replace(
`/activity${workItemId ? "?workItemId=" + workItemId : ""}`
)
}
render() {
const { position, scale, rotation, shouldBillboard } = this.state
const shape = shapes[this.props.workItemType]
return (
(this.arScene = ref)}>
(this.arNode = ref)}
transformBehaviors={shouldBillboard ? "billboardY" : []}
position={position}
scale={scale}
rotation={rotation}>
{shape && (
)}
)
}
}
export class ARViewer extends React.Component {
constructor(props) {
super(props)
const { search } = this.props.location
if (search) {
const params = new URLSearchParams(search)
this.workItemId = params.get("workItemId")
this.workItemType = params.get("workItemType")
}
}
@autobind
handleBackPress() {
this.props.history.replace("/")
}
render() {
return (
)
}
}