-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d23379e
commit 19bea52
Showing
8 changed files
with
312 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import { useEffect, useState } from 'react'; | ||
|
||
export const defaultGardenPackageWidth = 300; | ||
|
||
export function useItemWidths(columnCount: number) { | ||
const [widths, setWidths] = useState<number[]>([]); | ||
|
||
/** | ||
* How to calculate longest width? | ||
*/ | ||
useEffect(() => { | ||
if (columnCount > 0) { | ||
setWidths(new Array(columnCount).fill(defaultGardenPackageWidth)); | ||
} | ||
}, [columnCount]); | ||
|
||
return widths; | ||
} | ||
import { useEffect, useState } from 'react'; | ||
|
||
export const defaultGardenPackageWidth = 300; | ||
|
||
export function useItemWidths(columnCount: number) { | ||
const [widths, setWidths] = useState<number[]>([]); | ||
|
||
/** | ||
* How to calculate longest width? | ||
*/ | ||
useEffect(() => { | ||
if (columnCount > 0) { | ||
setWidths(new Array(columnCount).fill(defaultGardenPackageWidth)); | ||
} | ||
}, [columnCount]); | ||
|
||
return widths; | ||
} |
67 changes: 35 additions & 32 deletions
67
packages/workspace-fusion/src/lib/components/ErrorComponent.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
import { Dialog, Typography } from '@equinor/eds-core-react'; | ||
|
||
interface DumpsterFireDialogProps { | ||
title?: string; | ||
text: string; | ||
buttons: React.ReactElement[]; | ||
} | ||
|
||
export function DumpsterFireDialog({ | ||
text, | ||
title = 'Ooops, this is embarassing..', | ||
buttons, | ||
}: DumpsterFireDialogProps): JSX.Element { | ||
return ( | ||
<Dialog style={{ width: '600px' }} open={true}> | ||
<Dialog.Header> | ||
<Dialog.Title>{title}</Dialog.Title> | ||
</Dialog.Header> | ||
<Dialog.CustomContent> | ||
<Typography variant="body_short">{text}</Typography> | ||
</Dialog.CustomContent> | ||
<Dialog.Actions> | ||
<> | ||
{buttons.map((comp, i) => { | ||
const Component = () => comp; | ||
return <Component key={i} />; | ||
})} | ||
</> | ||
</Dialog.Actions> | ||
</Dialog> | ||
); | ||
} | ||
import { Button, Dialog, Typography } from '@equinor/eds-core-react'; | ||
import { useState } from 'react'; | ||
|
||
interface DumpsterFireDialogProps { | ||
title?: string; | ||
text: string; | ||
buttons?: React.ReactElement[]; | ||
} | ||
|
||
export function DumpsterFireDialog({ | ||
text, | ||
title = 'Ooops, this is embarassing..', | ||
buttons, | ||
}: DumpsterFireDialogProps): JSX.Element { | ||
const [isOpen, setIsOpen] = useState(true); | ||
return ( | ||
<Dialog style={{ width: '600px' }} open={isOpen} isDismissable={true}> | ||
<Dialog.Header> | ||
<Dialog.Title>{title}</Dialog.Title> | ||
</Dialog.Header> | ||
<Dialog.CustomContent> | ||
<Typography variant="body_short">{text}</Typography> | ||
</Dialog.CustomContent> | ||
<Dialog.Actions> | ||
<> | ||
{buttons?.map((comp, i) => { | ||
const Component = () => comp; | ||
return <Component key={i} />; | ||
})} | ||
</> | ||
<Button onClick={() => setIsOpen(false)}>OK</Button> | ||
</Dialog.Actions> | ||
</Dialog> | ||
); | ||
} |
71 changes: 36 additions & 35 deletions
71
packages/workspace-fusion/src/lib/integrations/grid/grid.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
/** | ||
* Integrations folder for exporting types from the integration | ||
* namespace: @equinor/workspace-fusion/grid | ||
*/ | ||
|
||
import { | ||
ColDef, | ||
ColumnState, | ||
GridOptions, | ||
ICellRendererProps, | ||
IServerSideGetRowsParams, | ||
IServerSideGetRowsRequest, | ||
Module, | ||
} from '@equinor/workspace-ag-grid'; | ||
|
||
export type { | ||
ColDef, | ||
ColumnState, | ||
GridConfig, | ||
GridOptions, | ||
ICellRendererProps, | ||
IServerSideGetRowsParams, | ||
IServerSideGetRowsRequest, | ||
}; | ||
|
||
type GridConfig<T, TFilter> = { | ||
columnDefinitions: ColDef<T>[]; | ||
getRows: (params: IServerSideGetRowsParams, filters: TFilter) => Promise<void>; | ||
gridOptions?: Omit<GridOptions<T>, 'rowData' | 'context' | 'pagination' | 'paginationPageSize'>; | ||
/** | ||
* AG-grid-modules | ||
* https://www.ag-grid.com/javascript-data-grid/modules/ | ||
*/ | ||
modules?: Module[]; | ||
}; | ||
/** | ||
* Integrations folder for exporting types from the integration | ||
* namespace: @equinor/workspace-fusion/grid | ||
*/ | ||
|
||
import { | ||
ColDef, | ||
ColumnState, | ||
GridOptions, | ||
ICellRendererProps, | ||
IServerSideGetRowsParams, | ||
IServerSideGetRowsRequest, | ||
Module, | ||
} from '@equinor/workspace-ag-grid'; | ||
|
||
export type { | ||
ColDef, | ||
ColumnState, | ||
GridConfig, | ||
GridOptions, | ||
ICellRendererProps, | ||
IServerSideGetRowsParams, | ||
IServerSideGetRowsRequest, | ||
}; | ||
|
||
type GridConfig<T, TFilter> = { | ||
columnDefinitions: ColDef<T>[]; | ||
getRows: (params: IServerSideGetRowsParams, filters: TFilter) => Promise<void>; | ||
gridOptions?: Omit<GridOptions<T>, 'rowData' | 'context' | 'pagination' | 'paginationPageSize'>; | ||
/** | ||
* AG-grid-modules | ||
* https://www.ag-grid.com/javascript-data-grid/modules/ | ||
*/ | ||
modules?: Module[]; | ||
excelExport?: (params: TFilter) => Promise<void>; | ||
}; |
10 changes: 5 additions & 5 deletions
10
packages/workspace-fusion/src/lib/integrations/grid/types/workspaceProps.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { GridConfig } from '../grid'; | ||
|
||
export type WorkspaceGridProps<TData extends Record<PropertyKey, unknown>, TFilter> = { | ||
gridOptions?: GridConfig<TData, TFilter>; | ||
}; | ||
import { GridConfig } from '../grid'; | ||
|
||
export type WorkspaceGridProps<TData extends Record<PropertyKey, unknown>, TFilter> = { | ||
gridOptions?: GridConfig<TData, TFilter>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
packages/workspace-fusion/src/modules/grid/components/GridOptionsPopover.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import { Button, Icon, Popover, Progress } from '@equinor/eds-core-react'; | ||
import { close, more_vertical } from '@equinor/eds-icons'; | ||
import { tokens } from '@equinor/eds-tokens'; | ||
import { useMutation } from '@tanstack/react-query'; | ||
import { useRef, useState } from 'react'; | ||
import { createPortal } from 'react-dom'; | ||
import styled from 'styled-components'; | ||
import { DumpsterFireDialog } from '../../../lib/components/ErrorComponent'; | ||
|
||
Icon.add({ close, more_vertical }); | ||
|
||
type GridOptionsPopoverProps = { | ||
anchor: HTMLElement; | ||
filterState: any; | ||
excelExport?: (params: any) => Promise<void>; | ||
}; | ||
export const GridOptionPopover = ({ anchor, excelExport, filterState }: GridOptionsPopoverProps) => { | ||
const [isOpen, setIsOpen] = useState(false); | ||
const pRef = useRef(null); | ||
const popoverRef = useRef<HTMLDivElement | null>(null); | ||
|
||
const { error, isLoading, isError, mutateAsync } = useMutation(['exportData'], async () => { | ||
if (!excelExport) { | ||
console.warn('No Excel export function found'); | ||
return; | ||
} | ||
return await excelExport(filterState); | ||
}); | ||
|
||
const handleExportToExcel = () => { | ||
mutateAsync(); | ||
}; | ||
|
||
return ( | ||
<> | ||
<Icon | ||
name="more_vertical" | ||
color={tokens.colors.interactive.primary__resting.hex} | ||
ref={pRef} | ||
onClick={() => setIsOpen((s) => !s)} | ||
/> | ||
{createPortal( | ||
<Popover ref={popoverRef} open={isOpen} anchorEl={pRef.current}> | ||
<Popover.Header> | ||
<StyledPopoverHeaderLine> | ||
<Popover.Title>Grid Options</Popover.Title> | ||
<Icon | ||
name="close" | ||
color={tokens.colors.interactive.primary__resting.hex} | ||
onClick={() => setIsOpen(false)} | ||
/> | ||
</StyledPopoverHeaderLine> | ||
</Popover.Header> | ||
<Popover.Content style={{ overflow: 'hidden' }}> | ||
<ButtContainer> | ||
{isError && <DumpsterFireDialog text={typeof error === 'string' ? error : 'We encountered an issue fetching the data. Please try again later.'} />} | ||
<Button disabled={excelExport == undefined} style={{ width: '130px' }} onClick={!isLoading ? handleExportToExcel : undefined}> | ||
{isLoading ? <Progress.Dots color={'neutral'} /> : 'Export to Excel'} | ||
</Button> | ||
</ButtContainer> | ||
</Popover.Content> | ||
</Popover>, | ||
anchor | ||
)} | ||
</> | ||
); | ||
}; | ||
|
||
const StyledPopoverHeaderLine = styled.div` | ||
display: flex; | ||
width: 268px; | ||
justify-content: space-between; | ||
align-items: center; | ||
`; | ||
|
||
const ButtContainer = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
`; | ||
|
||
export const StyledLoadingWrapper = styled.div` | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
gap: 1em; | ||
width: 268px; | ||
justify-content: center; | ||
`; |
Oops, something went wrong.