From ca0b875ac97154511c71154c69d085a472e8537a Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Thu, 13 Jun 2024 19:33:06 -0700 Subject: [PATCH] Adding more verbose docstrings for the TileLayout (#51) --- frontend/faraday/lib/TileLayout.tsx | 84 +++++++++++++++++++++++++++-- 1 file changed, 80 insertions(+), 4 deletions(-) diff --git a/frontend/faraday/lib/TileLayout.tsx b/frontend/faraday/lib/TileLayout.tsx index f22d7bf05..64ce40576 100644 --- a/frontend/faraday/lib/TileLayout.tsx +++ b/frontend/faraday/lib/TileLayout.tsx @@ -36,10 +36,26 @@ import "./tilelayout.less"; import { Dimensions, FlexDirection, setTransform as createTransform, debounce, determineDropDirection } from "./utils"; export interface TileLayoutProps { + /** + * The atom containing the layout tree state. + */ layoutTreeStateAtom: WritableLayoutTreeStateAtom; + /** + * A callback that accepts the data from the leaf node and displays the leaf contents to the user. + */ renderContent: ContentRenderer; + /** + * A callback that accepts the data from the leaf node and returns a preview that can be shown when the user drags a node. + */ renderPreview?: PreviewRenderer; + /** + * A callback that is called when a node gets deleted from the LayoutTreeState. + * @param data The contents of the node that was deleted. + */ onNodeDelete?: (data: T) => Promise; + /** + * The class name to use for the top-level div of the tile layout. + */ className?: string; } @@ -191,7 +207,7 @@ export const TileLayout = ({ {layoutLeafTransforms && layoutTreeState.leafs.map((leaf) => { return ( - ({ ); }; -interface TileNodeProps { +interface LeafNodeProps { + /** + * The leaf node object, containing the data needed to display the leaf contents to the user. + */ layoutNode: LayoutNode; + /** + * A callback that accepts the data from the leaf node and displays the leaf contents to the user. + */ renderContent: ContentRenderer; + /** + * A callback that accepts the data from the leaf node and returns a preview that can be shown when the user drags a node. + */ renderPreview?: PreviewRenderer; + /** + * A callback that is called when a leaf node gets closed. + * @param node The node that is closed. + */ onLeafClose: (node: LayoutNode) => void; + /** + * Determines whether a leaf's contents should be displayed to the user. + */ ready: boolean; + /** + * A series of CSS properties used to display a leaf node with the correct dimensions and position, as determined from its corresponding OverlayNode. + */ transform: CSSProperties; } const dragItemType = "TILE_ITEM"; -const TileNode = ({ +/** + * A div representing the leafs of the LayoutTreeState. The actual contents of the leafs are rendered inside these divs and displayed to the user. + */ +const LeafNode = ({ layoutNode, renderContent, renderPreview, transform, onLeafClose, ready, -}: TileNodeProps) => { +}: LeafNodeProps) => { const tileNodeRef = useRef(null); const previewRef = useRef(null); @@ -331,13 +369,36 @@ const TileNode = ({ }; interface OverlayNodeProps { + /** + * The layout node object corresponding to the OverlayNode. + */ layoutNode: LayoutNode; + /** + * The layout tree state. + */ layoutTreeState: LayoutTreeState; + /** + * The reducer function for mutating the layout tree state. + * @param action The action to perform. + */ dispatch: (action: LayoutTreeAction) => void; + /** + * A callback to update the RefObject mapping corresponding to the layout node. Used to inform the TileLayout of changes to the OverlayNode's position and size. + * @param id The id of the layout node being mounted. + * @param ref The reference to the mounted overlay node. + */ setRef: (id: string, ref: RefObject) => void; + /** + * A callback to remove the RefObject mapping corresponding to the layout node when it gets unmounted. + * @param id The id of the layout node being unmounted. + */ deleteRef: (id: string) => void; } +/** + * An overlay representing the true flexbox layout of the LayoutTreeState. This holds the drop targets for moving around nodes and is used to calculate the + * dimensions of the corresponding TileNode for each LayoutTreeState leaf. + */ const OverlayNode = ({ layoutNode, layoutTreeState, dispatch, setRef, deleteRef }: OverlayNodeProps) => { const overlayRef = useRef(null); const leafRef = useRef(null); @@ -431,12 +492,27 @@ const OverlayNode = ({ layoutNode, layoutTreeState, dispatch, setRef, delete }; interface PlaceholderProps { + /** + * The layout tree state. + */ layoutTreeState: LayoutTreeState; + /** + * A reference to the div containing the overlay nodes. Used to normalize the position of the target node as the overlay container is moved in and out of view. + */ overlayContainerRef: React.RefObject; + /** + * The mapping of all layout nodes to their corresponding mounted overlay node. + */ nodeRefs: Map>; + /** + * Any styling to apply to the placeholder container div. + */ style: React.CSSProperties; } +/** + * An overlay to preview pending actions on the layout tree. + */ const Placeholder = ({ layoutTreeState, overlayContainerRef, nodeRefs, style }: PlaceholderProps) => { const [placeholderOverlay, setPlaceholderOverlay] = useState(null);