2015-08-31 16:36:24 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import CollapsibleParagraph from '../ascribe_collapsible/collapsible_paragraph';
|
2015-09-01 14:42:09 +02:00
|
|
|
import CreateContractForm from '../ascribe_forms/form_create_contract';
|
2015-08-31 16:36:24 +02:00
|
|
|
|
2015-09-02 14:02:23 +02:00
|
|
|
import ContractListStore from '../../stores/contract_list_store';
|
|
|
|
import ContractListActions from '../../actions/contract_list_actions';
|
2015-08-31 16:36:24 +02:00
|
|
|
|
2015-09-03 15:53:02 +02:00
|
|
|
import ActionPanel from '../ascribe_panel/action_panel';
|
2015-09-15 11:50:23 +02:00
|
|
|
import ContractSettingsUpdateButton from './contract_settings_update_button';
|
2015-09-03 15:53:02 +02:00
|
|
|
|
2015-09-03 17:19:29 +02:00
|
|
|
import GlobalNotificationModel from '../../models/global_notification_model';
|
|
|
|
import GlobalNotificationActions from '../../actions/global_notification_actions';
|
2015-08-31 16:36:24 +02:00
|
|
|
|
2015-09-18 09:46:37 +02:00
|
|
|
import AclProxy from '../acl_proxy';
|
|
|
|
|
2015-09-08 11:19:11 +02:00
|
|
|
import { getLangText } from '../../utils/lang_utils';
|
|
|
|
|
2015-09-15 11:50:23 +02:00
|
|
|
|
2015-08-31 16:36:24 +02:00
|
|
|
let ContractSettings = React.createClass({
|
|
|
|
propTypes: {
|
2015-09-18 09:46:37 +02:00
|
|
|
currentUser: React.PropTypes.object,
|
2015-08-31 16:36:24 +02:00
|
|
|
defaultExpanded: React.PropTypes.bool
|
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-09-02 14:02:23 +02:00
|
|
|
getInitialState(){
|
|
|
|
return ContractListStore.getState();
|
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-09-02 14:02:23 +02:00
|
|
|
componentDidMount() {
|
|
|
|
ContractListStore.listen(this.onChange);
|
2015-09-15 17:18:38 +02:00
|
|
|
ContractListActions.fetchContractList(true);
|
2015-09-02 14:02:23 +02:00
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-09-02 14:02:23 +02:00
|
|
|
componentWillUnmount() {
|
|
|
|
ContractListStore.unlisten(this.onChange);
|
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-09-02 14:02:23 +02:00
|
|
|
onChange(state) {
|
|
|
|
this.setState(state);
|
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
|
|
|
removeContract(contract) {
|
|
|
|
return () => {
|
|
|
|
ContractListActions.removeContract(contract.id)
|
2015-09-09 11:11:16 +02:00
|
|
|
.then((response) => {
|
2015-09-15 17:18:38 +02:00
|
|
|
ContractListActions.fetchContractList(true);
|
2015-09-09 11:11:16 +02:00
|
|
|
let notification = new GlobalNotificationModel(response.notification, 'success', 4000);
|
|
|
|
GlobalNotificationActions.appendGlobalNotification(notification);
|
|
|
|
})
|
2015-09-08 11:44:05 +02:00
|
|
|
.catch((err) => {
|
|
|
|
let notification = new GlobalNotificationModel(err, 'danger', 10000);
|
2015-09-08 11:19:11 +02:00
|
|
|
GlobalNotificationActions.appendGlobalNotification(notification);
|
2015-09-09 11:11:16 +02:00
|
|
|
});
|
2015-09-08 11:19:11 +02:00
|
|
|
};
|
2015-09-03 15:53:02 +02:00
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-09-03 15:53:02 +02:00
|
|
|
getPublicContracts(){
|
2015-09-08 15:06:19 +02:00
|
|
|
return this.state.contractList.filter((contract) => contract.is_public);
|
2015-09-03 15:53:02 +02:00
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-09-03 15:53:02 +02:00
|
|
|
getPrivateContracts(){
|
2015-09-08 15:06:19 +02:00
|
|
|
return this.state.contractList.filter((contract) => !contract.is_public);
|
2015-09-03 15:53:02 +02:00
|
|
|
},
|
2015-09-08 11:19:11 +02:00
|
|
|
|
2015-08-31 16:36:24 +02:00
|
|
|
render() {
|
2015-09-03 15:53:02 +02:00
|
|
|
let publicContracts = this.getPublicContracts();
|
|
|
|
let privateContracts = this.getPrivateContracts();
|
2015-09-14 17:02:47 +02:00
|
|
|
let createPublicContractForm = null;
|
|
|
|
|
|
|
|
if(publicContracts.length === 0) {
|
|
|
|
createPublicContractForm = (
|
|
|
|
<CreateContractForm
|
|
|
|
isPublic={true}
|
|
|
|
fileClassToUpload={{
|
2015-09-18 15:17:24 +02:00
|
|
|
singular: 'new contract',
|
|
|
|
plural: 'new contracts'
|
2015-09-14 17:02:47 +02:00
|
|
|
}}/>
|
|
|
|
);
|
|
|
|
}
|
2015-09-08 10:03:20 +02:00
|
|
|
|
2015-08-31 16:36:24 +02:00
|
|
|
return (
|
2015-09-18 09:46:37 +02:00
|
|
|
<AclProxy
|
2015-09-22 17:38:25 +02:00
|
|
|
aclName="acl_view_settings_contract"
|
2015-09-18 09:46:37 +02:00
|
|
|
aclObject={this.props.currentUser.acl}>
|
2015-09-14 17:38:26 +02:00
|
|
|
<CollapsibleParagraph
|
2015-09-18 09:46:37 +02:00
|
|
|
title={getLangText('Contracts')}
|
2015-09-14 17:38:26 +02:00
|
|
|
show={true}
|
2015-09-18 16:04:48 +02:00
|
|
|
defaultExpanded={false}>
|
2015-09-18 09:46:37 +02:00
|
|
|
<AclProxy
|
|
|
|
aclName="acl_edit_public_contract"
|
|
|
|
aclObject={this.props.currentUser.acl}>
|
2015-09-18 15:17:24 +02:00
|
|
|
<div>
|
2015-09-18 09:46:37 +02:00
|
|
|
{createPublicContractForm}
|
|
|
|
{publicContracts.map((contract, i) => {
|
|
|
|
return (
|
|
|
|
<ActionPanel
|
|
|
|
key={i}
|
|
|
|
title={contract.name}
|
|
|
|
content={contract.name}
|
|
|
|
buttons={
|
|
|
|
<div className="pull-right">
|
|
|
|
<ContractSettingsUpdateButton contract={contract}/>
|
|
|
|
<a
|
|
|
|
className="btn btn-default btn-sm margin-left-2px"
|
|
|
|
href={contract.blob.url_safe}
|
|
|
|
target="_blank">
|
|
|
|
{getLangText('PREVIEW')}
|
|
|
|
</a>
|
|
|
|
<button
|
2015-09-18 15:22:57 +02:00
|
|
|
className="btn btn-danger btn-sm margin-left-2px"
|
2015-09-18 09:46:37 +02:00
|
|
|
onClick={this.removeContract(contract)}>
|
|
|
|
{getLangText('REMOVE')}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
leftColumnWidth="40%"
|
|
|
|
rightColumnWidth="60%"/>
|
|
|
|
);
|
|
|
|
})}
|
2015-09-18 15:17:24 +02:00
|
|
|
</div>
|
2015-09-18 09:46:37 +02:00
|
|
|
</AclProxy>
|
|
|
|
<AclProxy
|
|
|
|
aclName="acl_edit_private_contract"
|
|
|
|
aclObject={this.props.currentUser.acl}>
|
2015-09-18 15:17:24 +02:00
|
|
|
<div>
|
2015-09-18 09:46:37 +02:00
|
|
|
<CreateContractForm
|
2015-09-18 15:17:24 +02:00
|
|
|
isPublic={false}
|
|
|
|
fileClassToUpload={{
|
|
|
|
singular: getLangText('new contract'),
|
|
|
|
plural: getLangText('new contracts')
|
|
|
|
}}/>
|
2015-09-18 09:46:37 +02:00
|
|
|
{privateContracts.map((contract, i) => {
|
|
|
|
return (
|
|
|
|
<ActionPanel
|
|
|
|
key={i}
|
|
|
|
title={contract.name}
|
|
|
|
content={contract.name}
|
|
|
|
buttons={
|
|
|
|
<div className="pull-right">
|
|
|
|
<ContractSettingsUpdateButton contract={contract} />
|
|
|
|
<a
|
|
|
|
className="btn btn-default btn-sm margin-left-2px"
|
|
|
|
href={contract.blob.url_safe}
|
|
|
|
target="_blank">
|
|
|
|
{getLangText('PREVIEW')}
|
|
|
|
</a>
|
|
|
|
<button
|
2015-09-18 15:22:57 +02:00
|
|
|
className="btn btn-danger btn-sm margin-left-2px"
|
2015-09-18 09:46:37 +02:00
|
|
|
onClick={this.removeContract(contract)}>
|
|
|
|
{getLangText('REMOVE')}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
leftColumnWidth="40%"
|
|
|
|
rightColumnWidth="60%"/>
|
|
|
|
);
|
|
|
|
})}
|
2015-09-18 15:17:24 +02:00
|
|
|
</div>
|
2015-09-18 09:46:37 +02:00
|
|
|
</AclProxy>
|
2015-09-02 14:02:23 +02:00
|
|
|
</CollapsibleParagraph>
|
2015-09-18 09:46:37 +02:00
|
|
|
</AclProxy>
|
2015-08-31 16:36:24 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default ContractSettings;
|