5bc876e4b4
changes - - make iframe side panel to match others -- ie use SidePanelHeader for title - make url optional in configuration to match that of the other widgets (allow partial saves) - render No data status when error or no url - split widget sizes into two -- graph widget sizes and widget sizes (graph widgets are a subset of chart widgets)
125 lines
4.3 KiB
TypeScript
125 lines
4.3 KiB
TypeScript
import { WIDGET_SIZES } from '@/page-layout/constants/WidgetSizes';
|
|
import { PageLayoutComponentInstanceContext } from '@/page-layout/states/contexts/PageLayoutComponentInstanceContext';
|
|
import { pageLayoutCurrentLayoutsComponentState } from '@/page-layout/states/pageLayoutCurrentLayoutsComponentState';
|
|
import { pageLayoutDraftComponentState } from '@/page-layout/states/pageLayoutDraftComponentState';
|
|
import { pageLayoutDraggedAreaComponentState } from '@/page-layout/states/pageLayoutDraggedAreaComponentState';
|
|
import { addWidgetToTab } from '@/page-layout/utils/addWidgetToTab';
|
|
import { createDefaultIframeWidget } from '@/page-layout/utils/createDefaultIframeWidget';
|
|
import { getDefaultWidgetPosition } from '@/page-layout/utils/getDefaultWidgetPosition';
|
|
import { getTabListInstanceIdFromPageLayoutId } from '@/page-layout/utils/getTabListInstanceIdFromPageLayoutId';
|
|
import { getUpdatedTabLayouts } from '@/page-layout/utils/getUpdatedTabLayouts';
|
|
import { activeTabIdComponentState } from '@/ui/layout/tab-list/states/activeTabIdComponentState';
|
|
import { useAvailableComponentInstanceIdOrThrow } from '@/ui/utilities/state/component-state/hooks/useAvailableComponentInstanceIdOrThrow';
|
|
import { useRecoilComponentCallbackState } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentCallbackState';
|
|
import { useRecoilComponentValue } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValue';
|
|
import { useRecoilCallback } from 'recoil';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
import { type PageLayoutWidget, WidgetType } from '~/generated/graphql';
|
|
|
|
export const useCreatePageLayoutIframeWidget = (
|
|
pageLayoutIdFromProps?: string,
|
|
) => {
|
|
const pageLayoutId = useAvailableComponentInstanceIdOrThrow(
|
|
PageLayoutComponentInstanceContext,
|
|
pageLayoutIdFromProps,
|
|
);
|
|
|
|
const activeTabId = useRecoilComponentValue(
|
|
activeTabIdComponentState,
|
|
getTabListInstanceIdFromPageLayoutId(pageLayoutId),
|
|
);
|
|
|
|
const pageLayoutCurrentLayoutsState = useRecoilComponentCallbackState(
|
|
pageLayoutCurrentLayoutsComponentState,
|
|
pageLayoutId,
|
|
);
|
|
|
|
const pageLayoutDraggedAreaState = useRecoilComponentCallbackState(
|
|
pageLayoutDraggedAreaComponentState,
|
|
pageLayoutId,
|
|
);
|
|
|
|
const pageLayoutDraftState = useRecoilComponentCallbackState(
|
|
pageLayoutDraftComponentState,
|
|
pageLayoutId,
|
|
);
|
|
|
|
const createPageLayoutIframeWidget = useRecoilCallback(
|
|
({ snapshot, set }) =>
|
|
(title: string, url: string | null): PageLayoutWidget => {
|
|
const allTabLayouts = snapshot
|
|
.getLoadable(pageLayoutCurrentLayoutsState)
|
|
.getValue();
|
|
|
|
const pageLayoutDraggedArea = snapshot
|
|
.getLoadable(pageLayoutDraggedAreaState)
|
|
.getValue();
|
|
|
|
if (!isDefined(activeTabId)) {
|
|
throw new Error(
|
|
'A tab must be selected to create a new iframe widget',
|
|
);
|
|
}
|
|
|
|
const widgetId = uuidv4();
|
|
const iframeSize = WIDGET_SIZES[WidgetType.IFRAME]!;
|
|
const defaultIframeSize = iframeSize.default;
|
|
const minimumSize = iframeSize.minimum;
|
|
const position = getDefaultWidgetPosition(
|
|
pageLayoutDraggedArea,
|
|
defaultIframeSize,
|
|
minimumSize,
|
|
);
|
|
|
|
const newWidget = createDefaultIframeWidget(
|
|
widgetId,
|
|
activeTabId,
|
|
title,
|
|
url,
|
|
{
|
|
row: position.y,
|
|
column: position.x,
|
|
rowSpan: position.h,
|
|
columnSpan: position.w,
|
|
},
|
|
);
|
|
|
|
const newLayout = {
|
|
i: widgetId,
|
|
x: position.x,
|
|
y: position.y,
|
|
w: position.w,
|
|
h: position.h,
|
|
minW: minimumSize.w,
|
|
minH: minimumSize.h,
|
|
};
|
|
|
|
const updatedLayouts = getUpdatedTabLayouts(
|
|
allTabLayouts,
|
|
activeTabId,
|
|
newLayout,
|
|
);
|
|
|
|
set(pageLayoutCurrentLayoutsState, updatedLayouts);
|
|
|
|
set(pageLayoutDraftState, (prev) => ({
|
|
...prev,
|
|
tabs: addWidgetToTab(prev.tabs, activeTabId, newWidget),
|
|
}));
|
|
|
|
set(pageLayoutDraggedAreaState, null);
|
|
|
|
return newWidget;
|
|
},
|
|
[
|
|
activeTabId,
|
|
pageLayoutCurrentLayoutsState,
|
|
pageLayoutDraftState,
|
|
pageLayoutDraggedAreaState,
|
|
],
|
|
);
|
|
|
|
return { createPageLayoutIframeWidget };
|
|
};
|