1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/components/ascribe_forms/form_copyright_association.js

81 lines
2.9 KiB
JavaScript
Raw Normal View History

'use strict';
import React from 'react';
import GlobalNotificationModel from '../../models/global_notification_model';
import GlobalNotificationActions from '../../actions/global_notification_actions';
import Form from './form';
import Property from './property';
2015-09-17 11:39:55 +02:00
import ApiUrls from '../../constants/api_urls';
import AppConstants from '../../constants/application_constants';
import { getLangText } from '../../utils/lang_utils';
let CopyrightAssociationForm = React.createClass({
propTypes: {
currentUser: React.PropTypes.object.isRequired
},
handleSubmitSuccess() {
const notification = new GlobalNotificationModel(getLangText('Copyright association updated'), 'success', 10000);
GlobalNotificationActions.appendGlobalNotification(notification);
},
getProfileFormData() {
return { email: this.props.currentUser.email };
},
render() {
const { currentUser } = this.props;
const selectDefaultValue = ' -- ' + getLangText('select an association') + ' -- ';
2015-09-22 14:13:04 +02:00
let selectedState = selectDefaultValue;
if (currentUser.profile && currentUser.profile.copyright_association) {
if (AppConstants.copyrightAssociations.indexOf(currentUser.profile.copyright_association) !== -1) {
selectedState = AppConstants.copyrightAssociations[selectedState];
}
}
2015-09-22 14:13:04 +02:00
if (currentUser.email) {
2015-09-17 11:39:55 +02:00
return (
<Form
ref='form'
url={ApiUrls.users_profile}
getFormData={this.getProfileFormData}
handleSuccess={this.handleSubmitSuccess}>
<Property
name="copyright_association"
className="ascribe-property-collapsible-toggle"
2016-02-05 10:38:59 +01:00
label={getLangText('Copyright Association')}>
2015-09-22 14:13:04 +02:00
<select defaultValue={selectedState} name="contract">
<option
name={0}
key={0}
value={selectDefaultValue}>
{selectDefaultValue}
2015-09-17 11:39:55 +02:00
</option>
{AppConstants.copyrightAssociations.map((association, i) => {
return (
<option
2015-09-22 14:13:04 +02:00
name={i + 1}
key={i + 1}
value={association}>
2015-09-17 11:39:55 +02:00
{ association }
</option>
);
})}
</select>
</Property>
<hr />
</Form>
);
} else {
return null;
2015-09-17 11:39:55 +02:00
}
}
});
2016-02-05 10:38:59 +01:00
export default CopyrightAssociationForm;