p5.js-web-editor/client/components/Nav.jsx

404 lines
13 KiB
React
Raw Normal View History

import React, { PropTypes } from 'react';
2016-06-24 00:29:55 +02:00
import { Link } from 'react-router';
2017-07-17 23:09:46 +02:00
import InlineSVG from 'react-inlinesvg';
2017-08-28 17:19:10 +02:00
import classNames from 'classnames';
2017-07-17 23:09:46 +02:00
const triangleUrl = require('../images/down-filled-triangle.svg');
const logoUrl = require('../images/p5js-logo-small.svg');
2016-06-24 00:29:55 +02:00
class Nav extends React.PureComponent {
2017-08-28 17:19:10 +02:00
constructor(props) {
super(props);
this.state = {
dropdownOpen: 'none'
};
2017-08-28 23:54:39 +02:00
this.handleFocus = this.handleFocus.bind(this);
this.handleBlur = this.handleBlur.bind(this);
this.clearHideTimeout = this.clearHideTimeout.bind(this);
2017-08-28 17:19:10 +02:00
}
2017-08-28 23:54:39 +02:00
setDropdown(dropdown) {
this.setState({
dropdownOpen: dropdown
});
2017-07-19 23:35:25 +02:00
}
2017-08-28 17:19:10 +02:00
toggleDropdown(dropdown) {
if (this.state.dropdownOpen === 'none') {
this.setState({
dropdownOpen: dropdown
});
} else {
this.setState({
dropdownOpen: 'none'
});
}
}
2017-08-28 23:54:39 +02: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);
}
render() {
2017-08-28 17:19:10 +02: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'
})
};
return (
<nav className="nav" role="navigation" title="main-navigation">
<ul className="nav__items-left" title="project-menu">
<li className="nav__item-logo">
2017-07-17 23:09:46 +02:00
<InlineSVG src={logoUrl} alt="p5.js logo" />
</li>
2017-08-28 17:19:10 +02:00
<li className={navDropdownState.file}>
<button
onClick={this.toggleDropdown.bind(this, 'file')}
2017-08-28 23:54:39 +02:00
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
2017-08-28 17:19:10 +02:00
>
2017-07-25 21:35:18 +02:00
<span className="nav__item-header">File</span>
2017-07-17 23:09:46 +02:00
<InlineSVG src={triangleUrl} />
</button>
<ul className="nav__dropdown">
2017-07-25 21:35:18 +02:00
<li className="nav__dropdown-heading">
<span>File</span>
<InlineSVG src={triangleUrl} />
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
2017-07-17 23:09:46 +02:00
<button
onClick={() => {
if (!this.props.unsavedChanges) {
this.props.newProject();
} else if (this.props.warnIfUnsavedChanges()) {
this.props.newProject();
}
}}
2017-08-28 23:54:39 +02:00
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
2017-07-17 23:09:46 +02:00
>
New
</button>
</li>
2017-07-19 23:35:25 +02: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 23:54:39 +02:00
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
2017-07-19 23:35:25 +02:00
>
2017-07-17 23:09:46 +02:00
Save
</button>
2017-07-19 23:35:25 +02:00
</li> }
{ this.props.project.id && this.props.user.authenticated &&
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<button
onClick={this.props.cloneProject}
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
>
2017-07-17 23:09:46 +02:00
Duplicate
</button>
2017-07-19 23:35:25 +02:00
</li> }
{ this.props.project.id &&
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<button
onClick={this.props.showShareModal}
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
>
2017-07-19 23:35:25 +02:00
Share
2017-07-17 23:09:46 +02:00
</button>
2017-07-19 23:35:25 +02:00
</li> }
{ this.props.project.id &&
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<button
onClick={() => this.props.exportProjectAsZip(this.props.project.id)}
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
>
2017-07-17 23:09:46 +02:00
Download
</button>
2017-07-19 23:35:25 +02:00
</li> }
{ this.props.user.authenticated &&
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<Link
to={`/${this.props.user.username}/sketches`}
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
>
2017-07-19 23:35:25 +02:00
Open
</Link>
</li> }
<li className="nav__dropdown-item">
<Link
to="/p5/sketches"
2017-08-28 23:54:39 +02:00
onFocus={this.handleFocus.bind(this, 'file')}
onBlur={this.handleBlur}
2017-07-19 23:35:25 +02:00
>
Examples
</Link>
2017-07-17 23:09:46 +02:00
</li>
</ul>
</li>
2017-08-28 17:19:10 +02:00
<li className={navDropdownState.edit}>
2017-08-28 23:54:39 +02:00
<button
onClick={this.toggleDropdown.bind(this, 'edit')}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
>
2017-07-25 21:35:18 +02:00
<span className="nav__item-header">Edit</span>
2017-07-17 23:09:46 +02:00
<InlineSVG src={triangleUrl} />
</button>
<ul className="nav__dropdown">
2017-07-25 21:35:18 +02:00
<li className="nav__dropdown-heading">
<span>Edit</span>
<InlineSVG src={triangleUrl} />
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
2017-09-01 18:40:15 +02:00
<button
onClick={() => this.props.cmController.tidyCode()}
onFocus={this.handleFocus.bind(this, 'edit')}
onBlur={this.handleBlur}
>
Tidy Code
</button>
2017-07-17 23:09:46 +02:00
</li>
2017-07-25 21:35:18 +02:00
<li className="nav__dropdown-item">
2017-09-01 18:40:15 +02:00
<button
onClick={() => this.props.cmController.showFind()}
onFocus={this.handleFocus.bind(this, 'edit')}
onBlur={this.handleBlur}
>
Find
</button>
2017-07-17 23:09:46 +02:00
</li>
</ul>
</li>
2017-09-01 18:40:15 +02:00
{/*
2017-08-28 17:19:10 +02:00
<li className={navDropdownState.sketch}>
2017-08-28 23:54:39 +02:00
<button
onClick={this.toggleDropdown.bind(this, 'sketch')}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
>
2017-07-25 21:35:18 +02:00
<span className="nav__item-header">Sketch</span>
2017-07-17 23:09:46 +02:00
<InlineSVG src={triangleUrl} />
</button>
<ul className="nav__dropdown">
2017-07-25 21:35:18 +02:00
<li className="nav__dropdown-heading">
<span>Sketch</span>
<InlineSVG src={triangleUrl} />
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
2017-07-17 23:09:46 +02:00
Run
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
2017-07-17 23:09:46 +02:00
Stop
</li>
</ul>
</li>
*/}
2017-08-28 17:19:10 +02:00
<li className={navDropdownState.help}>
2017-08-28 23:54:39 +02:00
<button
onClick={this.toggleDropdown.bind(this, 'help')}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
>
2017-07-25 21:35:18 +02:00
<span className="nav__item-header">Help</span>
2017-07-17 23:09:46 +02:00
<InlineSVG src={triangleUrl} />
</button>
<ul className="nav__dropdown">
2017-07-25 21:35:18 +02:00
<li className="nav__dropdown-heading">
<span>Help</span>
<InlineSVG src={triangleUrl} />
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
<button onClick={this.props.showKeyboardShortcutModal}>
Keyboard Shortcuts
</button>
2017-07-17 23:09:46 +02:00
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
<a
href="https://p5js.org/reference/"
target="_blank"
rel="noopener noreferrer"
2017-08-28 23:54:39 +02:00
onFocus={this.handleFocus.bind(this, 'help')}
onBlur={this.handleBlur}
2017-07-19 23:35:25 +02:00
>Reference</a>
2017-07-17 23:09:46 +02:00
</li>
2017-07-19 23:35:25 +02:00
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<Link
to="/about"
onFocus={this.handleFocus.bind(this, 'help')}
onBlur={this.handleBlur}
>
2017-07-19 23:35:25 +02:00
About
</Link>
2017-07-17 23:09:46 +02:00
</li>
</ul>
</li>
</ul>
2017-07-25 21:35:18 +02: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 17:19:10 +02:00
<li className={navDropdownState.account}>
<button
className="nav__item-header"
onClick={this.toggleDropdown.bind(this, 'account')}
2017-08-28 23:54:39 +02:00
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
2017-08-28 17:19:10 +02:00
>
My Account
</button>
2017-07-25 21:35:18 +02:00
<InlineSVG src={triangleUrl} />
<ul className="nav__dropdown">
<li className="nav__dropdown-heading">
2017-08-28 17:19:10 +02:00
<span>My Account</span>
2017-07-25 21:35:18 +02:00
<InlineSVG src={triangleUrl} />
</li>
2017-07-25 21:35:18 +02:00
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<Link
to={`/${this.props.user.username}/sketches`}
onFocus={this.handleFocus.bind(this, 'account')}
onBlur={this.handleBlur}
>
2017-07-25 21:35:18 +02:00
My sketches
</Link>
</li>
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<Link
to={`/${this.props.user.username}/assets`}
onFocus={this.handleFocus.bind(this, 'account')}
onBlur={this.handleBlur}
>
2017-07-25 21:35:18 +02:00
My assets
</Link>
</li>
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<Link
to={`/${this.props.user.username}/account`}
onFocus={this.handleFocus.bind(this, 'account')}
onBlur={this.handleBlur}
>
2017-07-25 21:35:18 +02:00
Settings
</Link>
</li>
<li className="nav__dropdown-item">
2017-08-28 23:54:39 +02:00
<button
onClick={this.props.logoutUser}
onFocus={this.handleFocus.bind(this, 'account')}
onBlur={this.handleBlur}
>
2017-07-25 21:35:18 +02:00
Log out
</button>
</li>
</ul>
</li>
</ul> }
{/*
<div className="nav__announce">
This is a preview version of the editor, that has not yet been officially released.
2017-06-06 04:33:32 +02: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>.
Please use with caution.
</div>
*/}
</nav>
);
}
2016-06-24 00:29:55 +02:00
}
Nav.propTypes = {
newProject: PropTypes.func.isRequired,
saveProject: PropTypes.func.isRequired,
2016-07-15 19:11:50 +02:00
exportProjectAsZip: PropTypes.func.isRequired,
2016-07-15 19:36:33 +02:00
cloneProject: PropTypes.func.isRequired,
user: PropTypes.shape({
authenticated: PropTypes.bool.isRequired,
username: PropTypes.string,
id: PropTypes.string
2016-08-18 00:35:15 +02:00
}).isRequired,
project: PropTypes.shape({
id: PropTypes.string,
owner: PropTypes.shape({
id: PropTypes.string
})
2016-08-28 02:46:20 +02:00
}),
2016-08-28 03:52:00 +02:00
logoutUser: PropTypes.func.isRequired,
showShareModal: PropTypes.func.isRequired,
showErrorModal: PropTypes.func.isRequired,
unsavedChanges: PropTypes.bool.isRequired,
warnIfUnsavedChanges: PropTypes.func.isRequired,
2017-09-01 18:40:15 +02:00
showKeyboardShortcutModal: PropTypes.func.isRequired,
cmController: PropTypes.shape({
tidyCode: PropTypes.func,
showFind: PropTypes.func
})
};
Nav.defaultProps = {
project: {
id: undefined,
owner: undefined
2017-09-01 18:40:15 +02:00
},
cmController: {}
};
2016-06-24 00:29:55 +02:00
export default Nav;