2016-11-10 21:13:00 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
2016-08-22 16:35:59 +00:00
|
|
|
import InlineSVG from 'react-inlinesvg';
|
2017-02-22 19:29:35 +00:00
|
|
|
import { browserHistory } from 'react-router';
|
|
|
|
|
2016-08-22 16:35:59 +00:00
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
2017-01-06 18:14:39 +00:00
|
|
|
const squareLogoUrl = require('../../../images/p5js-square-logo.svg');
|
|
|
|
const playUrl = require('../../../images/play.svg');
|
|
|
|
const asteriskUrl = require('../../../images/p5-asterisk.svg');
|
2016-08-22 16:35:59 +00:00
|
|
|
|
|
|
|
class About extends React.Component {
|
2016-11-10 21:13:00 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.closeAboutModal = this.closeAboutModal.bind(this);
|
|
|
|
}
|
|
|
|
|
2016-09-28 16:09:42 +00:00
|
|
|
componentDidMount() {
|
2017-02-22 19:29:35 +00:00
|
|
|
this.aboutSection.focus();
|
2016-09-28 16:09:42 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 16:35:59 +00:00
|
|
|
closeAboutModal() {
|
2016-11-10 21:13:00 +00:00
|
|
|
browserHistory.push(this.props.previousPath);
|
2016-08-22 16:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2017-02-22 19:29:35 +00:00
|
|
|
<section className="about" ref={(element) => { this.aboutSection = element; }} tabIndex="0">
|
2016-08-22 16:35:59 +00:00
|
|
|
<header className="about__header">
|
2017-01-06 18:14:39 +00:00
|
|
|
<h2 className="about__header-title">Welcome</h2>
|
2016-08-22 16:35:59 +00:00
|
|
|
<button className="about__exit-button" onClick={this.closeAboutModal}>
|
|
|
|
<InlineSVG src={exitUrl} alt="Close About Overlay" />
|
|
|
|
</button>
|
|
|
|
</header>
|
2017-01-06 18:14:39 +00:00
|
|
|
<div className="about__content">
|
|
|
|
<div className="about__content-column">
|
|
|
|
<InlineSVG className="about__logo" src={squareLogoUrl} alt="p5js Square Logo" />
|
|
|
|
<p className="about__play-video">
|
|
|
|
<a
|
|
|
|
href="http://hello.p5js.org/"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>
|
|
|
|
<InlineSVG className="about__play-video-button" src={playUrl} alt="Play Hello Video" />
|
|
|
|
Play hello! video</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="about__content-column">
|
|
|
|
<h3 className="about__content-column-title">New to p5.js?</h3>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/examples/"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
|
|
|
Examples</a>
|
|
|
|
</p>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/tutorials/"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
|
|
|
Tutorials</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="about__content-column">
|
|
|
|
<h3 className="about__content-column-title">Resources</h3>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/libraries/"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
|
|
|
Libraries</a>
|
|
|
|
</p>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/reference/"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
|
|
|
Reference</a>
|
|
|
|
</p>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://forum.processing.org/two/"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
|
|
|
Forum</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="about__footer">
|
|
|
|
<p className="about__footer-list">
|
2016-08-22 16:35:59 +00:00
|
|
|
<a
|
|
|
|
href="https://github.com/processing/p5.js-web-editor"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>Contribute</a>
|
|
|
|
</p>
|
|
|
|
<p className="about__footer-list">
|
2016-08-22 16:35:59 +00:00
|
|
|
<a
|
|
|
|
href="https://github.com/processing/p5.js-web-editor/issues/new"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>Report a bug</a>
|
|
|
|
</p>
|
|
|
|
<p className="about__footer-list">
|
|
|
|
<a
|
|
|
|
href="https://twitter.com/p5xjs?lang=en"
|
|
|
|
target="_blank"
|
2017-02-22 19:29:35 +00:00
|
|
|
rel="noopener noreferrer"
|
2017-01-06 18:14:39 +00:00
|
|
|
>Twitter</a>
|
2016-08-22 16:35:59 +00:00
|
|
|
</p>
|
2017-01-06 18:14:39 +00:00
|
|
|
<button className="about__ok-button" onClick={this.closeAboutModal}>OK!</button>
|
2016-08-22 16:35:59 +00:00
|
|
|
</div>
|
2016-09-28 16:09:42 +00:00
|
|
|
</section>
|
2016-08-22 16:35:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-10 21:13:00 +00:00
|
|
|
About.propTypes = {
|
|
|
|
previousPath: PropTypes.string.isRequired
|
|
|
|
};
|
|
|
|
|
2016-08-22 16:35:59 +00:00
|
|
|
export default About;
|