spee.ch/react/containers/PublishMetadataInputs/view.jsx

87 lines
3.4 KiB
React
Raw Normal View History

2018-01-06 03:26:57 +01:00
import React from 'react';
import ExpandingTextArea from 'components/ExpandingTextArea';
2018-01-06 03:26:57 +01:00
2018-01-17 19:49:57 +01:00
class PublishMetadataInputs extends React.Component {
2018-01-06 03:26:57 +01:00
constructor (props) {
super(props);
this.state = {
2018-01-19 23:53:31 +01:00
showInputs: false,
2018-01-06 03:26:57 +01:00
};
this.toggleShowInputs = this.toggleShowInputs.bind(this);
2018-01-17 18:24:17 +01:00
this.handleDescriptionInput = this.handleDescriptionInput.bind(this);
this.handleNsfwCheck = this.handleNsfwCheck.bind(this);
this.handleLicenseSelection = this.handleLicenseSelection.bind(this);
2018-01-06 03:26:57 +01:00
}
toggleShowInputs () {
2018-01-10 22:10:08 +01:00
this.setState({'showInputs': !this.state.showInputs});
2018-01-06 03:26:57 +01:00
}
2018-01-17 18:24:17 +01:00
handleDescriptionInput (event) {
2018-01-08 18:39:59 +01:00
event.preventDefault();
2018-01-10 22:10:08 +01:00
const name = event.target.name;
const value = event.target.value;
this.props.onMetadataChange(name, value);
}
2018-01-17 18:24:17 +01:00
handleNsfwCheck (event) {
2018-01-10 22:10:08 +01:00
console.log('handle input', event);
event.preventDefault();
const name = event.target.name;
const value = event.target.checked;
this.props.onMetadataChange(name, value);
2018-01-08 18:39:59 +01:00
}
2018-01-17 18:24:17 +01:00
handleLicenseSelection (event) {
2018-01-10 22:10:08 +01:00
const name = event.target.name;
2018-01-09 02:06:31 +01:00
const selectedOption = event.target.selectedOptions[0].value;
2018-01-10 22:10:08 +01:00
this.props.onMetadataChange(name, selectedOption);
2018-01-09 02:06:31 +01:00
}
2018-01-06 03:26:57 +01:00
render () {
return (
<div id="publish-details" className="row row--padded row--no-top row--wide">
<a className="label link--primary" id="publish-details-toggle" href="#" onClick={this.toggleShowInputs}>{this.state.showInputs ? '[less]' : '[more]'}</a>
{this.state.showInputs && (
<div>
<div className="row row--no-top">
<div className="column column--3 column--med-10 align-content-top">
<label htmlFor="publish-license" className="label">Description:</label>
</div><div className="column column--7 column--sml-10">
<ExpandingTextArea
2018-01-17 00:55:29 +01:00
id="publish-description"
className="textarea textarea--primary textarea--full-width"
rows={1}
maxLength={2000}
maxHeight={150}
2018-01-17 00:55:29 +01:00
name="description"
placeholder="Optional description"
value={this.props.description}
2018-01-17 18:24:17 +01:00
style={{height: this.state.descriptionHeight}}
onChange={this.handleDescriptionInput} />
2018-01-08 18:39:59 +01:00
</div>
</div>
2018-01-08 18:39:59 +01:00
<div className="row row--no-top">
<div className="column column--3 column--med-10">
<label htmlFor="publish-license" className="label">License:</label>
</div><div className="column column--7 column--sml-10">
2018-01-17 18:24:17 +01:00
<select type="text" name="license" id="publish-license" className="select select--primary" onChange={this.handleLicenseSelection}>
<option value=" ">Unspecified</option>
<option value="Public Domain">Public Domain</option>
<option value="Creative Commons">Creative Commons</option>
</select>
2018-01-08 18:39:59 +01:00
</div>
</div>
2018-01-08 18:39:59 +01:00
<div className="row row--no-top">
<div className="column column--3">
<label htmlFor="publish-nsfw" className="label">Mature:</label>
</div><div className="column column--7">
2018-01-17 18:24:17 +01:00
<input className="input-checkbox" type="checkbox" id="publish-nsfw" name="nsfw" checked={this.props.nsfw} onChange={this.handleNsfwCheck} />
2018-01-08 18:39:59 +01:00
</div>
2018-01-06 03:26:57 +01:00
</div>
</div>
)}
2018-01-06 03:26:57 +01:00
</div>
);
}
}
2018-01-17 19:49:57 +01:00
export default PublishMetadataInputs;