3b868c3d2a
In this PR: - Refactored the page layout renderer - Converted all the states to component states - Removed the page layout edition in settings TODOs in next PRs: - Fix bug with the drag selector not taking the scroll into account to display the dragged area - Readd the tab edition in edit mode
13 lines
252 B
TypeScript
13 lines
252 B
TypeScript
export const calculateGridCellPosition = ({
|
|
index,
|
|
numberOfColumns,
|
|
}: {
|
|
index: number;
|
|
numberOfColumns: number;
|
|
}) => {
|
|
const column = index % numberOfColumns;
|
|
const row = Math.floor(index / numberOfColumns);
|
|
|
|
return { row, column };
|
|
};
|