mirror of
https://github.com/ascribe/onion.git
synced 2025-02-14 21:10:27 +01:00
141 lines
4.7 KiB
JavaScript
141 lines
4.7 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import UserStore from '../../stores/user_store';
|
|
import UserActions from '../../actions/user_actions';
|
|
|
|
import Form from './form';
|
|
import Property from './property';
|
|
import InputFineUploader from './input_fineuploader';
|
|
|
|
import ApiUrls from '../../constants/api_urls';
|
|
|
|
import { getLangText } from '../../utils/lang_utils';
|
|
import { mergeOptions } from '../../utils/general_utils';
|
|
import { isReadyForFormSubmission } from '../ascribe_uploader/react_s3_fine_uploader_utils';
|
|
|
|
|
|
let RegisterPieceForm = React.createClass({
|
|
propTypes: {
|
|
headerMessage: React.PropTypes.string,
|
|
submitMessage: React.PropTypes.string,
|
|
handleSuccess: React.PropTypes.func,
|
|
isFineUploaderActive: React.PropTypes.bool,
|
|
isFineUploaderEditable: React.PropTypes.bool,
|
|
enableLocalHashing: React.PropTypes.bool,
|
|
children: React.PropTypes.element,
|
|
onLoggedOut: React.PropTypes.func,
|
|
|
|
// For this form to work with SlideContainer, we sometimes have to disable it
|
|
disabled: React.PropTypes.bool
|
|
},
|
|
|
|
getDefaultProps() {
|
|
return {
|
|
headerMessage: getLangText('Register your work'),
|
|
submitMessage: getLangText('Register work'),
|
|
enableLocalHashing: true
|
|
};
|
|
},
|
|
|
|
getInitialState(){
|
|
return mergeOptions(
|
|
{
|
|
isUploadReady: false
|
|
},
|
|
UserStore.getState()
|
|
);
|
|
},
|
|
|
|
componentDidMount() {
|
|
UserStore.listen(this.onChange);
|
|
UserActions.fetchCurrentUser();
|
|
},
|
|
|
|
componentWillUnmount() {
|
|
UserStore.unlisten(this.onChange);
|
|
},
|
|
|
|
onChange(state) {
|
|
this.setState(state);
|
|
},
|
|
|
|
setIsUploadReady(isReady) {
|
|
this.setState({
|
|
isUploadReady: isReady
|
|
});
|
|
},
|
|
|
|
render() {
|
|
let currentUser = this.state.currentUser;
|
|
let enableLocalHashing = currentUser && currentUser.profile ? currentUser.profile.hash_locally : false;
|
|
enableLocalHashing = enableLocalHashing && this.props.enableLocalHashing;
|
|
|
|
return (
|
|
<Form
|
|
disabled={this.props.disabled}
|
|
className="ascribe-form-bordered"
|
|
ref='form'
|
|
url={ApiUrls.pieces_list}
|
|
handleSuccess={this.props.handleSuccess}
|
|
buttons={
|
|
<button
|
|
type="submit"
|
|
className="btn ascribe-btn ascribe-btn-login"
|
|
disabled={!this.state.isUploadReady || this.props.disabled}>
|
|
{this.props.submitMessage}
|
|
</button>
|
|
}
|
|
spinner={
|
|
<span className="btn ascribe-btn ascribe-btn-login ascribe-btn-login-spinner">
|
|
<img src="https://s3-us-west-2.amazonaws.com/ascribe0/media/thumbnails/ascribe_animated_medium.gif" />
|
|
</span>
|
|
}>
|
|
<div className="ascribe-form-header">
|
|
<h3>{this.props.headerMessage}</h3>
|
|
</div>
|
|
<Property
|
|
name="digital_work_key"
|
|
ignoreFocus={true}>
|
|
<InputFineUploader
|
|
setIsUploadReady={this.setIsUploadReady}
|
|
isReadyForFormSubmission={isReadyForFormSubmission}
|
|
isFineUploaderActive={this.props.isFineUploaderActive}
|
|
onLoggedOut={this.props.onLoggedOut}
|
|
editable={this.props.isFineUploaderEditable}
|
|
enableLocalHashing={enableLocalHashing}/>
|
|
</Property>
|
|
<Property
|
|
name='artist_name'
|
|
label={getLangText('Artist Name')}>
|
|
<input
|
|
type="text"
|
|
placeholder="(e.g. Andy Warhol)"
|
|
required/>
|
|
</Property>
|
|
<Property
|
|
name='title'
|
|
label={getLangText('Title')}>
|
|
<input
|
|
type="text"
|
|
placeholder="(e.g. 32 Campbell's Soup Cans)"
|
|
required/>
|
|
</Property>
|
|
<Property
|
|
name='date_created'
|
|
label={getLangText('Year Created')}>
|
|
<input
|
|
type="number"
|
|
placeholder="(e.g. 1962)"
|
|
min={0}
|
|
required/>
|
|
</Property>
|
|
{this.props.children}
|
|
</Form>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default RegisterPieceForm;
|