passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
160 lines (139 loc) • 5.02 kB
JavaScript
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) 2020 Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) 2020 Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 2.14.0
*/
import React, {Component} from "react";
import {withAppContext} from "../../../contexts/AppContext";
import PropTypes from "prop-types";
import FormSubmitButton from "../../Common/Inputs/FormSubmitButton/FormSubmitButton";
import FormCancelButton from "../../Common/Inputs/FormSubmitButton/FormCancelButton";
import DialogWrapper from "../../Common/Dialog/DialogWrapper/DialogWrapper";
import {withActionFeedback} from "../../../contexts/ActionFeedbackContext";
import {withLoading} from "../../../contexts/LoadingContext";
import {Trans, withTranslation} from "react-i18next";
class ConfirmDeleteDialog extends Component {
/**
* Constructor
* @param {Object} props
* @param {Object} context
*/
constructor(props, context) {
super(props, context);
this.state = this.defaultState;
this.bindEventHandlers();
}
/**
* Return default state
* @returns {Object} default state
*/
get defaultState() {
return {
actions: { // The ongoing action
processing: false, // An action is processing
},
};
}
/**
* Bind callbacks methods
*/
bindEventHandlers() {
this.handleClose = this.handleClose.bind(this);
this.handleConfirm = this.handleConfirm.bind(this);
}
/**
* Handle the confirm event
* @params {ReactEvent} The react event
* @return {Promise}
*/
async handleConfirm(event) {
// Avoid the form to be submitted.
event.preventDefault();
try {
await this.setState({actions: {processing: true}});
// Start loading bar
this.props.loadingContext.add();
// Persist
await this.props.context.port.request("passbolt.comments.delete", this.props.context.resourceCommentId);
// Complete loading bar
this.props.loadingContext.remove();
// Asks for a success message
await this.props.actionFeedbackContext.displaySuccess(this.translate("The comment has been deleted successfully"));
// Stop processing
await this.setState({actions: {processing: false}});
// Update the context
this.props.context.setContext({resourceCommentId: null, mustRefreshComments: true});
// Hides the dialog
this.props.onClose();
} catch (error) {
await this.setState({actions: {processing: false}});
// Show the error
await this.props.actionFeedbackContext.displayError(error);
// Update the context
this.props.context.setContext({resourceCommentId: null, mustRefreshComments: false});
// Hides the dialog
this.props.onClose();
}
}
/**
* Handle close button click.
*/
handleClose() {
this.props.context.setContext({resourceCommentId: null});
this.props.onClose();
}
/**
* Get the translate function
* @returns {function(...[*]=)}
*/
get translate() {
return this.props.t;
}
render() {
return (
<div>
<DialogWrapper
className='comment-delete-dialog'
title={this.translate("Delete comment?")}
onClose={this.handleClose}
disabled={this.state.actions.processing}>
<form
className="comment-delete-form"
onSubmit={this.handleConfirm}
noValidate>
<div className="form-content">
<p><Trans>Are you sure you want to delete the comment?</Trans></p>
<p><Trans>Once the comment is deleted, it’ll be removed permanently and will not be recoverable.</Trans></p>
</div>
<div className="submit-wrapper clearfix">
<FormCancelButton
disabled={this.state.actions.processing}
onClick={this.handleClose} />
<FormSubmitButton
disabled={this.state.actions.processing}
processing={this.state.processing}
value={this.translate("Delete")}
warning={true}/>
</div>
</form>
</DialogWrapper>
</div>
);
}
}
ConfirmDeleteDialog.propTypes = {
context: PropTypes.any, // The application context
actionFeedbackContext: PropTypes.object, // The action feedback context
loadingContext: PropTypes.object, // The loading context
onClose: PropTypes.func, // Whenever the dialog is closed
t: PropTypes.func, // The translation function
};
export default withAppContext(withLoading(withActionFeedback(withTranslation('common')(ConfirmDeleteDialog))));