19465: Removes unused code.
[arvados-workbench2.git] / src / components / multi-panel-view / multi-panel-view.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import React, { MutableRefObject, ReactElement, ReactNode, useEffect, useRef, useState } from 'react';
6 import {
7     Button,
8     Grid,
9     Paper,
10     StyleRulesCallback,
11     Tooltip,
12     withStyles,
13     WithStyles
14 } from "@material-ui/core";
15 import { GridProps } from '@material-ui/core/Grid';
16 import { isArray } from 'lodash';
17 import { DefaultView } from 'components/default-view/default-view';
18 import { InfoIcon } from 'components/icon/icon';
19 import { ReactNodeArray } from 'prop-types';
20 import classNames from 'classnames';
21
22 type CssRules = 'button' | 'buttonIcon' | 'content';
23
24 const styles: StyleRulesCallback<CssRules> = theme => ({
25     button: {
26         padding: '2px 5px',
27         marginRight: '5px',
28     },
29     buttonIcon: {
30         boxShadow: 'none',
31         padding: '2px 0px 2px 5px',
32         fontSize: '1rem'
33     },
34     content: {
35         overflow: 'auto',
36     },
37 });
38
39 interface MPVHideablePanelDataProps {
40     name: string;
41     visible: boolean;
42     maximized: boolean;
43     illuminated: boolean;
44     children: ReactNode;
45     panelRef?: MutableRefObject<any>;
46 }
47
48 interface MPVHideablePanelActionProps {
49     doHidePanel: () => void;
50     doMaximizePanel: () => void;
51 }
52
53 type MPVHideablePanelProps = MPVHideablePanelDataProps & MPVHideablePanelActionProps;
54
55 const MPVHideablePanel = ({doHidePanel, doMaximizePanel, name, visible, maximized, illuminated, ...props}: MPVHideablePanelProps) =>
56     visible
57     ? <>
58         {React.cloneElement((props.children as ReactElement), { doHidePanel, doMaximizePanel, panelName: name, panelMaximized: maximized, panelIlluminated: illuminated, panelRef: props.panelRef })}
59     </>
60     : null;
61
62 interface MPVPanelDataProps {
63     panelName?: string;
64     panelMaximized?: boolean;
65     panelIlluminated?: boolean;
66     panelRef?: MutableRefObject<any>;
67     forwardProps?: boolean;
68     maxHeight?: string;
69 }
70
71 interface MPVPanelActionProps {
72     doHidePanel?: () => void;
73     doMaximizePanel?: () => void;
74 }
75
76 // Props received by panel implementors
77 export type MPVPanelProps = MPVPanelDataProps & MPVPanelActionProps;
78
79 type MPVPanelContentProps = {children: ReactElement} & MPVPanelProps & GridProps;
80
81 // Grid item compatible component for layout and MPV props passing
82 export const MPVPanelContent = ({doHidePanel, doMaximizePanel, panelName,
83     panelMaximized, panelIlluminated, panelRef, forwardProps, maxHeight,
84     ...props}: MPVPanelContentProps) => {
85     useEffect(() => {
86         if (panelRef && panelRef.current) {
87             panelRef.current.scrollIntoView({behavior: 'smooth'});
88         }
89     }, [panelRef]);
90
91     const mh = panelMaximized
92         ? '100%'
93         : maxHeight;
94
95     return <Grid item style={{maxHeight: mh}} {...props}>
96         <span ref={panelRef} /> {/* Element to scroll to when the panel is selected */}
97         <Paper style={{height: '100%'}} elevation={panelIlluminated ? 8 : 0}>
98             { forwardProps
99                 ? React.cloneElement(props.children, { doHidePanel, doMaximizePanel, panelName, panelMaximized })
100                 : props.children }
101         </Paper>
102     </Grid>;
103 }
104
105 export interface MPVPanelState {
106     name: string;
107     visible?: boolean;
108 }
109 interface MPVContainerDataProps {
110     panelStates?: MPVPanelState[];
111 }
112 type MPVContainerProps = MPVContainerDataProps & GridProps;
113
114 // Grid container compatible component that also handles panel toggling.
115 const MPVContainerComponent = ({children, panelStates, classes, ...props}: MPVContainerProps & WithStyles<CssRules>) => {
116     if (children === undefined || children === null || children === {}) {
117         children = [];
118     } else if (!isArray(children)) {
119         children = [children];
120     }
121     const visibility = (children as ReactNodeArray).map((_, idx) =>
122         !panelStates || // if panelStates wasn't passed, default to all visible panels
123             (panelStates[idx] &&
124                 (panelStates[idx].visible || panelStates[idx].visible === undefined)));
125     const [panelVisibility, setPanelVisibility] = useState<boolean[]>(visibility);
126     const [highlightedPanel, setHighlightedPanel] = useState<number>(-1);
127     const [selectedPanel, setSelectedPanel] = useState<number>(-1);
128     const panelRef = useRef<any>(null);
129
130     let panels: JSX.Element[] = [];
131     let buttons: JSX.Element[] = [];
132
133     if (isArray(children)) {
134         for (let idx = 0; idx < children.length; idx++) {
135             const showFn = (idx: number) => () => {
136                 setPanelVisibility([
137                     ...panelVisibility.slice(0, idx),
138                     true,
139                     ...panelVisibility.slice(idx+1)
140                 ]);
141                 setSelectedPanel(idx);
142             };
143             const hideFn = (idx: number) => () => {
144                 setPanelVisibility([
145                     ...panelVisibility.slice(0, idx),
146                     false,
147                     ...panelVisibility.slice(idx+1)
148                 ])
149             };
150             const maximizeFn = (idx: number) => () => {
151                 // Maximize X == hide all but X
152                 setPanelVisibility([
153                     ...panelVisibility.slice(0, idx).map(() => false),
154                     true,
155                     ...panelVisibility.slice(idx+1).map(() => false),
156                 ])
157             };
158             const panelName = panelStates === undefined
159                 ? `Panel ${idx+1}`
160                 : (panelStates[idx] && panelStates[idx].name) || `Panel ${idx+1}`;
161             const btnVariant = panelVisibility[idx]
162                 ? "contained"
163                 : "outlined";
164             const btnTooltip = panelVisibility[idx]
165                 ? ``
166                 :`Open ${panelName} panel`;
167             const panelIsMaximized = panelVisibility[idx] &&
168                 panelVisibility.filter(e => e).length === 1;
169
170             buttons = [
171                 ...buttons,
172                 <Tooltip title={btnTooltip} disableFocusListener>
173                     <Button variant={btnVariant} size="small" color="primary"
174                         className={classNames(classes.button)}
175                         onMouseEnter={() => {
176                             setHighlightedPanel(idx);
177                         }}
178                         onMouseLeave={() => {
179                             setHighlightedPanel(-1);
180                         }}
181                         onClick={showFn(idx)}>
182                             {panelName}
183                     </Button>
184                 </Tooltip>
185             ];
186
187             const aPanel =
188                 <MPVHideablePanel key={idx} visible={panelVisibility[idx]} name={panelName}
189                     panelRef={(idx === selectedPanel) ? panelRef : undefined}
190                     maximized={panelIsMaximized} illuminated={idx === highlightedPanel}
191                     doHidePanel={hideFn(idx)} doMaximizePanel={maximizeFn(idx)}>
192                     {children[idx]}
193                 </MPVHideablePanel>;
194             panels = [...panels, aPanel];
195         };
196     };
197
198     return <Grid container {...props}>
199         <Grid container item direction="row">
200             { buttons.map((tgl, idx) => <Grid item key={idx}>{tgl}</Grid>) }
201         </Grid>
202         <Grid container item {...props} xs className={classes.content}
203             onScroll={() => setSelectedPanel(-1)}>
204             { panelVisibility.includes(true)
205                 ? panels
206                 : <Grid container item alignItems='center' justify='center'>
207                     <DefaultView messages={["All panels are hidden.", "Click on the buttons above to show them."]} icon={InfoIcon} />
208                 </Grid> }
209         </Grid>
210     </Grid>;
211 };
212
213 export const MPVContainer = withStyles(styles)(MPVContainerComponent);