2018-06-06 08:06:03 +02:00
|
|
|
// @flow
|
|
|
|
import * as React from 'react';
|
|
|
|
import LoadingScreen from 'component/common/loading-screen';
|
2018-06-13 00:40:55 +02:00
|
|
|
// ThreeJS
|
|
|
|
import * as THREE from './internal/three';
|
|
|
|
import detectWebGL from './internal/detector';
|
|
|
|
import ThreeScene from './internal/scene';
|
|
|
|
import ThreeLoader from './internal/loader';
|
|
|
|
import ThreeRenderer from './internal/renderer';
|
2018-06-06 08:06:03 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
theme: string,
|
|
|
|
autoRotate: boolean,
|
|
|
|
source: {
|
|
|
|
fileType: string,
|
|
|
|
filePath: string,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
class ThreeViewer extends React.PureComponent<Props> {
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
2018-06-11 05:51:39 +02:00
|
|
|
|
|
|
|
const { theme } = this.props;
|
|
|
|
|
2018-06-13 00:40:55 +02:00
|
|
|
// Main container
|
2018-06-06 08:06:03 +02:00
|
|
|
this.viewer = React.createRef();
|
2018-06-11 05:51:39 +02:00
|
|
|
|
2018-06-06 08:06:03 +02:00
|
|
|
// Object colors
|
|
|
|
this.materialColors = {
|
|
|
|
red: '#e74c3c',
|
|
|
|
blue: '#3498db',
|
|
|
|
green: '#44b098',
|
|
|
|
orange: '#f39c12',
|
|
|
|
};
|
|
|
|
|
2018-06-11 05:51:39 +02:00
|
|
|
// Viewer themes
|
2018-06-06 08:06:03 +02:00
|
|
|
this.themes = {
|
|
|
|
dark: {
|
|
|
|
gridColor: '#414e5c',
|
|
|
|
groundColor: '#13233C',
|
|
|
|
backgroundColor: '#13233C',
|
|
|
|
centerLineColor: '#7f8c8d',
|
|
|
|
},
|
|
|
|
light: {
|
|
|
|
gridColor: '#7f8c8d',
|
|
|
|
groundColor: '#DDD',
|
|
|
|
backgroundColor: '#EEE',
|
|
|
|
centerLineColor: '#2F2F2F',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-06-09 22:33:31 +02:00
|
|
|
// Select current theme
|
2018-06-06 08:06:03 +02:00
|
|
|
this.theme = this.themes[theme] || this.themes.light;
|
2018-06-11 05:51:39 +02:00
|
|
|
|
|
|
|
// State
|
|
|
|
this.state = {
|
|
|
|
error: null,
|
|
|
|
isReady: false,
|
|
|
|
isLoading: false,
|
|
|
|
};
|
2018-06-06 08:06:03 +02:00
|
|
|
}
|
|
|
|
|
2018-06-13 00:40:55 +02:00
|
|
|
componentDidMount() {
|
|
|
|
if (detectWebGL()) {
|
|
|
|
this.renderScene();
|
|
|
|
// Update render on resize window
|
|
|
|
window.addEventListener('resize', this.handleResize, false);
|
|
|
|
} else {
|
|
|
|
// No webgl support, handle Error...
|
|
|
|
// TODO: Use a better error message
|
|
|
|
this.state({ error: "Sorry, your computer doesn't support WebGL." });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
window.removeEventListener('resize', this.handleResize, false);
|
|
|
|
}
|
|
|
|
|
2018-06-06 08:06:03 +02:00
|
|
|
createOrbitControls(camera, canvas) {
|
|
|
|
const { autoRotate } = this.props;
|
|
|
|
const controls = new THREE.OrbitControls(camera, canvas);
|
|
|
|
// Controls configuration
|
|
|
|
controls.enableDamping = true;
|
|
|
|
controls.dampingFactor = 0.75;
|
|
|
|
controls.enableZoom = true;
|
|
|
|
controls.minDistance = 1;
|
|
|
|
controls.maxDistance = 50;
|
|
|
|
controls.autoRotate = autoRotate;
|
|
|
|
return controls;
|
|
|
|
}
|
|
|
|
|
|
|
|
createGeometry(data) {
|
|
|
|
const geometry = new THREE.Geometry();
|
|
|
|
geometry.fromBufferGeometry(data);
|
|
|
|
geometry.computeBoundingBox();
|
|
|
|
geometry.computeVertexNormals();
|
|
|
|
geometry.center();
|
|
|
|
geometry.rotateX(-Math.PI / 2);
|
|
|
|
geometry.lookAt(new THREE.Vector3(0, 0, 1));
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
|
|
|
createWireFrame(group) {
|
2018-06-13 00:40:55 +02:00
|
|
|
const wireframeGeometry = new THREE.WireframeGeometry(group.geometry);
|
|
|
|
const wireframeMaterial = new THREE.LineBasicMaterial({
|
|
|
|
opacity: 0,
|
|
|
|
transparent: true,
|
|
|
|
linewidth: 1,
|
|
|
|
});
|
|
|
|
// Set material color
|
|
|
|
wireframeMaterial.color.set(this.materialColors.green);
|
|
|
|
this.wireframe = new THREE.LineSegments(wireframeGeometry, wireframeMaterial);
|
2018-06-06 08:06:03 +02:00
|
|
|
group.add(this.wireframe);
|
|
|
|
}
|
|
|
|
|
|
|
|
createMesh(geometry) {
|
|
|
|
const material = new THREE.MeshPhongMaterial({
|
|
|
|
opacity: 1,
|
|
|
|
transparent: true,
|
|
|
|
depthWrite: true,
|
|
|
|
vertexColors: THREE.FaceColors,
|
|
|
|
// Positive value pushes polygon further away
|
|
|
|
polygonOffsetFactor: 1,
|
|
|
|
polygonOffsetUnits: 1,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Set material color
|
|
|
|
material.color.set(this.materialColors.green);
|
|
|
|
|
|
|
|
const mesh = new THREE.Mesh(geometry, material);
|
2018-06-09 22:33:31 +02:00
|
|
|
|
|
|
|
// Assign name
|
2018-06-06 08:06:03 +02:00
|
|
|
mesh.name = 'objectGroup';
|
2018-06-09 22:33:31 +02:00
|
|
|
|
2018-06-06 08:06:03 +02:00
|
|
|
this.scene.add(mesh);
|
|
|
|
this.fitMeshToCamera(mesh);
|
2018-06-09 22:33:31 +02:00
|
|
|
this.createWireFrame(mesh);
|
2018-06-13 00:40:55 +02:00
|
|
|
this.updateControlsTarget(mesh.position);
|
2018-06-06 08:06:03 +02:00
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleWireFrame(show = false) {
|
|
|
|
this.wireframe.opacity = show ? 1 : 0;
|
|
|
|
this.mesh.material.opacity = show ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fitMeshToCamera(group) {
|
2018-06-13 00:40:55 +02:00
|
|
|
const max = { x: 0, y: 0, z: 0 };
|
|
|
|
const min = { x: 0, y: 0, z: 0 };
|
2018-06-06 08:06:03 +02:00
|
|
|
|
|
|
|
group.traverse(child => {
|
|
|
|
if (child instanceof THREE.Mesh) {
|
|
|
|
const box = new THREE.Box3().setFromObject(group);
|
|
|
|
// Max
|
|
|
|
max.x = box.max.x > max.x ? box.max.x : max.x;
|
|
|
|
max.y = box.max.y > max.y ? box.max.y : max.y;
|
|
|
|
max.z = box.max.z > max.z ? box.max.z : max.z;
|
|
|
|
// Min
|
|
|
|
min.x = box.min.x < min.x ? box.min.x : min.x;
|
|
|
|
min.y = box.min.y < min.y ? box.min.y : min.y;
|
|
|
|
min.z = box.min.z < min.z ? box.min.z : min.z;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const meshY = Math.abs(max.y - min.y);
|
|
|
|
const meshX = Math.abs(max.x - min.x);
|
2018-06-13 00:40:55 +02:00
|
|
|
const scaleFactor = 15 / Math.max(meshX, meshY);
|
2018-06-06 08:06:03 +02:00
|
|
|
|
|
|
|
group.scale.set(scaleFactor, scaleFactor, scaleFactor);
|
2018-06-13 00:40:55 +02:00
|
|
|
group.position.setY((meshY / 2) * scaleFactor);
|
2018-06-06 08:06:03 +02:00
|
|
|
group.position.multiplyScalar(-1);
|
2018-06-13 01:18:00 +02:00
|
|
|
group.position.setY((meshY * scaleFactor) / 2);
|
2018-06-06 08:06:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
startLoader() {
|
|
|
|
const { source } = this.props;
|
2018-06-13 00:40:55 +02:00
|
|
|
|
|
|
|
if (source) {
|
2018-06-06 08:06:03 +02:00
|
|
|
ThreeLoader(source, this.renderModel.bind(this), {
|
|
|
|
onStart: this.handleStart(this),
|
|
|
|
onLoad: this.handleReady.bind(this),
|
|
|
|
onError: this.handleError.bind(this),
|
|
|
|
onProgress: this.handleProgress.bind(this),
|
|
|
|
});
|
2018-06-13 00:40:55 +02:00
|
|
|
}
|
2018-06-06 08:06:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
handleStart() {
|
|
|
|
this.setState({ isLoading: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleReady() {
|
|
|
|
// Handle load ready
|
|
|
|
this.setState({ isReady: true, isLoading: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleResize = () => {
|
|
|
|
const { offsetWidth: width, offsetHeight: height } = this.viewer.current;
|
|
|
|
this.camera.aspect = width / height;
|
|
|
|
this.camera.updateProjectionMatrix();
|
|
|
|
this.controls.update();
|
|
|
|
this.renderer.setSize(width, height);
|
|
|
|
};
|
|
|
|
|
2018-06-13 00:40:55 +02:00
|
|
|
handleError() {
|
2018-06-06 08:06:03 +02:00
|
|
|
this.setState({ error: "Sorry, looks like we can't load this file" });
|
|
|
|
}
|
|
|
|
|
2018-06-13 00:40:55 +02:00
|
|
|
handleProgress() {
|
|
|
|
// const progress = (currentItem / totalItems) * 100;
|
|
|
|
// console.info(currentItem, totalItems, progress);
|
2018-06-06 08:06:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
handleColorChange(color) {
|
|
|
|
if (!this.mesh) return;
|
|
|
|
const pickColor = this.materialColors[color] || this.materialColors.green;
|
|
|
|
this.mesh.material.color.set(pickColor);
|
|
|
|
this.wireframe.material.color.set(pickColor);
|
|
|
|
}
|
|
|
|
|
2018-06-13 00:40:55 +02:00
|
|
|
updateControlsTarget(point) {
|
|
|
|
this.controls.target.fromArray([point.x, point.y, point.z]);
|
|
|
|
this.controls.update();
|
|
|
|
}
|
|
|
|
|
2018-06-06 08:06:03 +02:00
|
|
|
renderModel(fileType, data) {
|
|
|
|
const geometry = this.createGeometry(data);
|
|
|
|
this.mesh = this.createMesh(geometry);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderScene() {
|
|
|
|
this.renderer = ThreeRenderer({
|
|
|
|
antialias: true,
|
|
|
|
shadowMap: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.scene = ThreeScene({
|
|
|
|
showFog: true,
|
|
|
|
showGrid: true,
|
|
|
|
...this.theme,
|
|
|
|
});
|
|
|
|
|
|
|
|
const viewer = this.viewer.current;
|
|
|
|
const canvas = this.renderer.domElement;
|
|
|
|
const { offsetWidth: width, offsetHeight: height } = viewer;
|
|
|
|
// Camera
|
|
|
|
this.camera = new THREE.PerspectiveCamera(80, width / height, 0.1, 1000);
|
|
|
|
this.camera.position.set(-9.5, 14, 11);
|
|
|
|
// Controls
|
|
|
|
this.controls = this.createOrbitControls(this.camera, canvas);
|
|
|
|
// Set viewer size
|
|
|
|
this.renderer.setSize(width, height);
|
|
|
|
// Load file and render mesh
|
|
|
|
this.startLoader();
|
|
|
|
|
|
|
|
const updateScene = () => {
|
|
|
|
requestAnimationFrame(updateScene);
|
|
|
|
this.controls.update();
|
|
|
|
this.renderer.render(this.scene, this.camera);
|
|
|
|
};
|
|
|
|
|
|
|
|
updateScene();
|
|
|
|
// Append canvas
|
|
|
|
viewer.appendChild(canvas);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-06-13 00:40:55 +02:00
|
|
|
const { error, isReady, isLoading } = this.state;
|
|
|
|
const loadingMessage = 'Loading 3D model.';
|
2018-06-06 08:06:03 +02:00
|
|
|
const showViewer = isReady && !error;
|
|
|
|
const showLoading = isLoading && !error;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
2018-06-11 05:51:39 +02:00
|
|
|
{error && <LoadingScreen status={error} spinner={false} />}
|
2018-06-13 00:40:55 +02:00
|
|
|
{showLoading && <LoadingScreen status={loadingMessage} spinner />}
|
|
|
|
<div
|
|
|
|
style={{ opacity: showViewer ? 1 : 0 }}
|
|
|
|
className="three-viewer file-render__viewer"
|
|
|
|
ref={this.viewer}
|
|
|
|
/>
|
2018-06-06 08:06:03 +02:00
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ThreeViewer;
|