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';
|
2020-04-07 21:03:19 +00:00
|
|
|
import { Link } from 'react-router';
|
2017-08-28 15:19:10 +00:00
|
|
|
import classNames from 'classnames';
|
2020-07-06 09:36:45 +00:00
|
|
|
import { withTranslation } from 'react-i18next';
|
2020-08-27 15:00:04 +00:00
|
|
|
import { languageKeyToLabel } from '../i18n';
|
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';
|
2020-08-17 09:23:58 +00:00
|
|
|
import { setAllAccessibleOutput, setLanguage } from '../modules/IDE/actions/preferences';
|
2019-02-25 20:11:07 +00:00
|
|
|
import { logoutUser } from '../modules/User/actions';
|
2017-07-17 21:09:46 +00:00
|
|
|
|
2020-06-08 09:46:38 +00:00
|
|
|
import getConfig from '../utils/getConfig';
|
2019-01-16 22:56:18 +00:00
|
|
|
import { metaKeyName, } from '../utils/metaKey';
|
2017-09-01 17:38:40 +00:00
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import CaretLeftIcon from '../images/left-arrow.svg';
|
|
|
|
import TriangleIcon from '../images/down-filled-triangle.svg';
|
|
|
|
import LogoIcon from '../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);
|
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');
|
2020-07-06 09:36:45 +00:00
|
|
|
this.toggleDropdownForLang = this.toggleDropdown.bind(this, 'lang');
|
|
|
|
this.handleFocusForLang = this.handleFocus.bind(this, 'lang');
|
|
|
|
this.handleLangSelection = this.handleLangSelection.bind(this);
|
|
|
|
|
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() {
|
2019-09-19 17:38:27 +00:00
|
|
|
const { unsavedChanges, warnIfUnsavedChanges } = this.props;
|
|
|
|
if (!unsavedChanges) {
|
2019-09-05 18:56:18 +00:00
|
|
|
this.props.showToast(1500);
|
2020-07-31 13:20:42 +00:00
|
|
|
this.props.setToastText('Toast.OpenedNewSketch');
|
2019-03-17 09:19:45 +00:00
|
|
|
this.props.newProject();
|
2019-09-19 17:38:27 +00:00
|
|
|
} else if (warnIfUnsavedChanges && warnIfUnsavedChanges()) {
|
2019-09-05 18:56:18 +00:00
|
|
|
this.props.showToast(1500);
|
2020-07-31 13:20:42 +00:00
|
|
|
this.props.setToastText('Toast.OpenedNewSketch');
|
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');
|
|
|
|
}
|
|
|
|
|
2020-07-06 09:36:45 +00:00
|
|
|
handleLangSelection(event) {
|
2020-08-17 09:23:58 +00:00
|
|
|
this.props.setLanguage(event.target.value);
|
2020-07-06 09:36:45 +00:00
|
|
|
this.props.showToast(1500);
|
2020-07-31 13:20:42 +00:00
|
|
|
this.props.setToastText('Toast.LangChange');
|
2020-07-06 09:36:45 +00:00
|
|
|
this.setDropdown('none');
|
|
|
|
}
|
|
|
|
|
2019-03-17 09:19:45 +00:00
|
|
|
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() {
|
2020-04-07 21:03:19 +00:00
|
|
|
const { username } = this.props.params;
|
|
|
|
this.props.showShareModal(this.props.project.id, this.props.project.name, username);
|
2019-03-17 09:19:45 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-09-11 18:11:20 +00:00
|
|
|
renderDashboardMenu(navDropdownState) {
|
|
|
|
return (
|
2020-04-09 04:23:42 +00:00
|
|
|
<ul className="nav__items-left">
|
2019-09-11 18:11:20 +00:00
|
|
|
<li className="nav__item-logo">
|
2020-07-31 13:20:42 +00:00
|
|
|
<LogoIcon role="img" aria-label={this.props.t('Common.p5logoARIA')} focusable="false" className="svg__logo" />
|
2020-01-15 17:10:51 +00:00
|
|
|
</li>
|
|
|
|
<li className="nav__item nav__item--no-icon">
|
2019-09-11 20:46:56 +00:00
|
|
|
<Link to="/" className="nav__back-link">
|
2020-05-05 23:03:58 +00:00
|
|
|
<CaretLeftIcon className="nav__back-icon" focusable="false" aria-hidden="true" />
|
2020-01-15 17:10:51 +00:00
|
|
|
<span className="nav__item-header">
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.BackEditor')}
|
2020-01-15 17:10:51 +00:00
|
|
|
</span>
|
2019-09-11 18:11:20 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-11 17:06:30 +00:00
|
|
|
renderProjectMenu(navDropdownState) {
|
|
|
|
return (
|
2020-04-09 04:23:42 +00:00
|
|
|
<ul className="nav__items-left">
|
2019-09-11 17:06:30 +00:00
|
|
|
<li className="nav__item-logo">
|
2020-07-31 13:20:42 +00:00
|
|
|
<LogoIcon role="img" aria-label={this.props.t('Common.p5logoARIA')} focusable="false" className="svg__logo" />
|
2019-09-11 17:06:30 +00:00
|
|
|
</li>
|
|
|
|
<li className={navDropdownState.file}>
|
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdownForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('file');
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
<span className="nav__item-header">{this.props.t('Nav.File.Title')}</span>
|
2020-05-05 23:03:58 +00:00
|
|
|
<TriangleIcon className="nav__item-header-triangle" focusable="false" aria-hidden="true" />
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleNew}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.New')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
2020-06-08 09:46:38 +00:00
|
|
|
{ getConfig('LOGIN_ENABLED') && (!this.props.project.owner || this.isUserOwner()) &&
|
2019-09-11 17:06:30 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleSave}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Common.Save')}
|
2020-04-22 20:52:47 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+S</span>
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li> }
|
|
|
|
{ this.props.project.id && this.props.user.authenticated &&
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleDuplicate}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.Duplicate')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li> }
|
|
|
|
{ this.props.project.id &&
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleShare}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.Share')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li> }
|
|
|
|
{ this.props.project.id &&
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleDownload}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.Download')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li> }
|
|
|
|
{ this.props.user.authenticated &&
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches`}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.Open')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li> }
|
2020-06-08 09:46:38 +00:00
|
|
|
{getConfig('UI_COLLECTIONS_ENABLED') &&
|
2019-09-09 16:52:54 +00:00
|
|
|
this.props.user.authenticated &&
|
|
|
|
this.props.project.id &&
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches/${this.props.project.id}/add-to-collection`}
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.AddToCollection')}
|
2019-09-09 16:52:54 +00:00
|
|
|
</Link>
|
2019-10-02 14:37:08 +00:00
|
|
|
</li>}
|
2020-06-08 09:46:38 +00:00
|
|
|
{ getConfig('EXAMPLES_ENABLED') &&
|
2019-09-11 17:06:30 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to="/p5/sketches"
|
|
|
|
onFocus={this.handleFocusForFile}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.File.Examples')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li> }
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li className={navDropdownState.edit}>
|
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdownForEdit}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('edit');
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
<span className="nav__item-header">{this.props.t('Nav.Edit.Title')}</span>
|
2020-05-05 23:03:58 +00:00
|
|
|
<TriangleIcon className="nav__item-header-triangle" focusable="false" aria-hidden="true" />
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown" >
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={() => {
|
|
|
|
this.props.cmController.tidyCode();
|
|
|
|
this.setDropdown('none');
|
|
|
|
}}
|
|
|
|
onFocus={this.handleFocusForEdit}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Edit.TidyCode')}
|
2019-09-11 17:06:30 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+Tab</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleFind}
|
|
|
|
onFocus={this.handleFocusForEdit}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Edit.Find')}
|
2019-09-11 17:06:30 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+F</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleFindNext}
|
|
|
|
onFocus={this.handleFocusForEdit}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Edit.FindNext')}
|
2019-09-11 17:06:30 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+G</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleFindPrevious}
|
|
|
|
onFocus={this.handleFocusForEdit}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Edit.FindPrevious')}
|
2019-09-11 17:06:30 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+G</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li className={navDropdownState.sketch}>
|
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdownForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('sketch');
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
<span className="nav__item-header">{this.props.t('Nav.Sketch.Title')}</span>
|
2020-05-05 23:03:58 +00:00
|
|
|
<TriangleIcon className="nav__item-header-triangle" focusable="false" aria-hidden="true" />
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleAddFile}
|
|
|
|
onFocus={this.handleFocusForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Sketch.AddFile')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleAddFolder}
|
|
|
|
onFocus={this.handleFocusForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Sketch.AddFolder')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleRun}
|
|
|
|
onFocus={this.handleFocusForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Sketch.Run')}
|
2019-09-11 17:06:30 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{metaKeyName}+Enter</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleStop}
|
|
|
|
onFocus={this.handleFocusForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Sketch.Stop')}
|
2019-09-11 17:06:30 +00:00
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+Enter</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
{/* <li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleStartAccessible}
|
|
|
|
onFocus={this.handleFocusForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Start Accessible
|
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+1</span>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleStopAccessible}
|
|
|
|
onFocus={this.handleFocusForSketch}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
|
|
|
Stop Accessible
|
|
|
|
<span className="nav__keyboard-shortcut">{'\u21E7'}+{metaKeyName}+2</span>
|
|
|
|
</button>
|
|
|
|
</li> */}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li className={navDropdownState.help}>
|
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdownForHelp}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('help');
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
<span className="nav__item-header">{this.props.t('Nav.Help.Title')}</span>
|
2020-05-05 23:03:58 +00:00
|
|
|
<TriangleIcon className="nav__item-header-triangle" focusable="false" aria-hidden="true" />
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onFocus={this.handleFocusForHelp}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.handleKeyboardShortcuts}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Help.KeyboardShortcuts')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/reference/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
onFocus={this.handleFocusForHelp}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
2020-07-31 13:20:42 +00:00
|
|
|
>{this.props.t('Nav.Help.Reference')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to="/about"
|
|
|
|
onFocus={this.handleFocusForHelp}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Help.About')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-06 09:36:45 +00:00
|
|
|
renderLanguageMenu(navDropdownState) {
|
|
|
|
return (
|
2020-08-27 15:00:04 +00:00
|
|
|
<React.Fragment>
|
2020-07-06 09:36:45 +00:00
|
|
|
<li className={navDropdownState.lang}>
|
|
|
|
<button
|
|
|
|
onClick={this.toggleDropdownForLang}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('lang');
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-08-27 15:00:04 +00:00
|
|
|
<span className="nav__item-header"> {languageKeyToLabel(this.props.language)}</span>
|
2020-07-06 09:36:45 +00:00
|
|
|
<TriangleIcon className="nav__item-header-triangle" focusable="false" aria-hidden="true" />
|
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onFocus={this.handleFocusForLang}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
value="it"
|
|
|
|
onClick={e => this.handleLangSelection(e)}
|
|
|
|
>
|
|
|
|
Italian (Test Fallback)
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onFocus={this.handleFocusForLang}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
value="en-US"
|
|
|
|
onClick={e => this.handleLangSelection(e)}
|
|
|
|
>English
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onFocus={this.handleFocusForLang}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
value="es-419"
|
|
|
|
onClick={e => this.handleLangSelection(e)}
|
|
|
|
>
|
|
|
|
Español
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2020-08-27 15:00:04 +00:00
|
|
|
</React.Fragment>
|
2020-07-06 09:36:45 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-11 17:06:30 +00:00
|
|
|
renderUnauthenticatedUserMenu(navDropdownState) {
|
|
|
|
return (
|
|
|
|
<ul className="nav__items-right" title="user-menu">
|
2020-08-27 15:00:04 +00:00
|
|
|
{getConfig('TRANSLATIONS_ENABLED') && this.renderLanguageMenu(navDropdownState)}
|
2019-09-19 17:38:27 +00:00
|
|
|
<li className="nav__item">
|
2020-04-22 21:06:05 +00:00
|
|
|
<Link to="/login" className="nav__auth-button">
|
2020-08-12 14:24:29 +00:00
|
|
|
<span className="nav__item-header">{this.props.t('Nav.Login')}</span>
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
2020-08-12 14:24:29 +00:00
|
|
|
<span className="nav__item-or">{this.props.t('Nav.LoginOr')}</span>
|
2019-09-19 17:38:27 +00:00
|
|
|
<li className="nav__item">
|
2020-04-22 21:06:05 +00:00
|
|
|
<Link to="/signup" className="nav__auth-button">
|
2020-08-12 14:24:29 +00:00
|
|
|
<span className="nav__item-header">{this.props.t('Nav.SignUp')}</span>
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderAuthenticatedUserMenu(navDropdownState) {
|
|
|
|
return (
|
|
|
|
<ul className="nav__items-right" title="user-menu">
|
2020-08-27 15:00:04 +00:00
|
|
|
{getConfig('TRANSLATIONS_ENABLED') && this.renderLanguageMenu(navDropdownState)}
|
2019-09-11 17:06:30 +00:00
|
|
|
<li className={navDropdownState.account}>
|
|
|
|
<button
|
|
|
|
className="nav__item-header"
|
|
|
|
onClick={this.toggleDropdownForAccount}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onFocus={this.clearHideTimeout}
|
|
|
|
onMouseOver={() => {
|
|
|
|
if (this.state.dropdownOpen !== 'none') {
|
|
|
|
this.setDropdown('account');
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-08-27 15:00:04 +00:00
|
|
|
<span>{this.props.t('Nav.Auth.Hello')}, {this.props.user.username}!</span>
|
2020-05-05 23:03:58 +00:00
|
|
|
<TriangleIcon className="nav__item-header-triangle" focusable="false" aria-hidden="true" />
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
<ul className="nav__dropdown">
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/sketches`}
|
|
|
|
onFocus={this.handleFocusForAccount}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Auth.MySketches')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
2020-06-08 09:46:38 +00:00
|
|
|
{getConfig('UI_COLLECTIONS_ENABLED') &&
|
2019-07-09 08:33:20 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/collections`}
|
|
|
|
onFocus={this.handleFocusForAccount}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Auth.MyCollections')}
|
2019-10-02 14:37:08 +00:00
|
|
|
</Link>
|
2019-07-09 08:33:20 +00:00
|
|
|
</li>
|
|
|
|
}
|
2019-09-11 17:06:30 +00:00
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to={`/${this.props.user.username}/assets`}
|
|
|
|
onFocus={this.handleFocusForAccount}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Auth.MyAssets')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<Link
|
|
|
|
to="/account"
|
|
|
|
onFocus={this.handleFocusForAccount}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
onClick={this.setDropdownForNone}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Preferences.Settings')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
<li className="nav__dropdown-item">
|
|
|
|
<button
|
|
|
|
onClick={this.handleLogout}
|
|
|
|
onFocus={this.handleFocusForAccount}
|
|
|
|
onBlur={this.handleBlur}
|
|
|
|
>
|
2020-07-31 13:20:42 +00:00
|
|
|
{this.props.t('Nav.Auth.LogOut')}
|
2019-09-11 17:06:30 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderUserMenu(navDropdownState) {
|
2020-06-08 09:46:38 +00:00
|
|
|
const isLoginEnabled = getConfig('LOGIN_ENABLED');
|
2019-09-11 17:06:30 +00:00
|
|
|
const isAuthenticated = this.props.user.authenticated;
|
|
|
|
|
|
|
|
if (isLoginEnabled && isAuthenticated) {
|
|
|
|
return this.renderAuthenticatedUserMenu(navDropdownState);
|
|
|
|
} else if (isLoginEnabled && !isAuthenticated) {
|
|
|
|
return this.renderUnauthenticatedUserMenu(navDropdownState);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-09-11 18:11:20 +00:00
|
|
|
renderLeftLayout(navDropdownState) {
|
|
|
|
switch (this.props.layout) {
|
|
|
|
case 'dashboard':
|
|
|
|
return this.renderDashboardMenu(navDropdownState);
|
|
|
|
case 'project':
|
|
|
|
default:
|
|
|
|
return this.renderProjectMenu(navDropdownState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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'
|
2020-07-06 09:36:45 +00:00
|
|
|
}),
|
|
|
|
lang: classNames({
|
|
|
|
'nav__item': true,
|
|
|
|
'nav__item--open': this.state.dropdownOpen === 'lang'
|
2017-08-28 15:19:10 +00:00
|
|
|
})
|
|
|
|
};
|
2019-09-11 18:11:20 +00:00
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
return (
|
2020-05-19 19:34:00 +00:00
|
|
|
<header>
|
|
|
|
<nav className="nav" title="main-navigation" ref={(node) => { this.node = node; }}>
|
|
|
|
{this.renderLeftLayout(navDropdownState)}
|
|
|
|
{this.renderUserMenu(navDropdownState)}
|
|
|
|
</nav>
|
|
|
|
</header>
|
2017-02-22 19:29:35 +00:00
|
|
|
);
|
|
|
|
}
|
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,
|
2020-04-07 21:03:19 +00:00
|
|
|
name: PropTypes.string,
|
2016-09-07 19:21:22 +00:00
|
|
|
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,
|
2019-09-19 17:38:27 +00:00
|
|
|
warnIfUnsavedChanges: PropTypes.func,
|
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-09-11 18:11:20 +00:00
|
|
|
newFolder: PropTypes.func.isRequired,
|
2019-10-22 21:35:20 +00:00
|
|
|
layout: PropTypes.oneOf(['dashboard', 'project']),
|
2019-10-08 21:46:11 +00:00
|
|
|
rootFile: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired
|
2020-04-07 21:03:19 +00:00
|
|
|
}).isRequired,
|
|
|
|
params: PropTypes.shape({
|
|
|
|
username: PropTypes.string
|
2020-07-06 09:36:45 +00:00
|
|
|
}),
|
2020-08-17 09:23:58 +00:00
|
|
|
t: PropTypes.func.isRequired,
|
|
|
|
setLanguage: PropTypes.func.isRequired,
|
2020-08-27 15:00:04 +00:00
|
|
|
language: PropTypes.string.isRequired,
|
2017-02-22 19:29:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Nav.defaultProps = {
|
|
|
|
project: {
|
|
|
|
id: undefined,
|
|
|
|
owner: undefined
|
2017-09-01 16:40:15 +00:00
|
|
|
},
|
2019-09-11 18:11:20 +00:00
|
|
|
cmController: {},
|
2019-09-19 17:38:27 +00:00
|
|
|
layout: 'project',
|
2020-04-07 21:03:19 +00:00
|
|
|
warnIfUnsavedChanges: undefined,
|
|
|
|
params: {
|
|
|
|
username: undefined
|
|
|
|
}
|
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,
|
2020-08-27 15:00:04 +00:00
|
|
|
rootFile: state.files.filter(file => file.name === 'root')[0],
|
|
|
|
language: state.preferences.language
|
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,
|
2020-08-17 09:23:58 +00:00
|
|
|
setAllAccessibleOutput,
|
|
|
|
setLanguage
|
2019-02-25 20:11:07 +00:00
|
|
|
};
|
|
|
|
|
2020-07-31 13:20:42 +00:00
|
|
|
export default withTranslation()(withRouter(connect(mapStateToProps, mapDispatchToProps)(Nav)));
|
2019-02-10 00:45:29 +00:00
|
|
|
export { Nav as NavComponent };
|