1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 21:52:08 +02:00
onion/js/components/ascribe_forms/form_loan.js

266 lines
9.9 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 ContractAgreementListStore from '../../stores/contract_agreement_list_store';
import ContractAgreementListActions from '../../actions/contract_agreement_list_actions';
2015-07-15 17:51:09 +02:00
import AppConstants from '../../constants/application_constants';
2015-06-05 11:40:49 +02:00
import { mergeOptions } from '../../utils/general_utils';
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-08-26 09:50:38 +02:00
showEndDate: React.PropTypes.bool,
showStartDate: React.PropTypes.bool,
showPassword: React.PropTypes.bool,
2015-07-15 17:51:09 +02:00
url: React.PropTypes.string,
id: React.PropTypes.object,
message: React.PropTypes.string,
createPublicContractAgreement: React.PropTypes.bool,
2015-07-15 17:51:09 +02:00
handleSuccess: React.PropTypes.func
},
2015-08-12 13:34:41 +02:00
getDefaultProps() {
return {
2015-08-12 14:40:44 +02:00
loanHeading: '',
2015-08-26 09:50:38 +02:00
showPersonalMessage: true,
2015-08-26 17:32:42 +02:00
showEndDate: true,
showStartDate: true,
showPassword: true,
createPublicContractAgreement: true
2015-08-12 13:34:41 +02:00
};
},
getInitialState() {
return ContractAgreementListStore.getState();
},
2015-07-15 17:51:09 +02:00
componentDidMount() {
ContractAgreementListStore.listen(this.onChange);
this.getContractAgreementsOrCreatePublic(this.props.email);
2015-07-15 17:51:09 +02:00
},
2015-05-29 16:53:30 +02:00
2015-09-15 13:22:52 +02:00
componentWillReceiveProps(nextProps) {
// however, it can also be that at the time the component is mounting,
// the email is not defined (because it's asynchronously fetched from the server).
// Then we need to update it as soon as it is included into LoanForm's props.
if(nextProps && nextProps.email && this.props.email !== nextProps.email) {
2015-09-15 13:22:52 +02:00
this.getContractAgreementsOrCreatePublic(nextProps.email);
}
},
2015-07-15 17:51:09 +02:00
componentWillUnmount() {
ContractAgreementListStore.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
},
getContractAgreementsOrCreatePublic(email){
2015-09-18 13:49:50 +02:00
ContractAgreementListActions.flushContractAgreementList.defer();
2015-09-17 13:28:59 +02:00
if (email) {
// fetch the available contractagreements (pending/accepted)
ContractAgreementListActions.fetchAvailableContractAgreementList(email).then(
(contractAgreementList) => {
if (!contractAgreementList && this.props.createPublicContractAgreement) {
// for public contracts: fetch the public contract and create a contractagreement if available
ContractAgreementListActions.createContractAgreementFromPublicContract(email);
}
2015-09-17 13:28:59 +02:00
}
);
}
},
2015-07-15 17:51:09 +02:00
getFormData(){
return mergeOptions(
this.props.id,
this.getContractAgreementId()
);
2015-06-01 13:02:53 +02:00
},
2015-08-28 11:13:28 +02:00
handleOnChange(event) {
// event.target.value is the submitted email of the loanee
if(event && event.target && event.target.value && event.target.value.match(/.*@.*\..*/)) {
this.getContractAgreementsOrCreatePublic(event.target.value);
} else {
ContractAgreementListActions.flushContractAgreementList();
2015-08-28 11:13:28 +02:00
}
2015-06-01 13:02:53 +02:00
},
2015-07-15 17:51:09 +02:00
getContractAgreementId() {
if (this.state.contractAgreementList && this.state.contractAgreementList.length > 0) {
return {'contract_agreement_id': this.state.contractAgreementList[0].id};
}
return null;
},
2015-07-15 17:51:09 +02:00
getContractCheckbox() {
if(this.state.contractAgreementList && this.state.contractAgreementList.length > 0) {
// 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)
let contract = this.state.contractAgreementList[0].contract;
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;
<a href={contract.blob.url_safe} target="_blank">
{getLangText('terms of ')} {contract.issuer}
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}
onReset={this.handleOnChange}
2015-07-15 17:51:09 +02:00
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-20 11:03:00 +02:00
editable={!this.props.email}
onBlur={this.handleOnChange}
2015-08-21 11:29:57 +02:00
overrideForm={!!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
2015-08-26 09:50:38 +02:00
name='gallery'
2015-08-12 13:34:41 +02:00
label={getLangText('Gallery/exhibition (optional)')}
2015-08-20 11:03:00 +02:00
editable={!this.props.gallery}
2015-08-21 11:29:57 +02:00
overrideForm={!!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-26 18:01:50 +02:00
editable={!this.props.startdate}
overrideForm={!!this.props.startdate}
2015-08-26 09:50:38 +02:00
hidden={!this.props.showStartDate}>
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-26 18:01:50 +02:00
editable={!this.props.enddate}
overrideForm={!!this.props.enddate}
2015-08-12 13:34:41 +02:00
label={getLangText('End date')}
2015-08-26 09:50:38 +02:00
hidden={!this.props.showEndDate}>
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...')}
2015-08-27 11:38:21 +02:00
required={this.props.showPersonalMessage ? 'required' : ''}/>
2015-07-15 17:51:09 +02:00
</Property>
<Property
name='password'
2015-08-26 09:50:38 +02:00
label={getLangText('Password')}
hidden={!this.props.showPassword}>
2015-07-15 17:51:09 +02:00
<input
type="password"
placeholder={getLangText('Enter your password')}
2015-08-26 09:50:38 +02:00
required={this.props.showPassword ? 'required' : ''}/>
2015-07-15 17:51:09 +02:00
</Property>
{this.getContractCheckbox()}
2015-08-21 10:54:57 +02:00
{this.props.children}
2015-07-15 17:51:09 +02:00
</Form>
2015-05-29 16:53:30 +02:00
);
}
});
2015-07-15 17:51:09 +02:00
export default LoanForm;