aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/GraphArea.tsx
blob: f8f40d22e7333baaf83a6e878315f1b7984b08a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import Box from '@mui/material/Box';
import { useTheme } from '@mui/material/styles';
import { observer } from 'mobx-react-lite';
import { useResizeDetector } from 'react-resize-detector';

import Loading from '../Loading';
import { useRootStore } from '../RootStoreProvider';

import DotGraphVisualizer from './DotGraphVisualizer';
import VisibilityPanel from './VisibilityPanel';
import ZoomCanvas from './ZoomCanvas';

function GraphArea(): JSX.Element {
  const { editorStore } = useRootStore();
  const { breakpoints } = useTheme();
  const { ref, width, height } = useResizeDetector({
    refreshMode: 'debounce',
  });

  if (editorStore === undefined) {
    return <Loading />;
  }

  const { graph } = editorStore;
  const breakpoint = breakpoints.values.sm;
  const dialog =
    width === undefined ||
    height === undefined ||
    width < breakpoint ||
    height < breakpoint;

  return (
    <Box
      width="100%"
      height="100%"
      overflow="hidden"
      position="relative"
      ref={ref}
    >
      <ZoomCanvas>
        {(fitZoom) => <DotGraphVisualizer graph={graph} fitZoom={fitZoom} />}
      </ZoomCanvas>
      <VisibilityPanel graph={graph} dialog={dialog} />
    </Box>
  );
}

export default observer(GraphArea);