File size: 5,044 Bytes
1e92f2d |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
import { DndContext, KeyboardSensor, PointerSensor, useSensor, useSensors } from '@dnd-kit/core';
import { arrayMove, SortableContext, sortableKeyboardCoordinates } from '@dnd-kit/sortable';
import { useResizeObserver, useDebounce, useEvent } from '@wordpress/compose';
import { useMemo, Children, isValidElement, useState } from 'react';
import { GridItem } from './grid-item';
import type { GridLayoutItem, GridProps } from './types';
import type { DragOverEvent } from '@dnd-kit/core';
export function Grid( {
layout,
columns = 6,
children,
className,
spacing = 2,
rowHeight = 'auto',
minColumnWidth,
editMode = false,
onChangeLayout,
}: GridProps ) {
// Temporary layout to avoid updaing the layout while dragging
const [ temporaryLayout, setTemporaryLayout ] = useState< GridLayoutItem[] | undefined >(
layout
);
const activeLayout = temporaryLayout || layout;
const [ containerWidth, setContainerWidth ] = useState( 0 );
const resizeObserverRef = useResizeObserver( ( [ { contentRect } ] ) => {
setContainerWidth( contentRect.width );
} );
const gapPx = spacing * 4;
const effectiveColumns = useMemo( () => {
if ( ! minColumnWidth ) {
return columns;
}
const totalWidthPerColumn = minColumnWidth + gapPx;
const maxColumns = Math.floor( ( containerWidth + gapPx ) / totalWidthPerColumn );
return Math.max( 1, maxColumns );
}, [ minColumnWidth, gapPx, containerWidth, columns ] );
const columnWidth = ( containerWidth - gapPx ) / effectiveColumns;
const layoutMap = useMemo( () => {
const map = new Map< string, GridLayoutItem >();
activeLayout.forEach( ( item ) => map.set( item.key, item ) );
return map;
}, [ activeLayout ] );
const items = useMemo(
() =>
[ ...activeLayout ]
.sort( ( a, b ) => ( a.order ?? Infinity ) - ( b.order ?? Infinity ) )
.map( ( item ) => item.key ),
[ activeLayout ]
);
const [ childrenMap, remaining ] = useMemo( () => {
const map = new Map< string, React.ReactElement >();
const rest: React.ReactNode[] = [];
Children.forEach( children, ( child ) => {
if ( ! isValidElement( child ) ) {
rest.push( child );
return;
}
const key = child.key?.toString();
if ( key && layoutMap.has( key ) ) {
map.set( key, child );
} else {
rest.push( child );
}
} );
return [ map, rest ];
}, [ children, layoutMap ] );
const sensors = useSensors(
useSensor( PointerSensor ),
useSensor( KeyboardSensor, {
coordinateGetter: sortableKeyboardCoordinates,
} )
);
const handleDragOver = useEvent( ( event: DragOverEvent ) => {
const { active, over } = event;
if ( over && active && active.id !== over.id ) {
const oldIndex = items.indexOf( String( active.id ) );
const newIndex = items.indexOf( String( over.id ) );
const updatedItems = arrayMove( items, oldIndex, newIndex );
const updatedLayout = layout.map( ( item ) => {
const newOrder = updatedItems.indexOf( item.key );
return {
...item,
order: newOrder,
};
} );
setTemporaryLayout( updatedLayout );
}
} );
const debouncedHandleDragOver = useDebounce( handleDragOver, 100 );
function persistTemporaryLayout() {
if ( ! onChangeLayout || ! temporaryLayout ) {
return;
}
onChangeLayout( temporaryLayout );
setTemporaryLayout( undefined );
}
function handleResize( id: string, delta: { width: number; height: number } ) {
if ( ! editMode ) {
return;
}
const relativeDelta = {
width: Math.round( delta.width / ( columnWidth + gapPx ) ),
height: rowHeight === 'auto' ? 0 : Math.round( delta.height / ( rowHeight + gapPx ) ),
};
if ( relativeDelta.width !== 0 || relativeDelta.height !== 0 ) {
// Update the temporary layout with the new size
const updatedLayout = activeLayout.map( ( item ) => {
if ( item.key === id ) {
return {
...item,
width: Math.max(
1,
Math.min( ( item.width ?? 1 ) + relativeDelta.width, effectiveColumns )
),
height: Math.max( 1, ( item.height ?? 1 ) + relativeDelta.height ),
};
}
return item;
} );
setTemporaryLayout( updatedLayout );
}
}
return (
<DndContext
sensors={ sensors }
onDragOver={ debouncedHandleDragOver }
onDragEnd={ () => {
debouncedHandleDragOver.flush();
persistTemporaryLayout();
} }
>
<SortableContext items={ items } strategy={ () => null }>
<div
ref={ resizeObserverRef }
className={ className }
style={ {
display: 'grid',
gridTemplateColumns: `repeat(${ effectiveColumns }, 1fr)`,
gridAutoRows: rowHeight,
gap: gapPx,
} }
>
{ items.map( ( id ) => (
<GridItem
key={ id }
item={ layoutMap.get( id ) as GridLayoutItem }
maxColumns={ effectiveColumns }
disabled={ ! editMode }
onResize={ ( delta ) => handleResize( id, delta ) }
onResizeEnd={ persistTemporaryLayout }
>
{ childrenMap.get( id ) }
</GridItem>
) ) }
{ remaining }
</div>
</SortableContext>
</DndContext>
);
}
|