passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
160 lines (149 loc) • 5.51 kB
JavaScript
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) 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) 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 PropTypes from "prop-types";
import { withAppContext } from "../../../../shared/context/AppContext/AppContext";
import ContextualMenuWrapper from "../../Common/ContextualMenu/ContextualMenuWrapper";
import CreateResourceFolder from "../../ResourceFolder/CreateResourceFolder/CreateResourceFolder";
import { withDialog } from "../../../contexts/DialogContext";
import ExportResources from "../ExportResources/ExportResources";
import { withResourceWorkspace } from "../../../contexts/ResourceWorkspaceContext";
import { Trans, withTranslation } from "react-i18next";
import { withRbac } from "../../../../shared/context/Rbac/RbacContext";
import { uiActions } from "../../../../shared/services/rbacs/uiActionEnumeration";
import FolderPlusSVG from "../../../../img/svg/folder_plus.svg";
import DownloadFileSVG from "../../../../img/svg/download_file.svg";
class FilterResourcesByRootFolderContextualMenu extends React.Component {
/**
* Constructor
* Initialize state and bind methods
*/
constructor(props) {
super(props);
this.bindCallbacks();
}
/**
* Bind callbacks methods
*/
bindCallbacks() {
this.handleCreateFolderItemClickEvent = this.handleCreateFolderItemClickEvent.bind(this);
this.handleExportFolderItemClickEvent = this.handleExportFolderItemClickEvent.bind(this);
this.handleHide = this.handleHide.bind(this);
}
/**
* Handle hide contextual menu
*/
handleHide() {
if (typeof this.props.onBeforeHide === "function") {
this.props.onBeforeHide();
}
this.props.hide();
}
/**
* Handle click on the create a folder menu option.
*/
handleCreateFolderItemClickEvent() {
this.props.dialogContext.open(CreateResourceFolder, { folderParentId: null });
this.handleHide();
}
/**
* Handle click on the export a folder menu option.
*/
async handleExportFolderItemClickEvent() {
await this.export();
this.handleHide();
}
/**
* Check if the user can export.
* @return {boolean}
*/
canExport() {
return (
this.props.context.siteSettings.canIUse("export") &&
this.props.rbacContext.canIUseAction(uiActions.RESOURCES_EXPORT)
);
}
/**
* Exports the selected resources
*/
async export() {
const foldersIds = this.props.context.folders
.filter((folder) => folder.folder_parent_id === null)
.map((folder) => folder.id);
const resourcesIds = this.props.context.resources
.filter((resource) => resource.folder_parent_id === null)
.map((resource) => resource.id);
await this.props.resourceWorkspaceContext.onResourcesToExport({ foldersIds, resourcesIds });
await this.props.dialogContext.open(ExportResources);
}
/**
* Render the component.
* @returns {JSX}
*/
render() {
return (
<ContextualMenuWrapper
hide={this.handleHide}
left={this.props.left}
top={this.props.top}
className={this.props.className}
>
<li key="option-create-folder" className="ready closed">
<div className="row">
<div className="main-cell-wrapper">
<div className="main-cell">
<button className="link no-border" type="button" onClick={this.handleCreateFolderItemClickEvent}>
<FolderPlusSVG />
<span>
<Trans>Create folder</Trans>
</span>
</button>
</div>
</div>
</div>
</li>
{this.canExport() && (
<li key="option-export-folder" className="ready closed">
<div className="row">
<div className="main-cell-wrapper">
<div className="main-cell">
<button type="button" className="link no-border" onClick={this.handleExportFolderItemClickEvent}>
<DownloadFileSVG />
<span>
<Trans>Export all</Trans>
</span>
</button>
</div>
</div>
</div>
</li>
)}
</ContextualMenuWrapper>
);
}
}
FilterResourcesByRootFolderContextualMenu.propTypes = {
context: PropTypes.any, // The application context
rbacContext: PropTypes.any, // The role based access control context
hide: PropTypes.func, // Hide the contextual menu
onBeforeHide: PropTypes.func, // On before hide callBack
left: PropTypes.number, // left position in px of the page
top: PropTypes.number, // top position in px of the page
className: PropTypes.string, // Class name to add
dialogContext: PropTypes.any, // The dialog context
resourceWorkspaceContext: PropTypes.any, // The resource workspace context
};
export default withAppContext(
withRbac(withResourceWorkspace(withDialog(withTranslation("common")(FilterResourcesByRootFolderContextualMenu)))),
);