Cosmetic reformatting of multiple jsx files
Этот коммит содержится в:
@@ -1,31 +1,70 @@
|
||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
module.exports = React.createClass({
|
||||
handleConfirm: function() {
|
||||
$('#'+this.props.parent_id).attr('data-confirm', 'true');
|
||||
$('#'+this.props.parent_id).modal('hide');
|
||||
$('#'+this.props.id).modal('hide');
|
||||
},
|
||||
render: function() {
|
||||
export default class ConfirmModal extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.handleConfirm = this.handleConfirm.bind(this);
|
||||
|
||||
this.state = {};
|
||||
}
|
||||
handleConfirm() {
|
||||
$('#' + this.props.parent_id).attr('data-confirm', 'true');
|
||||
$('#' + this.props.parent_id).modal('hide');
|
||||
$('#' + this.props.id).modal('hide');
|
||||
}
|
||||
render() {
|
||||
return (
|
||||
<div className="modal fade" id={this.props.id} tabIndex="-1" role="dialog" aria-hidden="true">
|
||||
<div className="modal-dialog">
|
||||
<div className="modal-content">
|
||||
<div className="modal-header">
|
||||
<h4 className="modal-title">{this.props.title}</h4>
|
||||
<div
|
||||
className='modal fade'
|
||||
id={this.props.id}
|
||||
tabIndex='-1'
|
||||
role='dialog'
|
||||
aria-hidden='true'
|
||||
>
|
||||
<div className='modal-dialog'>
|
||||
<div className='modal-content'>
|
||||
<div className='modal-header'>
|
||||
<h4 className='modal-title'>{this.props.title}</h4>
|
||||
</div>
|
||||
<div className='modal-body'>
|
||||
{this.props.message}
|
||||
</div>
|
||||
<div className='modal-footer'>
|
||||
<button
|
||||
type='button'
|
||||
className='btn btn-default'
|
||||
data-dismiss='modal'
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
<button
|
||||
onClick={this.handleConfirm}
|
||||
type='button'
|
||||
className='btn btn-primary'
|
||||
>
|
||||
{this.props.confirm_button}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="modal-body">
|
||||
{this.props.message}
|
||||
</div>
|
||||
<div className="modal-footer">
|
||||
<button type="button" className="btn btn-default" data-dismiss="modal">Cancel</button>
|
||||
<button onClick={this.handleConfirm} type="button" className="btn btn-primary">{this.props.confirm_button}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
ConfirmModal.defaultProps = {
|
||||
parent_id: '',
|
||||
id: '',
|
||||
title: '',
|
||||
message: '',
|
||||
confirm_button: ''
|
||||
};
|
||||
ConfirmModal.propTypes = {
|
||||
parent_id: React.PropTypes.string,
|
||||
id: React.PropTypes.string,
|
||||
title: React.PropTypes.string,
|
||||
message: React.PropTypes.string,
|
||||
confirm_button: React.PropTypes.string
|
||||
};
|
||||
|
||||
Ссылка в новой задаче
Block a user