2016-06-27 20:14:26 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
2016-06-23 22:29:55 +00:00
|
|
|
import { Link } from 'react-router';
|
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
class Nav extends React.PureComponent {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<nav className="nav" role="navigation" title="main-navigation">
|
|
|
|
<ul className="nav__items-left" title="project-menu">
|
|
|
|
<li className="nav__item">
|
|
|
|
<button
|
|
|
|
className="nav__new"
|
|
|
|
onClick={() => {
|
|
|
|
if (!this.props.unsavedChanges) {
|
|
|
|
this.props.newProject();
|
|
|
|
} else if (this.props.warnIfUnsavedChanges()) {
|
|
|
|
this.props.newProject();
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
New
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (!this.props.project.owner || (this.props.project.owner && this.props.project.owner.id === this.props.user.id)) {
|
|
|
|
return (
|
|
|
|
<li className="nav__item">
|
|
|
|
<button
|
|
|
|
className="nav__save"
|
|
|
|
onClick={() => {
|
|
|
|
if (this.props.user.authenticated) {
|
|
|
|
this.props.saveProject();
|
|
|
|
} else {
|
|
|
|
this.props.showErrorModal('forceAuthentication');
|
|
|
|
}
|
|
|
|
}}
|
2016-08-28 01:52:00 +00:00
|
|
|
>
|
2017-02-22 19:29:35 +00:00
|
|
|
Save
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (this.props.project.id && this.props.user.authenticated) {
|
|
|
|
return (
|
|
|
|
<li className="nav__item">
|
|
|
|
<button className="nav__clone" onClick={this.props.cloneProject}>
|
|
|
|
Duplicate
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (this.props.project.id) {
|
|
|
|
return (
|
|
|
|
<li className="nav__item">
|
|
|
|
<button className="nav__export" onClick={() => this.props.exportProjectAsZip(this.props.project.id)}>
|
|
|
|
Download
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (this.props.project.id) {
|
|
|
|
return (
|
|
|
|
<li className="nav__item">
|
|
|
|
<button onClick={this.props.showShareModal}>
|
|
|
|
Share
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (this.props.user.authenticated) {
|
|
|
|
return (
|
|
|
|
<li className="nav__item">
|
|
|
|
<p className="nav__open">
|
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches`}
|
|
|
|
onClick={this.props.stopSketch}
|
|
|
|
>
|
|
|
|
Open
|
|
|
|
</Link>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
|
|
|
<li className="nav__item">
|
|
|
|
<p className="nav__open">
|
|
|
|
<Link to="/p5/sketches">
|
|
|
|
Examples
|
|
|
|
</Link>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
<li className="nav__item">
|
|
|
|
<p className="nav__reference">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/reference/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>Reference</a>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
<li className="nav__item">
|
|
|
|
<p className="nav__about">
|
|
|
|
<Link to="/about">
|
|
|
|
About
|
|
|
|
</Link>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<ul className="nav__items-right" title="user-menu">
|
|
|
|
{(() => {
|
|
|
|
if (!this.props.user.authenticated) {
|
|
|
|
return (
|
|
|
|
<li className="nav__item">
|
|
|
|
<p>
|
|
|
|
<Link to="/login">Log in</Link> <span className="nav__item-spacer">or</span> <Link to="/signup">Sign up</Link>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
2016-08-28 00:46:20 +00:00
|
|
|
return (
|
2016-12-19 22:56:39 +00:00
|
|
|
<li className="nav__item">
|
2017-02-22 19:29:35 +00:00
|
|
|
<a>Hello, {this.props.user.username}!</a>
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-heading">
|
|
|
|
<a>Hello, {this.props.user.username}!</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<Link to={`/${this.props.user.username}/sketches`}>
|
|
|
|
My sketches
|
|
|
|
</Link>
|
|
|
|
</li>
|
2017-03-16 22:25:12 +00:00
|
|
|
<li>
|
|
|
|
<Link to={`/${this.props.user.username}/account`}>
|
|
|
|
My account
|
|
|
|
</Link>
|
|
|
|
</li>
|
2017-02-22 19:29:35 +00:00
|
|
|
<li>
|
|
|
|
<button onClick={this.props.logoutUser} >
|
|
|
|
Log out
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2016-08-28 00:46:20 +00:00
|
|
|
</li>
|
|
|
|
);
|
2017-02-22 19:29:35 +00:00
|
|
|
})()}
|
|
|
|
</ul>
|
|
|
|
<div className="nav__announce">
|
2017-05-03 15:57:33 +00:00
|
|
|
This is a preview version of the editor, that has not yet been officially released.
|
|
|
|
It is in development, you can report bugs <a href="https://github.com/processing/p5.js-web-editor/issues" target="_blank" rel="noopener noreferrer">here</a>.
|
2017-02-22 19:29:35 +00:00
|
|
|
Please use with caution.
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
);
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 20:14:26 +00:00
|
|
|
Nav.propTypes = {
|
2016-08-12 16:45:26 +00:00
|
|
|
newProject: PropTypes.func.isRequired,
|
2016-06-27 20:14:26 +00:00
|
|
|
saveProject: PropTypes.func.isRequired,
|
2016-07-15 17:11:50 +00:00
|
|
|
exportProjectAsZip: PropTypes.func.isRequired,
|
2016-07-15 17:36:33 +00:00
|
|
|
cloneProject: PropTypes.func.isRequired,
|
2016-06-27 20:14:26 +00:00
|
|
|
user: PropTypes.shape({
|
|
|
|
authenticated: PropTypes.bool.isRequired,
|
2016-09-07 19:21:22 +00:00
|
|
|
username: PropTypes.string,
|
|
|
|
id: PropTypes.string
|
2016-08-17 22:35:15 +00:00
|
|
|
}).isRequired,
|
|
|
|
project: PropTypes.shape({
|
2016-09-07 19:21:22 +00:00
|
|
|
id: PropTypes.string,
|
|
|
|
owner: PropTypes.shape({
|
|
|
|
id: PropTypes.string
|
|
|
|
})
|
2016-08-28 00:46:20 +00:00
|
|
|
}),
|
2016-08-28 01:52:00 +00:00
|
|
|
logoutUser: PropTypes.func.isRequired,
|
2016-09-07 02:37:29 +00:00
|
|
|
stopSketch: PropTypes.func.isRequired,
|
2016-11-29 20:51:16 +00:00
|
|
|
showShareModal: PropTypes.func.isRequired,
|
2017-02-22 19:29:35 +00:00
|
|
|
showErrorModal: PropTypes.func.isRequired,
|
|
|
|
unsavedChanges: PropTypes.bool.isRequired,
|
|
|
|
warnIfUnsavedChanges: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
Nav.defaultProps = {
|
|
|
|
project: {
|
|
|
|
id: undefined,
|
|
|
|
owner: undefined
|
|
|
|
}
|
2016-06-27 20:14:26 +00:00
|
|
|
};
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default Nav;
|