15768: removed copy-and-rerun, minor cleanup Arvados-DCO-1.1-Signed-off-by: Lisa...
[arvados.git] / src / components / multiselectToolbar / MultiselectToolbar.tsx
index 4cec2d6d0837ca3b0a88ec4cda9cea6dcc16ca61..085174dd142cf6193ddfcea41a1575af5d107764 100644 (file)
@@ -2,76 +2,47 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import React, { ReactElement } from 'react';
-import { connect } from 'react-redux';
-import { StyleRulesCallback, withStyles, WithStyles, Toolbar, Button } from '@material-ui/core';
-import { ArvadosTheme } from 'common/custom-theme';
-import { RootState } from 'store/store';
-import { Dispatch } from 'redux';
-import { CopyToClipboardSnackbar } from 'components/copy-to-clipboard-snackbar/copy-to-clipboard-snackbar';
-import { TCheckedList } from 'components/data-table/data-table';
-import { openRemoveProcessDialog, openRemoveManyProcessesDialog } from 'store/processes/processes-actions';
-import { processResourceActionSet } from '../../views-components/context-menu/action-sets/process-resource-action-set';
-import { ContextMenuResource } from 'store/context-menu/context-menu-actions';
-import { toggleTrashed } from 'store/trash/trash-actions';
-import { ResourceKind, extractUuidKind } from 'models/resource';
-
-type CssRules = 'root' | 'expanded' | 'button';
+import React from "react";
+import { connect } from "react-redux";
+import { StyleRulesCallback, withStyles, WithStyles, Toolbar, Tooltip, IconButton } from "@material-ui/core";
+import { ArvadosTheme } from "common/custom-theme";
+import { RootState } from "store/store";
+import { Dispatch } from "redux";
+import { TCheckedList } from "components/data-table/data-table";
+import { ContextMenuResource } from "store/context-menu/context-menu-actions";
+import { Resource, extractUuidKind } from "models/resource";
+import { getResource } from "store/resources/resources";
+import { ResourcesState } from "store/resources/resources";
+import { ContextMenuAction, ContextMenuActionSet } from "views-components/context-menu/context-menu-action-set";
+import { RestoreFromTrashIcon, TrashIcon } from "components/icon/icon";
+import { multiselectActionsFilters, TMultiselectActionsFilters, contextMenuActionConsts } from "./ms-toolbar-action-filters";
+import { kindToActionSet, findActionByName } from "./ms-kind-action-differentiator";
+import { toggleTrashAction } from "views-components/context-menu/action-sets/project-action-set";
+import { copyToClipboardAction } from "store/open-in-new-tab/open-in-new-tab.actions";
+
+type CssRules = "root" | "button";
 
 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     root: {
-        display: 'flex',
-        flexDirection: 'row',
+        display: "flex",
+        flexDirection: "row",
         width: 0,
         padding: 0,
-        margin: '1rem auto auto 0.5rem',
-        overflow: 'hidden',
-    },
-    expanded: {
-        transition: 'width 150ms',
-        transitionTimingFunction: 'ease-in',
+        margin: "1rem auto auto 0.5rem",
+        overflow: "hidden",
+        transition: "width 150ms",
     },
     button: {
-        backgroundColor: '#017ead',
-        color: 'white',
-        fontSize: '0.75rem',
-        width: 'auto',
-        margin: 'auto',
-        padding: '1px',
+        width: "1rem",
+        margin: "auto 5px",
     },
 });
 
