Skip to content

Commit

Permalink
Added logic to relay the color component values from the <ColorSelect…
Browse files Browse the repository at this point in the history
…or> React 'state' on to <ColorComponentEntry>s, and then on to the associated text fields.
  • Loading branch information
maratbn committed Aug 5, 2018
1 parent 7fbb11e commit c002e8c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions webpack_in/entry.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,14 +239,16 @@ class ColorComponentEntry extends React.Component {
{ this.props.label }: <input type='text'
size='4'
maxLength='4'
style={{ textAlign: 'center' }} />
style={{ textAlign: 'center' }}
value={ this.props.value } />
</div>
);
}
}

ColorComponentEntry.propTypes = {
label: PropTypes.string.isRequired
label: PropTypes.string.isRequired,
value: PropTypes.number.isRequired
};

class ColorSelector extends React.Component {
Expand All @@ -270,9 +272,9 @@ class ColorSelector extends React.Component {
height: '3em',
border: 'solid 2px black' }} />
<div style={{ marginTop: '-1em'}}>
<ColorComponentEntry label="R" />
<ColorComponentEntry label="G" />
<ColorComponentEntry label="B" />
<ColorComponentEntry label="R" value={ this.state.color.r } />
<ColorComponentEntry label="G" value={ this.state.color.g } />
<ColorComponentEntry label="B" value={ this.state.color.b } />
</div>
</div>
);
Expand Down

0 comments on commit c002e8c

Please sign in to comment.