import React from 'react'; import {connect} from 'react-redux'; import classnames from 'classnames'; import {BANDS, WINDOWS} from '../constants'; import {setEqBand, setPreamp} from '../actionCreators'; import DraggableWindow from './DraggableWindow.jsx'; import Band from './Band.jsx'; import EqOn from './EqOn.jsx'; import EqAuto from './EqAuto.jsx'; import EqGraph from './EqGraph.jsx'; import '../../css/equalizer-window.css'; const bandClassName = (band) => { return `band-${band}`; }; class EqualizerWindow extends React.Component { constructor(props) { super(props); this.handleClick = this.handleClick.bind(this); this.setHertzValue = this.setHertzValue.bind(this); this.setPreampValue = this.setPreampValue.bind(this); } handleClick() { this.props.dispatch({type: 'SET_FOCUSED_WINDOW', window: WINDOWS.EQUALIZER}); } setHertzValue(hertz) { return (e) => { this.props.dispatch( setEqBand(this.props.mediaPlayer, hertz, e.target.value) ); }; } setPreampValue(e) { this.props.dispatch( setPreamp(this.props.mediaPlayer, e.target.value) ); } render() { const {doubled} = this.props.display; const className = classnames({ window: true, selected: this.props.windows.focused === WINDOWS.EQUALIZER, closed: !this.props.windows.equalizer, doubled }); return
{BANDS.map((hertz) => ( ))}
; } } module.exports = connect((state) => state)(EqualizerWindow);