mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 15:05:48 +01:00
87 lines
2.6 KiB
TypeScript
87 lines
2.6 KiB
TypeScript
import { SelectItem } from '@mantine/core';
|
|
import { closeModal, ContextModalProps } from '@mantine/modals';
|
|
import { useConfigContext } from '../../../../config/provider';
|
|
import { useConfigStore } from '../../../../config/store';
|
|
import { WidgetChangePositionModalInnerProps } from '../../Tiles/Widgets/WidgetsMenu';
|
|
import { Tiles } from '../../Tiles/tilesDefinitions';
|
|
import { ChangePositionModal } from './ChangePositionModal';
|
|
import widgets from '../../../../widgets';
|
|
|
|
export const ChangeIntegrationPositionModal = ({
|
|
context,
|
|
id,
|
|
innerProps,
|
|
}: ContextModalProps<WidgetChangePositionModalInnerProps>) => {
|
|
const { name: configName } = useConfigContext();
|
|
const updateConfig = useConfigStore((x) => x.updateConfig);
|
|
|
|
const handleSubmit = (x: number, y: number, width: number, height: number) => {
|
|
if (!configName) {
|
|
return;
|
|
}
|
|
|
|
updateConfig(configName, (prev) => ({
|
|
...prev,
|
|
integrations: {
|
|
...prev.integrations,
|
|
[innerProps.integration]: {
|
|
...prev.integrations[innerProps.integration],
|
|
shape: {
|
|
location: {
|
|
x,
|
|
y,
|
|
},
|
|
size: {
|
|
height,
|
|
width,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}));
|
|
context.closeModal(id);
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
closeModal(id);
|
|
};
|
|
|
|
const widthData = useWidthData(innerProps.integration);
|
|
const heightData = useHeightData(innerProps.integration);
|
|
|
|
return (
|
|
<ChangePositionModal
|
|
onSubmit={handleSubmit}
|
|
onCancel={handleCancel}
|
|
heightData={heightData}
|
|
widthData={widthData}
|
|
initialX={innerProps.module.shape.location.x}
|
|
initialY={innerProps.module.shape.location.y}
|
|
initialWidth={innerProps.module.shape.size.width}
|
|
initialHeight={innerProps.module.shape.size.height}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const useWidthData = (integration: string): SelectItem[] => {
|
|
const currentWidget = widgets[integration as keyof typeof widgets];
|
|
if (!currentWidget) return [];
|
|
const offset = currentWidget.gridstack.minWidth ?? 2;
|
|
const length = (currentWidget.gridstack.maxWidth ?? 12) - offset;
|
|
return Array.from({ length }, (_, i) => i + offset).map((n) => ({
|
|
value: n.toString(),
|
|
label: `${64 * n}px`,
|
|
}));
|
|
};
|
|
|
|
const useHeightData = (integration: string): SelectItem[] => {
|
|
const currentWidget = widgets[integration as keyof typeof widgets];
|
|
if (!currentWidget) return [];
|
|
const offset = currentWidget.gridstack.minHeight ?? 2;
|
|
const length = (currentWidget.gridstack.maxHeight ?? 12) - offset;
|
|
return Array.from({ length }, (_, i) => i + offset).map((n) => ({
|
|
value: n.toString(),
|
|
label: `${64 * n}px`,
|
|
}));
|
|
};
|