passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
73 lines (65 loc) • 1.91 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.13.0
*/
import React from "react";
import { withDialog } from "../../../../contexts/DialogContext";
import PropTypes from "prop-types";
/**
* This component acts as an anchor for the different project dialogs.
*/
class ManageDialogs extends React.Component {
/**
* Default constructor
* @param props The component props
*/
constructor(props) {
super(props);
this.bindCallback();
}
/**
* Bind class methods callback
*/
bindCallback() {
this.close = this.close.bind(this);
}
/**
* Removes the index-th dialog
*/
async close(index) {
const dialog = this.props.dialogContext.dialogs.find(({ key }) => key === index);
// If a dialog callback was given as dialog props, execute it.
if (dialog?.DialogProps?.onClose) {
dialog.DialogProps.onClose();
}
this.props.dialogContext.close(index);
}
/**
* Renders the component
* @returns {JSX.Element}
*/
render() {
return (
<>
{this.props.dialogContext.dialogs.map(({ key, Dialog, DialogProps }) => (
<Dialog key={key} {...DialogProps} onClose={() => this.close(key)} />
))}
{this.props.children}
</>
);
}
}
ManageDialogs.propTypes = {
dialogContext: PropTypes.any,
children: PropTypes.any,
};
export default withDialog(ManageDialogs);