Last commit before background change
1307
public/3d/pvm.json
Normal file
@ -11,6 +11,7 @@
|
|||||||
*/
|
*/
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { HashRouter, Route, Switch } from 'react-router-dom';
|
import { HashRouter, Route, Switch } from 'react-router-dom';
|
||||||
|
import { withRouter } from 'react-router-dom';
|
||||||
|
|
||||||
import Header from './components/Header';
|
import Header from './components/Header';
|
||||||
import Footer from './components/Footer';
|
import Footer from './components/Footer';
|
||||||
@ -33,32 +34,43 @@ class App extends React.Component {
|
|||||||
super(props);
|
super(props);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
this.historyListener = this.props.history.listen(this.onChange.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
onChange(location, action) {
|
||||||
|
console.log("on change");
|
||||||
|
window.scrollTo(0, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<HashRouter>
|
<div className="c-app">
|
||||||
<div className="c-app">
|
<Header />
|
||||||
<Header />
|
|
||||||
|
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route exact path="/" component={IndexPage} />
|
<Route exact path="/" component={IndexPage} />
|
||||||
|
|
||||||
<Route exact path="/about" component={AboutPage} />
|
<Route exact path="/about" component={AboutPage} />
|
||||||
<Route exact path="/about/programming" component={ProgrammingPage} />
|
<Route exact path="/about/programming" component={ProgrammingPage} />
|
||||||
<Route exact path="/about/api" component={APIPage} />
|
<Route exact path="/about/api" component={APIPage} />
|
||||||
<Route exact path="/about/other" component={OtherSkillsPage} />
|
<Route exact path="/about/other" component={OtherSkillsPage} />
|
||||||
|
|
||||||
<Route exact path="/privacy-policy" component={PrivacyPolicyPage} />
|
<Route exact path="/privacy-policy" component={PrivacyPolicyPage} />
|
||||||
<Route exact path="/privacy" component={PrivacyPolicyPage} />
|
<Route exact path="/privacy" component={PrivacyPolicyPage} />
|
||||||
<Route exact path="/policy" component={PrivacyPolicyPage} />
|
<Route exact path="/policy" component={PrivacyPolicyPage} />
|
||||||
|
|
||||||
<Route exact path="/contact" component={ContactPage} />
|
<Route exact path="/contact" component={ContactPage} />
|
||||||
</Switch>
|
</Switch>
|
||||||
|
|
||||||
<Footer />
|
<Footer />
|
||||||
</div>
|
</div>
|
||||||
</HashRouter>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default withRouter(App);
|
||||||
|
@ -28,7 +28,8 @@ class IndexPage extends React.Component {
|
|||||||
<Page>
|
<Page>
|
||||||
<Poly />
|
<Poly />
|
||||||
|
|
||||||
<BodySection>
|
<BodySection unpadded>
|
||||||
|
<h1>Lorem</h1>
|
||||||
</BodySection>
|
</BodySection>
|
||||||
</Page>
|
</Page>
|
||||||
)
|
)
|
||||||
|
@ -21,11 +21,15 @@ class BodySection extends React.Component {
|
|||||||
let children;
|
let children;
|
||||||
|
|
||||||
if(this.props.children) {
|
if(this.props.children) {
|
||||||
children = (
|
if(this.props.unpadded) {
|
||||||
<div className="c-body-section__wrapper">
|
children = this.props.children;
|
||||||
{this.props.children}
|
} else {
|
||||||
</div>
|
children = (
|
||||||
);
|
<div className="c-body-section__wrapper">
|
||||||
|
{this.props.children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
28
public/components/sections/CenterSection.jsx
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* Center Section
|
||||||
|
* Section for centered items.
|
||||||
|
*
|
||||||
|
* Dependencies:
|
||||||
|
* styles/components/_section--style-center.scss
|
||||||
|
*
|
||||||
|
* Version:
|
||||||
|
* 1.0.0 - 2018/03/21
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
import Section from './../Section';
|
||||||
|
|
||||||
|
class CenterSection extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Section section="center" className={this.props.className}>
|
||||||
|
</Section>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CenterSection;
|
@ -11,43 +11,51 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import ThreeSection from './ThreeSection';
|
import ThreeSection from './ThreeSection';
|
||||||
import * as THREE from 'three';
|
import * as THREE from 'three';
|
||||||
|
import pvm from './../../3d/pvm.json';
|
||||||
|
import staticGIF from './../../images/static.gif';
|
||||||
|
|
||||||
const CUBES = [
|
const CUBES = [
|
||||||
{
|
{
|
||||||
size: [1, 1, 1],
|
size: [1, 1, 1],
|
||||||
pos: [-4,-0.3,1],
|
pos: [-4,-0.3,1],
|
||||||
velocity: [0.3, 0.1, 0],
|
velocity: [0.3, 0.1, 0],
|
||||||
color: 0xFFFFFF
|
color: 0xFFFFFF,
|
||||||
|
pvm: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
size: [1, 1, 1],
|
size: [1, 1, 1],
|
||||||
pos: [1,-0.8,-0.3],
|
pos: [1,-0.8,-0.3],
|
||||||
velocity: [-0.3, 0.05, 0.1],
|
velocity: [-0.3, 0.05, 0.1],
|
||||||
color: 0xCCFFFF
|
color: 0xCCFFFF,
|
||||||
|
pvm: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
size: [1, 1, 1],
|
size: [1, 1, 1],
|
||||||
pos: [-0.8,0.4,-5],
|
pos: [-0.8,0.4,-5],
|
||||||
velocity: [0, -0.1, 0.1],
|
velocity: [0, -0.1, 0.1],
|
||||||
color: 0xf7ffb7
|
color: 0xf7ffb7,
|
||||||
|
pvm: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
size: [1, 1, 1],
|
size: [1, 1, 1],
|
||||||
pos: [6,1,-2],
|
pos: [6,1,-2],
|
||||||
velocity: [0.2, 0.5, 0],
|
velocity: [0.2, 0.5, 0],
|
||||||
color: 0xffb7ee
|
color: 0xffb7ee,
|
||||||
|
pvm: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
size: [1, 1, 1],
|
size: [1, 1, 1],
|
||||||
pos: [-3,1,0.3],
|
pos: [-3,1,0.3],
|
||||||
velocity: [0.2, 0.5, 0],
|
velocity: [0.2, 0.5, 0],
|
||||||
color: 0xaaffb9
|
color: 0xaaffb9,
|
||||||
|
pvm: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
size: [0.8, 0.8, 0.8],
|
size: [0.8, 0.8, 0.8],
|
||||||
pos: [2.2,1,0.3],
|
pos: [2.2,1,0.3],
|
||||||
velocity: [1, 0.1, -0.1],
|
velocity: [1, 0.1, -0.1],
|
||||||
color: 0xff66ab
|
color: 0xff66ab,
|
||||||
|
pvm: true
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -60,12 +68,31 @@ class Poly extends React.Component {
|
|||||||
this.cubes = [];
|
this.cubes = [];
|
||||||
this.outlines = [];
|
this.outlines = [];
|
||||||
|
|
||||||
|
this.loader = this.loader || new THREE.ObjectLoader();
|
||||||
|
this.textureLoader = new THREE.TextureLoader();
|
||||||
|
|
||||||
|
this.pvmData = this.pvmData || this.loader.parse(pvm);
|
||||||
|
this.pvmData.scale.multiplyScalar(1.5);
|
||||||
|
|
||||||
|
console.log(staticGIF);
|
||||||
|
|
||||||
for(var i = 0; i < CUBES.length; i++) {
|
for(var i = 0; i < CUBES.length; i++) {
|
||||||
let c = CUBES[i];
|
let c = CUBES[i];
|
||||||
|
|
||||||
let geometry = new THREE.BoxGeometry(c.size[0],c.size[1],c.size[2]);
|
let cube;
|
||||||
let material = new THREE.MeshLambertMaterial( { color: c.color } );
|
if(c.pvm) {
|
||||||
let cube = new THREE.Mesh(geometry, material);
|
cube = this.pvmData.clone();
|
||||||
|
let children = cube.children[0].children;
|
||||||
|
|
||||||
|
if(typeof this.screenMaterial === typeof undefined) {
|
||||||
|
let child = children[27];//TV Screen
|
||||||
|
this.screenMaterial = child.material;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let geometry = new THREE.BoxGeometry(c.size[0],c.size[1],c.size[2]);
|
||||||
|
let material = new THREE.MeshLambertMaterial( { color: c.color } );
|
||||||
|
cube = new THREE.Mesh(geometry, material);
|
||||||
|
}
|
||||||
|
|
||||||
cube.position.x = c.pos[0];
|
cube.position.x = c.pos[0];
|
||||||
cube.position.y = c.pos[1];
|
cube.position.y = c.pos[1];
|
||||||
@ -90,7 +117,6 @@ class Poly extends React.Component {
|
|||||||
scene.add( outlineMesh );
|
scene.add( outlineMesh );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onRender(diff) {
|
onRender(diff) {
|
||||||
|
BIN
public/images/logo.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
public/images/space.png
Normal file
After Width: | Height: | Size: 439 B |
BIN
public/images/stars0.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
public/images/stars1.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
public/images/stars2.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
public/images/stars3.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
public/images/static.gif
Normal file
After Width: | Height: | Size: 21 KiB |
@ -6,6 +6,7 @@ import React from 'react';
|
|||||||
import ReactDOM, { render } from 'react-dom';
|
import ReactDOM, { render } from 'react-dom';
|
||||||
import { createStore, applyMiddleware } from 'redux';
|
import { createStore, applyMiddleware } from 'redux';
|
||||||
import { Provider } from 'react-redux';
|
import { Provider } from 'react-redux';
|
||||||
|
import { HashRouter, Route, Switch } from 'react-router-dom';
|
||||||
|
|
||||||
import App from './App.jsx';
|
import App from './App.jsx';
|
||||||
import Styles from './styles/index.scss';
|
import Styles from './styles/index.scss';
|
||||||
@ -23,6 +24,8 @@ const unsubscribe = store.subscribe(() => {
|
|||||||
//Render app and supply provider for store.
|
//Render app and supply provider for store.
|
||||||
render((
|
render((
|
||||||
<Provider store={store}>
|
<Provider store={store}>
|
||||||
<App />
|
<HashRouter>
|
||||||
|
<App />
|
||||||
|
</HashRouter>
|
||||||
</Provider>
|
</Provider>
|
||||||
), document.getElementById("app"));
|
), document.getElementById("app"));
|
||||||
|
@ -90,6 +90,7 @@ body.is-menu-open {
|
|||||||
|
|
||||||
.c-menu__item {
|
.c-menu__item {
|
||||||
display: block;
|
display: block;
|
||||||
|
padding: 0.25em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include t-media-query($s-xsmall-up) {
|
@include t-media-query($s-xsmall-up) {
|
||||||
|