2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2018-11-15 19:37:44 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { withRouter } from 'react-router';
|
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';
|
2018-11-15 19:37:44 +00:00
|
|
|
import * as IDEActions from '../modules/IDE/actions/ide';
|
2019-09-05 18:56:18 +00:00
|
|
|
import * as toastActions from '../modules/IDE/actions/toast';
|
2019-02-25 20:11:07 +00:00
|
|
|
import * as projectActions from '../modules/IDE/actions/project';
|
|
|
|
import { setAllAccessibleOutput } from '../modules/IDE/actions/preferences';
|
|
|
|
import { logoutUser } from '../modules/User/actions';
|
2017-07-17 21:09:46 +00:00
|
|
|
|
2019-01-16 22:56:18 +00:00
|
|
|
import { metaKeyName, } from '../utils/metaKey';
|
2017-09-01 17:38:40 +00:00
|
|
|
|
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
|
|
|
|
2018-12-11 21:21:37 +00:00
|
|
|
const __process = (typeof global !== 'undefined' ? global : window).process;
|
|
|
|
|
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);
|
2018-03-08 21:34:21 +00:00
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
this.handleClickOutside = this.handleClickOutside.bind(this);
|
2019-03-17 09:19:45 +00:00
|
|
|
this.handleSave = this.handleSave.bind(this);
|
|
|
|
this.handleNew = this.handleNew.bind(this);
|
|
|
|
this.handleDuplicate = this.handleDuplicate.bind(this);
|
|
|
|
this.handleShare = this.handleShare.bind(this);
|
|
|
|
this.handleDownload = this.handleDownload.bind(this);
|
|
|
|
this.handleFind = this.handleFind.bind(this);
|
|
|
|
this.handleAddFile = this.handleAddFile.bind(this);
|
|
|
|
this.handleAddFolder = this.handleAddFolder.bind(this);
|
|
|
|
this.handleFindNext = this.handleFindNext.bind(this);
|
|
|
|
this.handleRun = this.handleRun.bind(this);
|
|
|
|
this.handleFindPrevious = this.handleFindPrevious.bind(this);
|
|
|
|
this.handleStop = this.handleStop.bind(this);
|
2019-04-05 21:14:00 +00:00
|
|
|
this.handleStartAccessible = this.handleStartAccessible.bind(this);
|
2019-03-17 09:19:45 +00:00
|
|
|
this.handleStopAccessible = this.handleStopAccessible.bind(this);
|
|
|
|
this.handleKeyboardShortcuts = this.handleKeyboardShortcuts.bind(this);
|
|
|
|
this.handleLogout = this.handleLogout.bind(this);
|
2019-03-26 16:00:43 +00:00
|
|
|
this.toggleDropdownForFile = this.toggleDropdown.bind(this, 'file');
|
|
|
|
this.handleFocusForFile = this.handleFocus.bind(this, 'file');
|
|
|
|
this.setDropdownForNone = this.setDropdown.bind(this, 'none');
|
|
|
|
this.toggleDropdownForEdit = this.toggleDropdown.bind(this, 'edit');
|
|
|
|
this.handleFocusForEdit = this.handleFocus.bind(this, 'edit');
|
|
|
|
this.toggleDropdownForSketch = this.toggleDropdown.bind(this, 'sketch');
|
|
|
|
this.handleFocusForSketch = this.handleFocus.bind(this, 'sketch');
|
|
|
|
this.toggleDropdownForHelp = this.toggleDropdown.bind(this, 'help');
|
|
|
|
this.handleFocusForHelp = this.handleFocus.bind(this, 'help');
|
|
|
|
this.toggleDropdownForAccount = this.toggleDropdown.bind(this, 'account');
|
|
|
|
this.handleFocusForAccount = this.handleFocus.bind(this, 'account');
|
2019-03-27 16:50:55 +00:00
|
|
|
this.closeDropDown = this.closeDropDown.bind(this);
|
2018-03-08 21:34:21 +00:00
|
|
|
}
|
|
|
|
|
2019-03-27 16:50:55 +00:00
|
|
|
componentDidMount() {
|
2018-03-08 21:34:21 +00:00
|
|
|
document.addEventListener('mousedown', this.handleClick, false);
|
2019-03-27 16:50:55 +00:00
|
|
|
document.addEventListener('keydown', this.closeDropDown, false);
|
2018-03-08 21:34:21 +00:00
|
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
|
|
document.removeEventListener('mousedown', this.handleClick, false);
|
2019-03-27 16:50:55 +00:00
|
|
|
document.removeEventListener('keydown', this.closeDropDown, false);
|
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
|
|
|
}
|
|
|
|
|
2019-03-27 16:50:55 +00:00
|
|
|
closeDropDown(e) {
|
|
|
|
if (e.keyCode === 27) {
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-08 21:34:21 +00:00
|
|
|
handleClick(e) {
|
2019-03-27 16:50:55 +00:00
|
|
|
if (!this.node) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (this.node && this.node.contains(e.target)) {
|
2018-03-08 21:34:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.handleClickOutside();
|
|
|
|
}
|
|
|
|
|
2019-03-17 09:19:45 +00:00
|
|
|
handleNew() {
|
|
|
|
if (!this.props.unsavedChanges) {
|
2019-09-05 18:56:18 +00:00
|
|
|
this.props.showToast(1500);
|
|
|
|
this.props.setToastText('Opened new sketch.');
|
2019-03-17 09:19:45 +00:00
|
|
|
this.props.newProject();
|
|
|
|
} else if (this.props.warnIfUnsavedChanges()) {
|
2019-09-05 18:56:18 +00:00
|
|
|
this.props.showToast(1500);
|
|
|
|
this.props.setToastText('Opened new sketch.');
|
2019-03-17 09:19:45 +00:00
|
|
|
this.props.newProject();
|
|
|
|
}
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSave() {
|
|
|
|
if (this.props.user.authenticated) {
|
|
|
|
this.props.saveProject(this.props.cmController.getContent());
|
|
|
|
} else {
|
|
|
|
this.props.showErrorModal('forceAuthentication');
|
|
|
|
}
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleFind() {
|
|
|
|
this.props.cmController.showFind();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleFindNext() {
|
|
|
|
this.props.cmController.findNext();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleFindPrevious() {
|
|
|
|
this.props.cmController.findPrev();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleAddFile() {
|
2019-10-08 20:36:38 +00:00
|
|
|
this.props.newFile(this.props.rootFile.id);
|
2019-03-17 09:19:45 +00:00
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleAddFolder() {
|
2019-10-08 20:36:38 +00:00
|
|
|
this.props.newFolder(this.props.rootFile.id);
|
2019-03-17 09:19:45 +00:00
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRun() {
|
|
|
|
this.props.startSketch();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleStop() {
|
|
|
|
this.props.stopSketch();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleStartAccessible() {
|
|
|
|
this.props.setAllAccessibleOutput(true);
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleStopAccessible() {
|
|
|
|
this.props.setAllAccessibleOutput(false);
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyboardShortcuts() {
|
|
|
|
this.props.showKeyboardShortcutModal();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleLogout() {
|
|
|
|
this.props.logoutUser();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDownload() {
|
|
|
|
this.props.autosaveProject();
|
2019-10-01 20:32:07 +00:00
|
|
|
projectActions.exportProjectAsZip(this.props.project.id);
|
2019-03-17 09:19:45 +00:00
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDuplicate() {
|
|
|
|
this.props.cloneProject();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleShare() {
|
|
|
|
this.props.showShareModal();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
2018-03-08 21:34:21 +00:00
|
|
|
handleClickOutside() {
|
|
|
|
this.setState({
|
|
|
|
dropdownOpen: 'none'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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 (
|
2018-05-05 00:43:31 +00:00
|
|
|
<nav className="nav" title="main-navigation" ref={(node) => { this.node = node; }}>
|
2018-04-03 00:58:21 +00:00
|
|
|
<ul className="nav__items-left" title="project-menu">
|
2017-08-30 21:22:36 +00:00
|
|
|
<li className="nav__item-logo">
|
2019-03-28 18:21:43 +00:00
|
|
|
<InlineSVG src={logoUrl} alt="p5.js logo" className="svg__logo" />
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.file}>
|
|
|
|
<button
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.toggleDropdownForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2019-03-27 16:50:55 +00:00
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('file');
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 15:19:10 +00:00
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">File</span>
|
2017-10-11 16:56:44 +00:00
|
|
|
<InlineSVG className="nav__item-header-triangle" src={triangleUrl} />
|
2017-07-17 21:09:46 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-07-17 21:09:46 +00:00
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleNew}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2017-07-17 21:09:46 +00:00
|
|
|
>
|
|
|
|
New
|
|
|
|
</button>
|
|
|
|
</li>
|
2018-12-11 21:21:37 +00:00
|
|
|
{ __process.env.LOGIN_ENABLED && (!this.props.project.owner || this.isUserOwner()) &&
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleSave}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2017-07-19 21:35:25 +00:00
|
|
|
>
|
2017-07-17 21:09:46 +00:00
|
|
|
Save
|
2017-09-14 20:58:59 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+s</span>
|
2017-07-17 21:09:46 +00:00
|
|
|
</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
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleDuplicate}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
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
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleShare}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
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
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleDownload}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
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`}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
2017-07-19 21:35:25 +00:00
|
|
|
Open
|
|
|
|
</Link>
|
|
|
|
</li> }
|
2019-01-25 19:12:40 +00:00
|
|
|
{ __process.env.EXAMPLES_ENABLED &&
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to="/p5/sketches"
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForFile}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2017-07-19 21:35:25 +00:00
|
|
|
>
|
|
|
|
Examples
|
|
|
|
</Link>
|
2019-01-25 19:12:40 +00:00
|
|
|
</li> }
|
2017-07-17 21:09:46 +00:00
|
|
|
</ul>
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.edit}>
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.toggleDropdownForEdit}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2019-03-27 16:50:55 +00:00
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('edit');
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">Edit</span>
|
2017-10-11 16:56:44 +00:00
|
|
|
<InlineSVG className="nav__item-header-triangle" src={triangleUrl} />
|
2017-07-17 21:09:46 +00:00
|
|
|
</button>
|
2019-03-27 16:50:55 +00:00
|
|
|
<ul className="nav__dropdown" >
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-09-01 16:40:15 +00:00
|
|
|
<button
|
2017-10-11 16:56:44 +00:00
|
|
|
onClick={() => {
|
|
|
|
this.props.cmController.tidyCode();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForEdit}
|
2017-09-01 16:40:15 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Tidy Code
|
2017-09-14 20:58:59 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+Tab</span>
|
2017-09-01 16:40:15 +00:00
|
|
|
</button>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
2017-07-25 19:35:18 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-09-01 16:40:15 +00:00
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleFind}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForEdit}
|
2017-09-01 16:40:15 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Find
|
2017-09-14 20:58:59 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+F</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleFindNext}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForEdit}
|
2017-09-14 20:58:59 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Find Next
|
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+G</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleFindPrevious}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForEdit}
|
2017-09-14 20:58:59 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Find Previous
|
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+G</span>
|
2017-09-01 16:40:15 +00:00
|
|
|
</button>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.sketch}>
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.toggleDropdownForSketch}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2019-03-27 16:50:55 +00:00
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('sketch');
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
<span className="nav__item-header">Sketch</span>
|
2017-10-11 16:56:44 +00:00
|
|
|
<InlineSVG className="nav__item-header-triangle" src={triangleUrl} />
|
2017-07-17 21:09:46 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2018-11-15 19:37:44 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleAddFile}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForSketch}
|
2018-11-15 19:37:44 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Add File
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleAddFolder}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForSketch}
|
2018-11-15 19:37:44 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Add Folder
|
|
|
|
</button>
|
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-09-14 21:57:09 +00:00
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleRun}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForSketch}
|
2017-09-14 21:57:09 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Run
|
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+Enter</span>
|
|
|
|
</button>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-09-14 21:57:09 +00:00
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleStop}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForSketch}
|
2017-09-14 21:57:09 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Stop
|
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+Enter</span>
|
|
|
|
</button>
|
2017-07-17 21:09:46 +00:00
|
|
|
</li>
|
2019-04-03 18:28:33 +00:00
|
|
|
{/* <li className="nav__dropdown-item">
|
2017-09-15 16:10:25 +00:00
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleStartAccessible}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForSketch}
|
2017-09-15 16:10:25 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Start Accessible
|
2017-09-15 16:14:01 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+1</span>
|
2017-09-15 16:10:25 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleStopAccessible}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForSketch}
|
2017-09-15 16:10:25 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Stop Accessible
|
2017-09-15 16:14:01 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+2</span>
|
2017-09-15 16:10:25 +00:00
|
|
|
</button>
|
2019-04-03 18:28:33 +00:00
|
|
|
</li> */}
|
2017-07-17 21:09:46 +00:00
|
|
|
</ul>
|
|
|
|
</li>
|
2017-08-28 15:19:10 +00:00
|
|
|
<li className={navDropdownState.help}>
|
2017-08-28 21:54:39 +00:00
|
|
|
<button
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.toggleDropdownForHelp}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2019-03-27 16:50:55 +00:00
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('help');
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
2019-10-31 19:06:29 +00:00
|
|
|
<span className="nav__item-header">Help</span>
|
2017-10-11 16:56:44 +00:00
|
|
|
<InlineSVG className="nav__item-header-triangle" src={triangleUrl} />
|
2017-07-17 21:09:46 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
2017-07-19 21:35:25 +00:00
|
|
|
<li className="nav__dropdown-item">
|
2017-10-11 16:56:44 +00:00
|
|
|
<button
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForHelp}
|
2018-05-12 00:07:29 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleKeyboardShortcuts}
|
2017-10-11 16:56:44 +00:00
|
|
|
>
|
2017-08-30 21:22:36 +00:00
|
|
|
Keyboard Shortcuts
|
|
|
|
</button>
|
2017-07-17 21:09:46 +00:00
|
|
|
</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"
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForHelp}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2018-05-05 00:22:39 +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"
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForHelp}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
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>
|
2018-12-11 21:21:37 +00:00
|
|
|
{ __process.env.LOGIN_ENABLED && !this.props.user.authenticated &&
|
2017-07-25 19:35:18 +00:00
|
|
|
<ul className="nav__items-right" title="user-menu">
|
2019-06-11 21:46:37 +00:00
|
|
|
<li>
|
|
|
|
<Link to="/login">
|
|
|
|
<span className="nav__item-header">Log in</span>
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
<span className="nav__item-spacer">or</span>
|
|
|
|
<li>
|
|
|
|
<Link to="/signup">
|
|
|
|
<span className="nav__item-header">Sign up</span>
|
|
|
|
</Link>
|
2017-07-25 19:35:18 +00:00
|
|
|
</li>
|
|
|
|
</ul>}
|
2018-12-11 21:21:37 +00:00
|
|
|
{ __process.env.LOGIN_ENABLED && this.props.user.authenticated &&
|
2017-07-25 19:35:18 +00:00
|
|
|
<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"
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.toggleDropdownForAccount}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
2019-03-27 16:50:55 +00:00
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('account');
|
|
|
|
}
|
|
|
|
}}
|
2017-08-28 15:19:10 +00:00
|
|
|
>
|
|
|
|
My Account
|
2019-03-26 17:38:19 +00:00
|
|
|
<InlineSVG className="nav__item-header-triangle" src={triangleUrl} />
|
2017-08-28 15:19:10 +00:00
|
|
|
</button>
|
2017-07-25 19:35:18 +00:00
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-item">
|
2017-08-28 21:54:39 +00:00
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches`}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForAccount}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
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
|
2018-05-30 04:37:10 +00:00
|
|
|
to="/assets"
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForAccount}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
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
|
2018-05-30 04:37:10 +00:00
|
|
|
to="/account"
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForAccount}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
2019-03-26 16:00:43 +00:00
|
|
|
onClick={this.setDropdownForNone}
|
2017-08-28 21:54:39 +00:00
|
|
|
>
|
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
|
2019-03-17 09:19:45 +00:00
|
|
|
onClick={this.handleLogout}
|
2019-03-26 16:00:43 +00:00
|
|
|
onFocus={this.handleFocusForAccount}
|
2017-08-28 21:54:39 +00:00
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2017-07-25 19:35:18 +00:00
|
|
|
Log out
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul> }
|
2017-08-31 20:32:29 +00:00
|
|
|
{/*
|
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>
|
2017-08-31 20:32:29 +00:00
|
|
|
*/}
|
2017-02-22 19:29:35 +00:00
|
|
|
</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,
|
2019-09-05 18:56:18 +00:00
|
|
|
showToast: PropTypes.func.isRequired,
|
|
|
|
setToastText: PropTypes.func.isRequired,
|
2016-06-27 20:14:26 +00:00
|
|
|
saveProject: PropTypes.func.isRequired,
|
2018-02-13 16:28:06 +00:00
|
|
|
autosaveProject: 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,
|
2017-08-30 21:22:36 +00:00
|
|
|
warnIfUnsavedChanges: PropTypes.func.isRequired,
|
2017-09-01 16:40:15 +00:00
|
|
|
showKeyboardShortcutModal: PropTypes.func.isRequired,
|
|
|
|
cmController: PropTypes.shape({
|
|
|
|
tidyCode: PropTypes.func,
|
2017-09-14 20:58:59 +00:00
|
|
|
showFind: PropTypes.func,
|
|
|
|
findNext: PropTypes.func,
|
2019-02-25 21:45:20 +00:00
|
|
|
findPrev: PropTypes.func,
|
|
|
|
getContent: PropTypes.func
|
2017-09-14 21:57:09 +00:00
|
|
|
}),
|
|
|
|
startSketch: PropTypes.func.isRequired,
|
2017-09-15 16:10:25 +00:00
|
|
|
stopSketch: PropTypes.func.isRequired,
|
2018-11-15 19:37:44 +00:00
|
|
|
setAllAccessibleOutput: PropTypes.func.isRequired,
|
|
|
|
newFile: PropTypes.func.isRequired,
|
2019-10-08 20:36:38 +00:00
|
|
|
newFolder: PropTypes.func.isRequired,
|
2019-10-08 21:46:11 +00:00
|
|
|
rootFile: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired
|
|
|
|
}).isRequired
|
2017-02-22 19:29:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Nav.defaultProps = {
|
|
|
|
project: {
|
|
|
|
id: undefined,
|
|
|
|
owner: undefined
|
2017-09-01 16:40:15 +00:00
|
|
|
},
|
|
|
|
cmController: {}
|
2016-06-27 20:14:26 +00:00
|
|
|
};
|
|
|
|
|
2019-02-25 20:11:07 +00:00
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
project: state.project,
|
|
|
|
user: state.user,
|
2019-10-08 20:36:38 +00:00
|
|
|
unsavedChanges: state.ide.unsavedChanges,
|
|
|
|
rootFile: state.files.filter(file => file.name === 'root')[0]
|
2019-02-25 20:11:07 +00:00
|
|
|
};
|
2018-11-15 19:37:44 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 20:11:07 +00:00
|
|
|
const mapDispatchToProps = {
|
|
|
|
...IDEActions,
|
|
|
|
...projectActions,
|
2019-09-05 18:56:18 +00:00
|
|
|
...toastActions,
|
2019-02-25 20:11:07 +00:00
|
|
|
logoutUser,
|
|
|
|
setAllAccessibleOutput
|
|
|
|
};
|
|
|
|
|
|
|
|
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Nav));
|
2019-02-10 00:45:29 +00:00
|
|
|
export { Nav as NavComponent };
|