2019-06-04 12:58:13 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2019-05-24 09:59:56 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import LogoIcon from '../images/p5js-logo-small.svg';
|
|
|
|
import ArrowIcon from '../images/triangle-arrow-left.svg';
|
2019-05-24 09:59:56 +00:00
|
|
|
|
|
|
|
class NavBasic extends React.PureComponent {
|
2019-06-04 12:58:13 +00:00
|
|
|
static defaultProps = {
|
|
|
|
onBack: null
|
|
|
|
}
|
|
|
|
|
2019-05-24 09:59:56 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<nav className="nav" title="main-navigation" ref={(node) => { this.node = node; }}>
|
2020-04-09 04:23:42 +00:00
|
|
|
<ul className="nav__items-left">
|
2019-05-24 09:59:56 +00:00
|
|
|
<li className="nav__item-logo">
|
2020-05-05 23:03:58 +00:00
|
|
|
<LogoIcon role="img" aria-label="p5.js Logo" focusable="false" className="svg__logo" />
|
2019-05-24 09:59:56 +00:00
|
|
|
</li>
|
2019-06-04 12:58:13 +00:00
|
|
|
{ this.props.onBack && (
|
|
|
|
<li className="nav__item">
|
|
|
|
<button onClick={this.props.onBack}>
|
|
|
|
<span className="nav__item-header">
|
2020-05-05 23:03:58 +00:00
|
|
|
<ArrowIcon focusable="false" aria-hidden="true" />
|
2019-06-04 12:58:13 +00:00
|
|
|
</span>
|
|
|
|
Back to the editor
|
|
|
|
</button>
|
|
|
|
</li>)
|
|
|
|
}
|
2019-05-24 09:59:56 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-04 12:58:13 +00:00
|
|
|
NavBasic.propTypes = {
|
|
|
|
onBack: PropTypes.func,
|
|
|
|
};
|
2019-05-24 09:59:56 +00:00
|
|
|
|
|
|
|
export default NavBasic;
|