1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00
onion/js/components/ascribe_forms/form_loan.js

209 lines
7.1 KiB
JavaScript
Raw Normal View History

'use strict';
2015-05-29 16:53:30 +02:00
import React from 'react';
2015-08-12 13:34:41 +02:00
import classnames from 'classnames';
2015-07-15 17:51:09 +02:00
import Button from 'react-bootstrap/lib/Button';
import Form from './form';
import Property from './property';
import InputTextAreaToggable from './input_textarea_toggable';
2015-06-01 14:16:06 +02:00
import InputDate from './input_date';
2015-07-15 17:51:09 +02:00
import InputCheckbox from './input_checkbox';
import LoanContractStore from '../../stores/loan_contract_store';
import LoanContractActions from '../../actions/loan_contract_actions';
import AppConstants from '../../constants/application_constants';
2015-06-05 11:40:49 +02:00
2015-07-15 17:51:09 +02:00
import { getLangText } from '../../utils/lang_utils';
2015-05-29 16:53:30 +02:00
2015-07-03 19:08:56 +02:00
2015-06-01 13:02:53 +02:00
let LoanForm = React.createClass({
2015-07-15 17:51:09 +02:00
propTypes: {
2015-08-12 14:40:44 +02:00
loanHeading: React.PropTypes.string,
2015-08-12 13:34:41 +02:00
email: React.PropTypes.string,
gallery: React.PropTypes.string,
2015-08-12 13:53:17 +02:00
startdate: React.PropTypes.object,
enddate: React.PropTypes.object,
2015-08-12 13:34:41 +02:00
showPersonalMessage: React.PropTypes.bool,
2015-07-15 17:51:09 +02:00
url: React.PropTypes.string,
id: React.PropTypes.object,
message: React.PropTypes.string,
handleSuccess: React.PropTypes.func
},
2015-08-12 13:34:41 +02:00
getDefaultProps() {
return {
2015-08-12 14:40:44 +02:00
loanHeading: '',
showPersonalMessage: true
2015-08-12 13:34:41 +02:00
};
},
getInitialState() {
2015-07-15 17:51:09 +02:00
return LoanContractStore.getState();
},
2015-07-15 17:51:09 +02:00
componentDidMount() {
LoanContractStore.listen(this.onChange);
2015-08-06 15:14:50 +02:00
LoanContractActions.flushLoanContract();
2015-07-15 17:51:09 +02:00
},
2015-05-29 16:53:30 +02:00
2015-07-15 17:51:09 +02:00
componentWillUnmount() {
LoanContractStore.unlisten(this.onChange);
2015-05-29 16:53:30 +02:00
},
2015-07-15 17:51:09 +02:00
onChange(state) {
this.setState(state);
2015-05-29 16:53:30 +02:00
},
2015-07-15 17:51:09 +02:00
getFormData(){
return this.props.id;
2015-06-01 13:02:53 +02:00
},
2015-07-15 17:51:09 +02:00
handleOnBlur(event) {
LoanContractActions.fetchLoanContract(event.target.value);
2015-06-01 13:02:53 +02:00
},
2015-07-15 17:51:09 +02:00
getContractCheckbox() {
if(this.state.contractKey && this.state.contractUrl) {
// we need to define a key on the InputCheckboxes as otherwise
// react is not rerendering them on a store switch and is keeping
// the default value of the component (which is in that case true)
2015-07-15 17:51:09 +02:00
return (
<Property
name="terms"
className="ascribe-settings-property-collapsible-toggle"
style={{paddingBottom: 0}}>
2015-07-28 11:32:16 +02:00
<InputCheckbox
key="terms_explicitly"
2015-07-28 15:33:47 +02:00
defaultChecked={false}>
2015-07-15 17:51:09 +02:00
<span>
2015-07-03 19:08:56 +02:00
{getLangText('I agree to the')}&nbsp;
2015-07-15 17:51:09 +02:00
<a href={this.state.contractUrl} target="_blank">
{getLangText('terms of')} {this.state.contractEmail}
2015-06-01 13:02:53 +02:00
</a>
2015-07-15 17:51:09 +02:00
</span>
</InputCheckbox>
</Property>
);
2015-07-15 17:57:28 +02:00
} else {
return (
<Property
name="terms"
2015-07-28 15:33:47 +02:00
style={{paddingBottom: 0}}
hidden={true}>
<InputCheckbox
key="terms_implicitly"
2015-07-28 15:33:47 +02:00
defaultChecked={true} />
2015-07-15 17:57:28 +02:00
</Property>
);
2015-06-01 13:02:53 +02:00
}
2015-07-15 17:51:09 +02:00
},
2015-08-12 13:34:41 +02:00
getButtons() {
2015-08-12 14:40:44 +02:00
if(this.props.loanHeading) {
2015-08-12 13:34:41 +02:00
return (
<button
type="submit"
className="btn ascribe-btn ascribe-btn-login">
{getLangText('Finish process')}
</button>
);
} else {
return (
<div className="modal-footer">
<p className="pull-right">
<Button
className="btn btn-default btn-sm ascribe-margin-1px"
type="submit">
{getLangText('LOAN')}
</Button>
</p>
</div>
);
}
},
2015-08-12 13:34:41 +02:00
render() {
2015-05-29 16:53:30 +02:00
return (
2015-07-15 17:51:09 +02:00
<Form
2015-08-12 14:40:44 +02:00
className={classnames({'ascribe-form-bordered': this.props.loanHeading})}
2015-07-15 17:51:09 +02:00
ref='form'
url={this.props.url}
getFormData={this.getFormData}
handleSuccess={this.props.handleSuccess}
2015-08-12 13:34:41 +02:00
buttons={this.getButtons()}
2015-07-15 17:51:09 +02:00
spinner={
<div className="modal-footer">
<img src={AppConstants.baseUrl + 'static/img/ascribe_animated_small.gif'} />
</div>}>
<div className={classnames({'ascribe-form-header': true, 'hidden': !this.props.loanHeading})}>
2015-08-12 14:40:44 +02:00
<h3>{this.props.loanHeading}</h3>
2015-08-12 13:34:41 +02:00
</div>
2015-07-15 17:51:09 +02:00
<Property
name='loanee'
label={getLangText('Loanee Email')}
2015-08-12 13:34:41 +02:00
onBlur={this.handleOnBlur}
editable={!this.props.email}>
2015-07-15 17:51:09 +02:00
<input
2015-08-12 13:34:41 +02:00
value={this.props.email}
2015-07-15 17:51:09 +02:00
type="email"
placeholder={getLangText('Email of the loanee')}
required/>
</Property>
<Property
name='gallery_name'
2015-08-12 13:34:41 +02:00
label={getLangText('Gallery/exhibition (optional)')}
editable={!this.props.gallery}>
2015-07-15 17:51:09 +02:00
<input
2015-08-12 13:34:41 +02:00
value={this.props.gallery}
2015-07-15 17:51:09 +02:00
type="text"
placeholder={getLangText('Gallery/exhibition (optional)')}/>
</Property>
<Property
name='startdate'
2015-08-12 13:34:41 +02:00
label={getLangText('Start date')}
2015-08-12 14:40:44 +02:00
hidden={this.props.startdate}>
2015-07-15 17:51:09 +02:00
<InputDate
2015-08-12 13:53:17 +02:00
defaultValue={this.props.startdate}
2015-07-15 17:51:09 +02:00
placeholderText={getLangText('Loan start date')} />
</Property>
<Property
name='enddate'
2015-08-12 13:34:41 +02:00
label={getLangText('End date')}
2015-08-12 14:40:44 +02:00
hidden={this.props.enddate}>
2015-07-15 17:51:09 +02:00
<InputDate
2015-08-12 13:53:17 +02:00
defaultValue={this.props.enddate}
2015-07-15 17:51:09 +02:00
placeholderText={getLangText('Loan end date')} />
</Property>
<Property
name='loan_message'
label={getLangText('Personal Message')}
2015-08-12 13:34:41 +02:00
editable={true}
2015-08-12 14:40:44 +02:00
hidden={!this.props.showPersonalMessage}>
2015-07-15 17:51:09 +02:00
<InputTextAreaToggable
rows={1}
editable={true}
defaultValue={this.props.message}
placeholder={getLangText('Enter a message...')}
required="required"/>
</Property>
<Property
name='password'
label={getLangText('Password')}>
<input
type="password"
placeholder={getLangText('Enter your password')}
required/>
</Property>
{this.getContractCheckbox()}
</Form>
2015-05-29 16:53:30 +02:00
);
}
});
2015-07-15 17:51:09 +02:00
export default LoanForm;