2023-01-18 10:52:12 -05:00
|
|
|
import { useTransition } from "@react-spring/web";
|
|
|
|
import React, { FC, memo, ReactNode, useMemo, useRef } from "react";
|
|
|
|
import useMeasure from "react-use-measure";
|
|
|
|
import styles from "./NewVideoGrid.module.css";
|
|
|
|
import { TileDescriptor } from "./TileDescriptor";
|
|
|
|
import { VideoGridProps as Props } from "./VideoGrid";
|
|
|
|
|
|
|
|
interface Cell {
|
|
|
|
/**
|
|
|
|
* The item held by the slot containing this cell.
|
|
|
|
*/
|
2023-01-18 11:33:40 -05:00
|
|
|
item: TileDescriptor;
|
2023-01-18 10:52:12 -05:00
|
|
|
/**
|
|
|
|
* Whether this cell is the first cell of the containing slot.
|
|
|
|
*/
|
2023-01-18 11:33:40 -05:00
|
|
|
slot: boolean;
|
2023-01-18 10:52:12 -05:00
|
|
|
/**
|
|
|
|
* The width, in columns, of the containing slot.
|
|
|
|
*/
|
2023-01-18 11:33:40 -05:00
|
|
|
columns: number;
|
2023-01-18 10:52:12 -05:00
|
|
|
/**
|
|
|
|
* The height, in rows, of the containing slot.
|
|
|
|
*/
|
2023-01-18 11:33:40 -05:00
|
|
|
rows: number;
|
2023-01-18 10:52:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
interface Rect {
|
2023-01-18 11:33:40 -05:00
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
width: number;
|
|
|
|
height: number;
|
2023-01-18 10:52:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
interface Tile extends Rect {
|
2023-01-18 11:33:40 -05:00
|
|
|
item: TileDescriptor;
|
|
|
|
dragging: boolean;
|
2023-01-18 10:52:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
interface SlotsProps {
|
2023-01-18 11:33:40 -05:00
|
|
|
count: number;
|
2023-01-18 10:52:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a number of empty slot divs.
|
|
|
|
*/
|
|
|
|
const Slots: FC<SlotsProps> = memo(({ count }) => {
|
2023-01-18 11:33:40 -05:00
|
|
|
const slots = new Array<ReactNode>(count);
|
|
|
|
for (let i = 0; i < count; i++)
|
|
|
|
slots[i] = <div className={styles.slot} key={i} />;
|
|
|
|
return <>{slots}</>;
|
|
|
|
});
|
2023-01-18 10:52:12 -05:00
|
|
|
|
|
|
|
export const NewVideoGrid: FC<Props> = ({ items, children }) => {
|
|
|
|
const slotGridRef = useRef<HTMLDivElement>(null);
|
|
|
|
const [gridRef, gridBounds] = useMeasure();
|
|
|
|
|
|
|
|
const slotRects = useMemo(() => {
|
|
|
|
if (slotGridRef.current === null) return [];
|
|
|
|
|
2023-01-18 11:33:40 -05:00
|
|
|
const slots = slotGridRef.current.getElementsByClassName(styles.slot);
|
|
|
|
const rects = new Array<Rect>(slots.length);
|
2023-01-18 10:52:12 -05:00
|
|
|
for (let i = 0; i < slots.length; i++) {
|
2023-01-18 11:33:40 -05:00
|
|
|
const slot = slots[i] as HTMLElement;
|
2023-01-18 10:52:12 -05:00
|
|
|
rects[i] = {
|
|
|
|
x: slot.offsetLeft,
|
|
|
|
y: slot.offsetTop,
|
|
|
|
width: slot.offsetWidth,
|
|
|
|
height: slot.offsetHeight,
|
2023-01-18 11:33:40 -05:00
|
|
|
};
|
2023-01-18 10:52:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return rects;
|
|
|
|
}, [items, gridBounds]);
|
|
|
|
|
2023-01-18 11:33:40 -05:00
|
|
|
const cells: Cell[] = useMemo(
|
|
|
|
() =>
|
|
|
|
items.map((item) => ({
|
|
|
|
item,
|
|
|
|
slot: true,
|
|
|
|
columns: 1,
|
|
|
|
rows: 1,
|
|
|
|
})),
|
|
|
|
[items]
|
|
|
|
);
|
|
|
|
|
|
|
|
const slotCells = useMemo(() => cells.filter((cell) => cell.slot), [cells]);
|
|
|
|
|
|
|
|
const tiles: Tile[] = useMemo(
|
|
|
|
() =>
|
|
|
|
slotRects.flatMap((slot, i) => {
|
|
|
|
const cell = slotCells[i];
|
|
|
|
if (cell === undefined) return [];
|
|
|
|
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
item: cell.item,
|
|
|
|
x: slot.x,
|
|
|
|
y: slot.y,
|
|
|
|
width: slot.width,
|
|
|
|
height: slot.height,
|
|
|
|
dragging: false,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}),
|
|
|
|
[slotRects, cells]
|
|
|
|
);
|
|
|
|
|
|
|
|
const [tileTransitions] = useTransition(
|
|
|
|
tiles,
|
|
|
|
() => ({
|
|
|
|
key: ({ item }: Tile) => item.id,
|
|
|
|
from: { opacity: 0 },
|
|
|
|
enter: ({ x, y, width, height }: Tile) => ({
|
|
|
|
opacity: 1,
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
}),
|
|
|
|
update: ({ x, y, width, height }: Tile) => ({ x, y, width, height }),
|
|
|
|
leave: { opacity: 0 },
|
|
|
|
}),
|
|
|
|
[tiles]
|
|
|
|
);
|
2023-01-18 10:52:12 -05:00
|
|
|
|
|
|
|
const slotGridStyle = useMemo(() => {
|
|
|
|
const columnCount = gridBounds.width >= 800 ? 6 : 3;
|
|
|
|
return {
|
|
|
|
gridTemplateColumns: `repeat(${columnCount}, 1fr)`,
|
|
|
|
};
|
|
|
|
}, [gridBounds]);
|
|
|
|
|
|
|
|
// Render nothing if the bounds are not yet known
|
|
|
|
if (gridBounds.width === 0) {
|
2023-01-18 11:33:40 -05:00
|
|
|
return (
|
|
|
|
<div ref={gridRef} className={styles.grid}>
|
|
|
|
{/* It's important that we always attach slotGridRef to something,
|
2023-01-18 11:32:51 -05:00
|
|
|
or else we may not receive the initial slot rects. */}
|
2023-01-18 11:33:40 -05:00
|
|
|
<div ref={slotGridRef} className={styles.slotGrid} />
|
|
|
|
</div>
|
|
|
|
);
|
2023-01-18 10:52:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-01-18 11:33:40 -05:00
|
|
|
<div ref={gridRef} className={styles.grid}>
|
2023-01-18 10:52:12 -05:00
|
|
|
<div style={slotGridStyle} ref={slotGridRef} className={styles.slotGrid}>
|
|
|
|
<Slots count={items.length} />
|
|
|
|
</div>
|
2023-01-18 11:33:40 -05:00
|
|
|
{tileTransitions((style, tile) =>
|
|
|
|
children({
|
|
|
|
key: tile.item.id,
|
|
|
|
style: style as any,
|
|
|
|
width: tile.width,
|
|
|
|
height: tile.height,
|
|
|
|
item: tile.item,
|
|
|
|
})
|
|
|
|
)}
|
2023-01-18 10:52:12 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|