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-07-17 21:09:46 +00:00
|
|
|
import InlineSVG from 'react-inlinesvg';
|
2017-08-28 15:19:10 +00:00
|
|
|
import classNames from 'classnames';
|
2017-07-17 21:09:46 +00:00
|
|
|
|
|
|
|
const triangleUrl = require('../images/down-filled-triangle.svg');
|
|
|
|
const logoUrl = require('../images/p5js-logo-small.svg');
|
2016-06-23 22:29:55 +00:00
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
class Nav extends React.PureComponent {
|
2017-08-28 15:19:10 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
dropdownOpen: 'none'
|
|
|
|
};
|
2017-08-28 21:54:39 +00:00
|
|
|
this.handleFocus = this.handleFocus.bind(this);
|
|
|
|
this.handleBlur = this.handleBlur.bind(this);
|
|
|
|
this.clearHideTimeout = this.clearHideTimeout.bind(this);
|
2017-08-28 15:19:10 +00:00
|
|
|
}
|
|
|
|
|
2017-08-28 21:54:39 +00:00
|
|
|
setDropdown(dropdown) {
|
|
|
|
this.setState({
|
|
|
|
dropdownOpen: dropdown
|
|
|
|
});
|
2017-07-19 21:35:25 +00:00
|
|
|
}
|
|
|
|
|
2017-08-28 15:19:10 +00:00
|
|
|
toggleDropdown(dropdown) {
|
|
|
|
if (this.state.dropdownOpen === 'none') {
|
|
|
|
this.setState({
|
|
|
|
dropdownOpen: dropdown
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.setState({
|
|
|
|
dropdownOpen: 'none'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-28 21:54:39 +00:00
|
|
|
isUserOwner() {
|
|
|
|
return this.props.project.owner && this.props.project.owner.id === this.props.user.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleFocus(dropdown) {
|
|
|
|
this.clearHideTimeout();
|
|
|
|
this.setDropdown(dropdown);
|
|
|
|
}
|
|
|
|
|
|
|
|
clearHideTimeout() {
|
|
|
|
if (this.timer) {
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
this.timer = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleBlur() {
|
|
|
|
this.timer = setTimeout(this.setDropdown.bind(this, 'none'), 10);
|
|
|
|
}
|
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
render() {
|
2017-08-28 15:19:10 +00:00
|
|
|
const navDropdownState = {
|
|
|
|
file: classNames({
|
|
|
|
'nav__item': true,
|
|
|
|
'nav__item--open': this.state.dropdownOpen === 'file'
|
|
|
|
}),
|
|
|
|
edit: classNames({
|
|
|
|
'nav__item': true,
|
|
|
|
'nav__item--open': this.state.dropdownOpen === 'edit'
|
|
|
|
}),
|
|
|
|
sketch: classNames({
|
|
|
|
'nav__item': true,
|
|
|
|
'nav__item--open': this.state.dropdownOpen === 'sketch'
|
|
|
|
}),
|
|
|
|
help: classNames({
|
|
|
|
'nav__item': true,
|
|
|
|
'nav__item--open': this.state.dropdownOpen === 'help'
|
|
|
|
}),
|
|
|
|
account: classNames({
|
|
|
|
'nav__item': true,
|
|
|
|
'nav__item--open': this.state.dropdownOpen === 'account'
|
|
|
|
})
|
|
|
|
};
|
2017-02-22 19:29:35 +00:00
|
|
|
return (
|
|
|
|
<nav className="nav" role="navigation" title="main-navigation">
|
|
|
|
<ul className="nav__items-left" title="project-menu">
|
2017-07-17 21:09:46 +00:00
|
|
|
<li>
|
|
|
|
<InlineSVG src={logoUrl} alt="p5.js logo" />
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.file}>
|
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdown.bind(this, 'file')}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2017-08-28 15:19:10 +00:00
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">File</span>
|
2017-07-17 21:09:46 +00:00
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-heading">
|
|
|
|
<span>File</span>
|
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
<button
|
|
|
|
onClick={() => {
|
|
|
|
if (!this.props.unsavedChanges) {
|
|
|
|
this.props.newProject();
|
|
|
|
} else if (this.props.warnIfUnsavedChanges()) {
|
|
|
|
this.props.newProject();
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 21:54:39 +00:00
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
2017-07-17 21:09:46 +00:00
|
|
|
>
|
|
|
|
New
|
|
|
|
</button>
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
{ (!this.props.project.owner || this.isUserOwner()) &&
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={() => {
|
|
|
|
if (this.props.user.authenticated) {
|
|
|
|
this.props.saveProject();
|
|
|
|
} else {
|
|
|
|
this.props.showErrorModal('forceAuthentication');
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 21:54:39 +00:00
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
2017-07-19 21:35:25 +00:00
|
|
|
>
|
2017-07-17 21:09:46 +00:00
|
|
|
Save
|
|
|
|
</button>
|
2017-07-19 21:35:25 +00:00
|
|
|
</li> }
|
|
|
|
{ this.props.project.id && this.props.user.authenticated &&
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={this.props.cloneProject}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-17 21:09:46 +00:00
|
|
|
Duplicate
|
|
|
|
</button>
|
2017-07-19 21:35:25 +00:00
|
|
|
</li> }
|
|
|
|
{ this.props.project.id &&
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={this.props.showShareModal}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-19 21:35:25 +00:00
|
|
|
Share
|
2017-07-17 21:09:46 +00:00
|
|
|
</button>
|
2017-07-19 21:35:25 +00:00
|
|
|
</li> }
|
|
|
|
{ this.props.project.id &&
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={() => this.props.exportProjectAsZip(this.props.project.id)}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-17 21:09:46 +00:00
|
|
|
Download
|
|
|
|
</button>
|
2017-07-19 21:35:25 +00:00
|
|
|
</li> }
|
|
|
|
{ this.props.user.authenticated &&
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches`}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-19 21:35:25 +00:00
|
|
|
Open
|
|
|
|
</Link>
|
|
|
|
</li> }
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to="/p5/sketches"
|
2017-08-28 21:54:39 +00:00
|
|
|
onFocus={this.handleFocus.bind(this, 'file')}
|
|
|
|
onBlur={this.handleBlur}
|
2017-07-19 21:35:25 +00:00
|
|
|
>
|
|
|
|
Examples
|
|
|
|
</Link>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.edit}>
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdown.bind(this, 'edit')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">Edit</span>
|
2017-07-17 21:09:46 +00:00
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-heading">
|
|
|
|
<span>Edit</span>
|
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
Tidy Code
|
|
|
|
</li>
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
Find
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.sketch}>
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdown.bind(this, 'sketch')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">Sketch</span>
|
2017-07-17 21:09:46 +00:00
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-heading">
|
|
|
|
<span>Sketch</span>
|
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
Run
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
Stop
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.help}>
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdown.bind(this, 'help')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">Help</span>
|
2017-07-17 21:09:46 +00:00
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-heading">
|
|
|
|
<span>Help</span>
|
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
Keyboard Shortcuts
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/reference/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2017-08-28 21:54:39 +00:00
|
|
|
onFocus={this.handleFocus.bind(this, 'help')}
|
|
|
|
onBlur={this.handleBlur}
|
2017-07-19 21:35:25 +00:00
|
|
|
>Reference</a>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<Link
|
|
|
|
to="/about"
|
|
|
|
onFocus={this.handleFocus.bind(this, 'help')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-19 21:35:25 +00:00
|
|
|
About
|
|
|
|
</Link>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2017-02-22 19:29:35 +00:00
|
|
|
</ul>
|
2017-07-25 19:35:18 +00:00
|
|
|
{ !this.props.user.authenticated &&
|
|
|
|
<ul className="nav__items-right" title="user-menu">
|
|
|
|
<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>
|
|
|
|
</ul>}
|
|
|
|
{ this.props.user.authenticated &&
|
|
|
|
<ul className="nav__items-right" title="user-menu">
|
|
|
|
<li className="nav__item">
|
|
|
|
<span>Hello, {this.props.user.username}!</span>
|
|
|
|
</li>
|
|
|
|
<span className="nav__item-spacer">|</span>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.account}>
|
|
|
|
<button
|
|
|
|
className="nav__item-header"
|
|
|
|
onClick={this.toggleDropdown.bind(this, 'account')}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2017-08-28 15:19:10 +00:00
|
|
|
>
|
|
|
|
My Account
|
|
|
|
</button>
|
2017-07-25 19:35:18 +00:00
|
|
|
<InlineSVG src={triangleUrl} />
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-heading">
|
2017-08-28 15:19:10 +00:00
|
|
|
<span>My Account</span>
|
2017-07-25 19:35:18 +00:00
|
|
|
<InlineSVG src={triangleUrl} />
|
2017-02-22 19:29:35 +00:00
|
|
|
</li>
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches`}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'account')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
My sketches
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/assets`}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'account')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
My assets
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/account`}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'account')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
Settings
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
|
|
|
onClick={this.props.logoutUser}
|
|
|
|
onFocus={this.handleFocus.bind(this, 'account')}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
Log out
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul> }
|
2017-02-22 19:29:35 +00:00
|
|
|
<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.
|
2017-06-06 02:33:32 +00:00
|
|
|
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-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;
|