-type MultiselectToolbarAction = {
-    name: string;
-    action: string;
-    relevantKinds: Array<ResourceKind>;
-};
-
-export const defaultActions: Array<MultiselectToolbarAction> = [
-    {
-        name: 'copy',
-        action: 'copySelected',
-        relevantKinds: [ResourceKind.COLLECTION],
-    },
-    {
-        name: 'move',
-        action: 'moveSelected',
-        relevantKinds: [ResourceKind.COLLECTION, ResourceKind.PROCESS],
-    },
-    {
-        name: 'remove',
-        action: 'removeSelected',
-        relevantKinds: [ResourceKind.COLLECTION],
-    },
-];
-
 export type MultiselectToolbarProps = {
-    actions: Array<MultiselectToolbarAction>;
     isVisible: boolean;
     checkedList: TCheckedList;
-    copySelected: () => void;
-    moveSelected: () => void;
-    removeSelected: (selectedList: TCheckedList) => void;
+    resources: ResourcesState;
+    executeMulti: (action: ContextMenuAction, checkedList: TCheckedList, resources: ResourcesState) => void;
 };
 
 export const MultiselectToolbar = connect(
@@ -79,30 +50,43 @@ export const MultiselectToolbar = connect(
     mapDispatchToProps
 )(
     withStyles(styles)((props: MultiselectToolbarProps & WithStyles<CssRules>) => {
-        // console.log(props);
-        const { classes, actions, isVisible, checkedList } = props;
-
-        //include any action that can be applied to all selected elements
-
-        const currentResourceKinds = new Set(selectedToArray(checkedList).map((element) => extractUuidKind(element) as string));
-        console.log('CURRENT_KINDS', currentResourceKinds);
-        const buttons = actions.filter((action) => {
-            // console.log('ACTION.KINDS', action.relevantKinds);
-            return action.relevantKinds.every((kind) => {
-                // console.log('KIND', kind);
-                // console.log('setHasKind', currentResourceKinds.has(kind));
-                return currentResourceKinds.has(kind);
-            });
-        });
-        // console.log('BUTTONS', buttons);
+        const { classes, checkedList } = props;
+        const currentResourceKinds = Array.from(selectedToKindSet(checkedList));
+
+        const currentPathIsTrash = window.location.pathname === "/trash";
+        const buttons =
+            currentPathIsTrash && selectedToKindSet(checkedList).size
+                ? [toggleTrashAction]
+                : selectActionsByKind(currentResourceKinds, multiselectActionsFilters);
+
         return (
-            <Toolbar className={isVisible && buttons.length ? `${classes.root} ${classes.expanded}` : classes.root} style={{ width: `${buttons.length * 5.8}rem` }}>
+            <Toolbar
+                className={classes.root}
+                style={{ width: `${buttons.length * 2.12}rem` }}>
                 {buttons.length ? (
-                    buttons.map((btn) => (
-                        <Button key={btn.name} className={`${classes.button} ${classes.expanded}`} onClick={() => props[btn.action](checkedList)}>
-                            {btn.name}
-                        </Button>
-                    ))
+                    buttons.map((btn, i) =>
+                        btn.name === "ToggleTrashAction" ? (
+                            <Tooltip
+                                className={classes.button}
+                                title={currentPathIsTrash ? "Restore All" : "Move to trash"}
+                                key={i}
+                                disableFocusListener>
+                                <IconButton onClick={() => props.executeMulti(btn, checkedList, props.resources)}>
+                                    {currentPathIsTrash ? <RestoreFromTrashIcon /> : <TrashIcon />}
+                                </IconButton>
+                            </Tooltip>
+                        ) : (
+                            <Tooltip
+                                className={classes.button}
+                                title={btn.name}
+                                key={i}
+                                disableFocusListener>
+                                <IconButton onClick={() => props.executeMulti(btn, checkedList, props.resources)}>
+                                    {btn.icon ? btn.icon({}) : <></>}
+                                </IconButton>
+                            </Tooltip>
+                        )
+                    )
                 ) : (
                     <></>
                 )}
@@ -111,45 +95,120 @@ export const MultiselectToolbar = connect(
     })
 );
 
-function selectedToString(checkedList: TCheckedList) {
-    let stringifiedSelectedList: string = '';
+export function selectedToArray(checkedList: TCheckedList): Array<string> {
+    const arrayifiedSelectedList: Array<string> = [];
     for (const [key, value] of Object.entries(checkedList)) {
         if (value === true) {
-            stringifiedSelectedList += key + ',';
+            arrayifiedSelectedList.push(key);
         }
     }
-    return stringifiedSelectedList.slice(0, -1);
+    return arrayifiedSelectedList;
 }
 
-function selectedToArray<T>(checkedList: TCheckedList): Array<string> {
-    const arrayifiedSelectedList: Array<string> = [];
+export function selectedToKindSet(checkedList: TCheckedList): Set<string> {
+    const setifiedList = new Set<string>();
     for (const [key, value] of Object.entries(checkedList)) {
         if (value === true) {
-            arrayifiedSelectedList.push(key);
+            setifiedList.add(extractUuidKind(key) as string);
         }
     }
-    return arrayifiedSelectedList;
+    return setifiedList;
+}
+
+function groupByKind(checkedList: TCheckedList, resources: ResourcesState): Record<string, ContextMenuResource[]> {
+    const result = {};
+    selectedToArray(checkedList).forEach(uuid => {
+        const resource = getResource(uuid)(resources) as Resource;
+        if (!result[resource.kind]) result[resource.kind] = [];
+        result[resource.kind].push(resource);
+    });
+    return result;
 }
 
+function filterActions(actionArray: ContextMenuActionSet, filters: Set<string>): Array<ContextMenuAction> {
+    return actionArray[0].filter(action => filters.has(action.name as string));
+}
+
+function selectActionsByKind(currentResourceKinds: Array<string>, filterSet: TMultiselectActionsFilters) {
+    const rawResult: Set<ContextMenuAction> = new Set();
+    const resultNames = new Set();
+    const allFiltersArray: ContextMenuAction[][] = [];
+    currentResourceKinds.forEach(kind => {
+        if (filterSet[kind]) {
+            const actions = filterActions(...filterSet[kind]);
+            allFiltersArray.push(actions);
+            actions.forEach(action => {
+                if (!resultNames.has(action.name)) {
+                    rawResult.add(action);
+                    resultNames.add(action.name);
+                }
+            });
+        }
+    });
+
+    const filteredNameSet = allFiltersArray.map(filterArray => {
+        const resultSet = new Set();
+        filterArray.forEach(action => resultSet.add(action.name || ""));
+        return resultSet;
+    });
+
+    const filteredResult = Array.from(rawResult).filter(action => {
+        for (let i = 0; i < filteredNameSet.length; i++) {
+            if (!filteredNameSet[i].has(action.name)) return false;
+        }
+        return true;
+    });
+
+    return filteredResult.sort((a, b) => {
+        const nameA = a.name || "";
+        const nameB = b.name || "";
+        if (nameA < nameB) {
+            return -1;
+        }
+        if (nameA > nameB) {
+            return 1;
+        }
+        return 0;
+    });
+}
+
+//--------------------------------------------------//
+
 function mapStateToProps(state: RootState) {
-    // console.log(state.resources, state.multiselect.checkedList);
     const { isVisible, checkedList } = state.multiselect;
     return {
         isVisible: isVisible,
         checkedList: checkedList as TCheckedList,
-        // selectedList: state.multiselect.checkedList.forEach(processUUID=>containerRequestUUID)
+        resources: state.resources,
     };
 }
 
 function mapDispatchToProps(dispatch: Dispatch) {
     return {
-        copySelected: () => {},
-        moveSelected: () => {},
-        removeSelected: (checkedList: TCheckedList) => removeMulti(dispatch, checkedList),
-    };
-}
+        executeMulti: (selectedAction: ContextMenuAction, checkedList: TCheckedList, resources: ResourcesState): void => {
+            const kindGroups = groupByKind(checkedList, resources);
+            switch (selectedAction.name) {
+                case contextMenuActionConsts.MOVE_TO:
+                    const firstResource = getResource(selectedToArray(checkedList)[0])(resources) as Resource;
+
+                    const actionSet = kindToActionSet[firstResource.kind];
+                    const action = findActionByName(selectedAction.name as string, actionSet);
 
-function removeMulti(dispatch: Dispatch, checkedList: TCheckedList): void {
-    const list: Array<string> = selectedToArray(checkedList);
-    dispatch<any>(list.length === 1 ? openRemoveProcessDialog(list[0]) : openRemoveManyProcessesDialog(list));
+                    if (action) action.execute(dispatch, kindGroups[firstResource.kind]);
+                    break;
+                case contextMenuActionConsts.COPY_TO_CLIPBOARD:
+                    const selectedResources = selectedToArray(checkedList).map(uuid => getResource(uuid)(resources));
+                    dispatch<any>(copyToClipboardAction(selectedResources));
+                    break;
+                default:
+                    for (const kind in kindGroups) {
+                        const actionSet = kindToActionSet[kind];
+                        const action = findActionByName(selectedAction.name as string, actionSet);
+
+                        if (action) action.execute(dispatch, kindGroups[kind]);
+                    }
+                    break;
+            }
+        },
+    };
 }