p5.js-web-editor/client/modules/IDE/components/Preferences.jsx

338 lines
12 KiB
React
Raw Normal View History

import React, { PropTypes } from 'react';
import InlineSVG from 'react-inlinesvg';
import classNames from 'classnames';
// import { bindActionCreators } from 'redux';
// import { connect } from 'react-redux';
// import * as PreferencesActions from '../actions/preferences';
2016-06-24 00:29:55 +02:00
const exitUrl = require('../../../images/exit.svg');
const plusUrl = require('../../../images/plus.svg');
const minusUrl = require('../../../images/minus.svg');
2016-09-01 05:07:43 +02:00
const beepUrl = require('../../../sounds/audioAlert.mp3');
// import { debounce } from 'lodash';
2016-06-24 00:29:55 +02:00
class Preferences extends React.Component {
2016-08-09 22:15:28 +02:00
constructor(props) {
super(props);
this.handleUpdateAutosave = this.handleUpdateAutosave.bind(this);
this.handleUpdateFont = this.handleUpdateFont.bind(this);
this.handleUpdateIndentation = this.handleUpdateIndentation.bind(this);
this.handleLintWarning = this.handleLintWarning.bind(this);
2016-08-09 22:15:28 +02:00
}
handleUpdateFont(event) {
let value = parseInt(event.target.value, 10);
if (isNaN(value)) {
value = 16;
}
this.props.setFontSize(value);
}
2016-07-06 17:27:39 +02:00
handleUpdateIndentation(event) {
let value = parseInt(event.target.value, 10);
if (isNaN(value)) {
value = 2;
}
this.props.setIndentation(value);
}
2016-07-06 17:27:39 +02:00
2016-08-09 22:15:28 +02:00
handleUpdateAutosave(event) {
const value = event.target.value === 'true';
this.props.setAutosave(value);
}
2016-08-11 20:09:59 +02:00
handleLintWarning(event) {
const value = event.target.value === 'true';
this.props.setLintWarning(value);
}
render() {
2016-09-01 05:07:43 +02:00
const beep = new Audio(beepUrl);
const preferencesContainerClass = classNames({
preferences: true,
'preferences--selected': this.props.isVisible
});
2016-08-29 20:39:23 +02:00
return (
<section className={preferencesContainerClass} tabIndex="0" title="preference-menu">
<div className="preferences__heading">
<h2 className="preferences__title">Preferences</h2>
<button
className="preferences__exit-button"
onClick={this.props.closePreferences}
title="exit"
aria-label="exit preferences"
>
<InlineSVG src={exitUrl} alt="Exit Preferences" />
</button>
2016-07-11 14:44:27 +02:00
</div>
<div className="preference">
<h4 className="preference__title">Text Size</h4>
<button
className="preference__minus-button"
onClick={() => this.props.setFontSize(this.props.fontSize - 2)}
aria-label="decrease font size"
>
<InlineSVG src={minusUrl} alt="Decrease Font Size" />
<h6 className="preference__label">Decrease</h6>
</button>
<input
className="preference__value"
aria-live="status"
aria-live="polite"
2016-08-12 02:26:14 +02:00
aria-atomic="true"
role="status"
value={this.props.fontSize}
onChange={this.handleUpdateFont}
ref="fontSizeInput"
onClick={() => {
this.refs.fontSizeInput.select();
}}
>
</input>
<button
className="preference__plus-button"
onClick={() => this.props.setFontSize(this.props.fontSize + 2)}
aria-label="increase font size"
>
<InlineSVG src={plusUrl} alt="Increase Font Size" />
<h6 className="preference__label">Increase</h6>
</button>
</div>
<div className="preference">
<h4 className="preference__title">Indentation Amount</h4>
<button
className="preference__minus-button"
onClick={() => this.props.setIndentation(this.props.indentationAmount - 2)}
aria-label="decrease indentation amount"
>
<InlineSVG src={minusUrl} alt="DecreaseIndentation Amount" />
<h6 className="preference__label">Decrease</h6>
</button>
<input
className="preference__value"
aria-live="status"
aria-live="polite"
2016-08-12 02:26:14 +02:00
aria-atomic="true"
role="status"
value={this.props.indentationAmount}
onChange={this.handleUpdateIndentation}
ref="indentationInput"
onClick={() => {
this.refs.indentationInput.select();
}}
>
</input>
<button
className="preference__plus-button"
onClick={() => this.props.setIndentation(this.props.indentationAmount + 2)}
aria-label="increase indentation amount"
>
<InlineSVG src={plusUrl} alt="IncreaseIndentation Amount" />
<h6 className="preference__label">Increase</h6>
</button>
<div className="preference__vertical-list">
2016-08-29 20:39:23 +02:00
<input
type="radio"
2016-08-29 22:36:35 +02:00
onChange={this.props.indentWithSpace}
2016-08-29 20:39:23 +02:00
aria-label="indentation with space"
name="indentation"
id="indentation-space"
className="preference__radio-button"
value="Spaces"
checked={!this.props.isTabIndent}
/>
<label htmlFor="indentation-space" className="preference__option">Spaces</label>
<input
type="radio"
2016-08-29 22:36:35 +02:00
onChange={this.props.indentWithTab}
2016-08-29 20:39:23 +02:00
aria-label="indentation with tab"
name="indentation"
id="indentation-tab"
className="preference__radio-button"
value="Tabs"
checked={this.props.isTabIndent}
/>
<label htmlFor="indentation-tab" className="preference__option">Tabs</label>
</div>
</div>
2016-08-09 22:15:28 +02:00
<div className="preference">
<h4 className="preference__title">Autosave</h4>
2016-08-09 23:29:17 +02:00
<div className="preference__options">
2016-08-25 23:46:30 +02:00
<input
type="radio"
2016-08-29 22:36:35 +02:00
onChange={() => this.props.setAutosave(true)}
2016-08-09 23:29:17 +02:00
aria-label="autosave on"
2016-08-25 23:46:30 +02:00
name="autosave"
id="autosave-on"
className="preference__radio-button"
value="On"
checked={this.props.autosave}
/>
2016-08-29 20:39:23 +02:00
<label htmlFor="autosave-on" className="preference__option">On</label>
2016-08-25 23:46:30 +02:00
<input
type="radio"
2016-08-29 22:36:35 +02:00
onChange={() => this.props.setAutosave(false)}
2016-08-09 23:29:17 +02:00
aria-label="autosave off"
2016-08-25 23:46:30 +02:00
name="autosave"
id="autosave-off"
className="preference__radio-button"
value="Off"
checked={!this.props.autosave}
/>
2016-08-29 20:39:23 +02:00
<label htmlFor="autosave-off" className="preference__option">Off</label>
2016-08-09 23:29:17 +02:00
</div>
2016-08-09 22:15:28 +02:00
</div>
<div className="preference">
<h4 className="preference__title">Theme</h4>
<div className="preference__options">
<input
type="radio"
onChange={() => this.props.setTheme('light')}
aria-label="light theme on"
name="light theme"
id="light-theme-on"
className="preference__radio-button"
value="light"
checked={this.props.theme === 'light'}
/>
<label htmlFor="light-theme-on" className="preference__option">Light</label>
<input
type="radio"
onChange={() => this.props.setTheme('dark')}
aria-label="dark theme on"
name="dark theme"
id="dark-theme-on"
className="preference__radio-button"
value="dark"
checked={this.props.theme === 'dark'}
/>
<label htmlFor="dark-theme-on" className="preference__option">Dark</label>
<input
type="radio"
onChange={() => this.props.setTheme('contrast')}
aria-label="contrast theme on"
name="contrast theme"
id="contrast-theme-on"
className="preference__radio-button"
value="contrast"
checked={this.props.theme === 'contrast'}
/>
<label htmlFor="contrast-theme-on" className="preference__option">High Contrast</label>
</div>
</div>
2016-08-12 20:19:23 +02:00
<div className="preference">
2016-08-11 20:09:59 +02:00
<h4 className="preference__title">Lint Warning Sound</h4>
<div className="preference__options">
2016-08-25 23:46:30 +02:00
<input
type="radio"
2016-08-29 22:36:35 +02:00
onChange={() => this.props.setLintWarning(true)}
2016-08-11 20:09:59 +02:00
aria-label="lint warning on"
2016-08-25 23:46:30 +02:00
name="lint warning"
id="lint-warning-on"
className="preference__radio-button"
value="On"
checked={this.props.lintWarning}
/>
2016-08-29 20:39:23 +02:00
<label htmlFor="lint-warning-on" className="preference__option">On</label>
2016-08-25 23:46:30 +02:00
<input
type="radio"
2016-08-29 22:36:35 +02:00
onChange={() => this.props.setLintWarning(false)}
2016-08-11 20:09:59 +02:00
aria-label="lint warning off"
2016-08-25 23:46:30 +02:00
name="lint warning"
id="lint-warning-off"
className="preference__radio-button"
value="Off"
checked={!this.props.lintWarning}
/>
2016-08-29 20:39:23 +02:00
<label htmlFor="lint-warning-off" className="preference__option">Off</label>
2016-08-11 20:09:59 +02:00
</div>
2016-09-01 05:07:43 +02:00
<button
className="preference__preview-button"
onClick={() => beep.play()}
aria-label="preview sound"
>
Preview Sound
</button>
2016-08-11 20:09:59 +02:00
</div>
2016-08-12 21:50:33 +02:00
<div className="preference">
2016-08-19 21:51:41 +02:00
<h4 className="preference__title">Accessible Text-based Canvas</h4>
<h6 className="preference__subtitle">Used with screen reader</h6>
2016-08-25 23:46:30 +02:00
2016-08-12 21:50:33 +02:00
<div className="preference__options">
2016-08-25 23:46:30 +02:00
<input
type="radio"
onChange={() => this.props.setTextOutput(1)}
2016-08-12 21:50:33 +02:00
aria-label="text output on"
2016-08-25 23:46:30 +02:00
name="text output"
id="text-output-on"
className="preference__radio-button"
value="On"
checked={Boolean(this.props.textOutput === 1)}
2016-08-25 23:46:30 +02:00
/>
<label htmlFor="text-output-on" className="preference__option">Plain-Text</label>
2016-08-25 23:46:30 +02:00
<input
type="radio"
onChange={() => this.props.setTextOutput(2)}
aria-label="grid output on"
name="grid output"
id="grid-output-on"
className="preference__radio-button"
value="Grid On"
checked={Boolean(this.props.textOutput === 2)}
/>
<label htmlFor="grid-output-on" className="preference__option">Table-Text</label>
<input
type="radio"
onChange={() => this.props.setTextOutput(3)}
aria-label="sound output on"
name="sound output"
id="sound-output-on"
className="preference__radio-button"
value="On"
checked={Boolean(this.props.textOutput === 3)}
/>
<label htmlFor="sound-output-on" className="preference__option">Sound</label>
<input
type="radio"
onChange={() => this.props.setTextOutput(0)}
2016-08-12 21:50:33 +02:00
aria-label="text output off"
2016-08-25 23:46:30 +02:00
name="text output"
id="text-output-off"
className="preference__radio-button"
value="Off"
checked={!Boolean(this.props.textOutput)}
2016-08-25 23:46:30 +02:00
/>
2016-08-29 20:39:23 +02:00
<label htmlFor="text-output-off" className="preference__option">Off</label>
2016-08-25 23:46:30 +02:00
2016-08-12 21:50:33 +02:00
</div>
</div>
</section>
);
}
2016-06-24 00:29:55 +02:00
}
Preferences.propTypes = {
isVisible: PropTypes.bool.isRequired,
closePreferences: PropTypes.func.isRequired,
fontSize: PropTypes.number.isRequired,
2016-07-06 17:27:39 +02:00
indentationAmount: PropTypes.number.isRequired,
setIndentation: PropTypes.func.isRequired,
2016-07-11 04:52:48 +02:00
indentWithSpace: PropTypes.func.isRequired,
indentWithTab: PropTypes.func.isRequired,
isTabIndent: PropTypes.bool.isRequired,
2016-08-09 22:15:28 +02:00
setFontSize: PropTypes.func.isRequired,
autosave: PropTypes.bool.isRequired,
2016-08-11 20:09:59 +02:00
setAutosave: PropTypes.func.isRequired,
textOutput: PropTypes.number.isRequired,
2016-08-12 21:50:33 +02:00
setTextOutput: PropTypes.func.isRequired,
2016-08-11 20:09:59 +02:00
lintWarning: PropTypes.bool.isRequired,
setLintWarning: PropTypes.func.isRequired,
theme: PropTypes.string.isRequired,
setTheme: PropTypes.func.isRequired
};
export default Preferences;