6da1412de8
* Add NotificationDecoration component Add the NotificationDecoration component to shared-components. This is a leaf component that renders notification badges and indicators for rooms/items including mentions, unread counts, call indicators, etc. * Add RoomListItem component Add the RoomListItem component to shared-components. Includes context menu, hover menu, notification menu, and more options menu. * Add RoomListPrimaryFilters component Add filter chips component for filtering the room list by unread, people, rooms, favourites, mentions, invites, and low priority. * Update VirtualizedList component Update VirtualizedList to support the room list virtualization requirements. * Add RoomList component Add RoomList component that renders a virtualized list of room items. Includes story mocks for testing. * Add RoomListView component Add RoomListView component that composes RoomList with filters, empty states, and loading skeleton. * Export room-list components from shared-components Add exports for RoomListView, RoomListItem, RoomListPrimaryFilters, and RoomList. Include i18n strings for room list components. * Add RoomListItemViewModel Add view model for individual room list items. Manages per-room subscriptions and updates only when specific room data changes. * Add RoomListViewViewModel Add view model for the room list view. Manages room list state, filtering, keyboard navigation, and child view models. * Integrate shared components into RoomListView Update RoomListView to use the new ViewModels and shared components. Includes i18n string updates for element-web. * Remove old room list implementation Remove old ViewModels, hooks, and view components that are now replaced by the shared-components implementation. * Update sliding-sync playwright test Update test expectations for new room list implementation. * Add figma links * Move viewModels to the right folder * Rename to RoomListEmptyStateView * Update VirtualizedRoomListView naming * Update screenshots and snapshots * Move viewmodel tests to the right location and fix some imports * lint * Use unknown as an Opaque type rather than any. It discourages property access within shared components and can still be cast back in EW. * Update screenshots for new shared component rendering params * Make room order tests deterministic
381 lines
14 KiB
TypeScript
381 lines
14 KiB
TypeScript
/*
|
|
* Copyright 2026 Element Creations Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React, { useRef, type JSX, useCallback, useEffect, useState, useMemo } from "react";
|
|
import { type VirtuosoHandle, type ListRange, Virtuoso, type VirtuosoProps } from "react-virtuoso";
|
|
|
|
/**
|
|
* Keyboard key codes
|
|
*/
|
|
export const Key = {
|
|
ARROW_UP: "ArrowUp",
|
|
ARROW_DOWN: "ArrowDown",
|
|
HOME: "Home",
|
|
END: "End",
|
|
PAGE_UP: "PageUp",
|
|
PAGE_DOWN: "PageDown",
|
|
ENTER: "Enter",
|
|
SPACE: "Space",
|
|
} as const;
|
|
|
|
/**
|
|
* Check if a keyboard event includes modifier keys
|
|
*/
|
|
export function isModifiedKeyEvent(event: React.KeyboardEvent): boolean {
|
|
return event.ctrlKey || event.metaKey || event.shiftKey || event.altKey;
|
|
}
|
|
|
|
/**
|
|
* Context object passed to each list item containing the currently focused key
|
|
* and any additional context data from the parent component.
|
|
*/
|
|
export type VirtualizedListContext<Context> = {
|
|
/** The key of item that should have tabIndex == 0 */
|
|
tabIndexKey?: string;
|
|
/** Whether an item in the list is currently focused */
|
|
focused: boolean;
|
|
/** Additional context data passed from the parent component */
|
|
context: Context;
|
|
};
|
|
|
|
export interface IVirtualizedListProps<Item, Context> extends Omit<
|
|
VirtuosoProps<Item, VirtualizedListContext<Context>>,
|
|
"data" | "itemContent" | "context"
|
|
> {
|
|
/**
|
|
* The array of items to display in the virtualized list.
|
|
* Each item will be passed to getItemComponent for rendering.
|
|
*/
|
|
items: Item[];
|
|
|
|
/**
|
|
* Function that renders each list item as a JSX element.
|
|
* @param index - The index of the item in the list
|
|
* @param item - The data item to render
|
|
* @param context - The context object containing the focused key and any additional data
|
|
* @param onFocus - A callback that is required to be called when the item component receives focus
|
|
* @returns JSX element representing the rendered item
|
|
*/
|
|
getItemComponent: (
|
|
index: number,
|
|
item: Item,
|
|
context: VirtualizedListContext<Context>,
|
|
onFocus: (item: Item, e: React.FocusEvent) => void,
|
|
) => JSX.Element;
|
|
|
|
/**
|
|
* Optional additional context data to pass to each rendered item.
|
|
* This will be available in the VirtualizedListContext passed to getItemComponent.
|
|
*/
|
|
context?: Context;
|
|
|
|
/**
|
|
* Function to determine if an item can receive focus during keyboard navigation.
|
|
* @param item - The item to check for focusability
|
|
* @returns true if the item can be focused, false otherwise
|
|
*/
|
|
isItemFocusable: (item: Item) => boolean;
|
|
|
|
/**
|
|
* Function to get the key to use for focusing an item.
|
|
* @param item - The item to get the key for
|
|
* @return The key to use for focusing the item
|
|
*/
|
|
getItemKey: (item: Item) => string;
|
|
|
|
/**
|
|
* Callback function to handle key down events on the list container.
|
|
* List handles keyboard navigation for focus(up, down, home, end, pageUp, pageDown)
|
|
* and stops propagation otherwise the event bubbles and this callback is called for the use of the parent.
|
|
* @param e - The keyboard event
|
|
* @returns
|
|
*/
|
|
onKeyDown?: (e: React.KeyboardEvent<HTMLDivElement>) => void;
|
|
|
|
/**
|
|
* Optional total count of items (for virtualization with partial data loading).
|
|
* If provided, this will be used instead of items.length for the total count.
|
|
*/
|
|
totalCount?: number;
|
|
|
|
/**
|
|
* Optional callback when the visible range of items changes.
|
|
* Useful for loading data on-demand as the user scrolls.
|
|
* @param range - The new visible range with startIndex and endIndex
|
|
*/
|
|
rangeChanged?: (range: ListRange) => void;
|
|
}
|
|
|
|
/**
|
|
* Utility type for the prop scrollIntoViewOnChange allowing it to be memoised by a caller without repeating types
|
|
*/
|
|
export type ScrollIntoViewOnChange<Item, Context = any> = NonNullable<
|
|
VirtuosoProps<Item, VirtualizedListContext<Context>>["scrollIntoViewOnChange"]
|
|
>;
|
|
|
|
/**
|
|
* A generic virtualized list component built on top of react-virtuoso.
|
|
* Provides keyboard navigation and virtualized rendering for performance with large lists.
|
|
*
|
|
* @template Item - The type of data items in the list
|
|
* @template Context - The type of additional context data passed to items
|
|
*/
|
|
export function VirtualizedList<Item, Context = any>(props: IVirtualizedListProps<Item, Context>): React.ReactElement {
|
|
// Extract our custom props to avoid conflicts with Virtuoso props
|
|
const {
|
|
items,
|
|
getItemComponent,
|
|
isItemFocusable,
|
|
getItemKey,
|
|
context,
|
|
onKeyDown,
|
|
totalCount,
|
|
rangeChanged,
|
|
...virtuosoProps
|
|
} = props;
|
|
/** Reference to the Virtuoso component for programmatic scrolling */
|
|
const virtuosoHandleRef = useRef<VirtuosoHandle>(null);
|
|
/** Reference to the DOM element containing the virtualized list */
|
|
const virtuosoDomRef = useRef<HTMLElement | Window>(null);
|
|
/** Key of the item that should have tabIndex == 0 */
|
|
const [tabIndexKey, setTabIndexKey] = useState<string | undefined>(
|
|
props.items[0] ? getItemKey(props.items[0]) : undefined,
|
|
);
|
|
/** Range of currently visible items in the viewport */
|
|
const [visibleRange, setVisibleRange] = useState<ListRange | undefined>(undefined);
|
|
/** Map from item keys to their indices in the items array */
|
|
const [keyToIndexMap, setKeyToIndexMap] = useState<Map<string, number>>(new Map());
|
|
/** Whether the list is currently scrolling to an item */
|
|
const isScrollingToItem = useRef<boolean>(false);
|
|
/** Whether the list is currently focused */
|
|
const [isFocused, setIsFocused] = useState<boolean>(false);
|
|
|
|
// Update the key-to-index mapping whenever items change
|
|
useEffect(() => {
|
|
const newKeyToIndexMap = new Map<string, number>();
|
|
items.forEach((item, index) => {
|
|
const key = getItemKey(item);
|
|
newKeyToIndexMap.set(key, index);
|
|
});
|
|
setKeyToIndexMap(newKeyToIndexMap);
|
|
}, [items, getItemKey]);
|
|
|
|
// Ensure the tabIndexKey is set if there is none already or if the existing key is no longer displayed
|
|
useEffect(() => {
|
|
if (items.length && (!tabIndexKey || keyToIndexMap.get(tabIndexKey) === undefined)) {
|
|
setTabIndexKey(getItemKey(items[0]));
|
|
}
|
|
}, [items, getItemKey, tabIndexKey, keyToIndexMap]);
|
|
|
|
/**
|
|
* Scrolls to a specific item index and sets it as focused.
|
|
* Uses Virtuoso's scrollIntoView method for smooth scrolling.
|
|
*/
|
|
const scrollToIndex = useCallback(
|
|
(index: number, align?: "center" | "end" | "start"): void => {
|
|
// Ensure index is within bounds
|
|
const clampedIndex = Math.max(0, Math.min(index, items.length - 1));
|
|
if (isScrollingToItem.current) {
|
|
// If already scrolling to an item drop this request. Adding further requests
|
|
// causes the event to bubble up and be handled by other components(unintentional timeline scrolling was observed).
|
|
return;
|
|
}
|
|
if (items[clampedIndex]) {
|
|
const key = getItemKey(items[clampedIndex]);
|
|
isScrollingToItem.current = true;
|
|
virtuosoHandleRef.current?.scrollIntoView({
|
|
index: clampedIndex,
|
|
align: align,
|
|
behavior: "auto",
|
|
done: () => {
|
|
setTabIndexKey(key);
|
|
isScrollingToItem.current = false;
|
|
},
|
|
});
|
|
}
|
|
},
|
|
[items, getItemKey],
|
|
);
|
|
|
|
/**
|
|
* Scrolls to an item, skipping over non-focusable items if necessary.
|
|
* This is used for keyboard navigation to ensure focus lands on valid items.
|
|
*/
|
|
const scrollToItem = useCallback(
|
|
(index: number, isDirectionDown: boolean, align?: "center" | "end" | "start"): void => {
|
|
const totalRows = items.length;
|
|
let nextIndex: number | undefined;
|
|
|
|
for (let i = index; isDirectionDown ? i < totalRows : i >= 0; i = i + (isDirectionDown ? 1 : -1)) {
|
|
if (isItemFocusable(items[i])) {
|
|
nextIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (nextIndex === undefined) {
|
|
return;
|
|
}
|
|
|
|
scrollToIndex(nextIndex, align);
|
|
},
|
|
[scrollToIndex, items, isItemFocusable],
|
|
);
|
|
|
|
/**
|
|
* Handles keyboard navigation for the list.
|
|
* Supports Arrow keys, Home, End, Page Up/Down, Enter, and Space.
|
|
*/
|
|
const keyDownCallback = useCallback(
|
|
(e: React.KeyboardEvent<HTMLDivElement>) => {
|
|
const currentIndex = tabIndexKey ? keyToIndexMap.get(tabIndexKey) : undefined;
|
|
let handled = false;
|
|
|
|
// Guard against null/undefined events and modified keys which we don't want to handle here but do
|
|
// at the settings level shortcuts(E.g. Select next room, etc )
|
|
// Guard against null/undefined events and modified keys
|
|
if (!e || isModifiedKeyEvent(e)) {
|
|
onKeyDown?.(e);
|
|
return;
|
|
}
|
|
|
|
if (e.code === Key.ARROW_UP && currentIndex !== undefined) {
|
|
scrollToItem(currentIndex - 1, false);
|
|
handled = true;
|
|
} else if (e.code === Key.ARROW_DOWN && currentIndex !== undefined) {
|
|
scrollToItem(currentIndex + 1, true);
|
|
handled = true;
|
|
} else if (e.code === Key.HOME) {
|
|
scrollToIndex(0);
|
|
handled = true;
|
|
} else if (e.code === Key.END) {
|
|
scrollToIndex(items.length - 1);
|
|
handled = true;
|
|
} else if (e.code === Key.PAGE_DOWN && visibleRange && currentIndex !== undefined) {
|
|
const numberDisplayed = visibleRange.endIndex - visibleRange.startIndex;
|
|
scrollToItem(Math.min(currentIndex + numberDisplayed, items.length - 1), true, "start");
|
|
handled = true;
|
|
} else if (e.code === Key.PAGE_UP && visibleRange && currentIndex !== undefined) {
|
|
const numberDisplayed = visibleRange.endIndex - visibleRange.startIndex;
|
|
scrollToItem(Math.max(currentIndex - numberDisplayed, 0), false, "start");
|
|
handled = true;
|
|
}
|
|
|
|
if (handled) {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
} else {
|
|
onKeyDown?.(e);
|
|
}
|
|
},
|
|
[scrollToIndex, scrollToItem, tabIndexKey, keyToIndexMap, visibleRange, items, onKeyDown],
|
|
);
|
|
|
|
/**
|
|
* Callback ref for the Virtuoso scroller element.
|
|
* Stores the reference for use in focus management.
|
|
*/
|
|
const scrollerRef = useCallback((element: HTMLElement | Window | null) => {
|
|
virtuosoDomRef.current = element;
|
|
}, []);
|
|
|
|
/**
|
|
* Focus handler passed to each item component.
|
|
* Don't declare inside getItemComponent to avoid re-creating on each render.
|
|
*/
|
|
const onFocusForGetItemComponent = useCallback(
|
|
(item: Item, e: React.FocusEvent) => {
|
|
// If one of the item components has been focused directly, set the focused and tabIndex state
|
|
// and stop propagation so the List's onFocus doesn't also handle it.
|
|
const key = getItemKey(item);
|
|
setIsFocused(true);
|
|
setTabIndexKey(key);
|
|
e.stopPropagation();
|
|
},
|
|
[getItemKey],
|
|
);
|
|
|
|
const getItemComponentInternal = useCallback(
|
|
(index: number, item: Item, context: VirtualizedListContext<Context>): JSX.Element =>
|
|
getItemComponent(index, item, context, onFocusForGetItemComponent),
|
|
[getItemComponent, onFocusForGetItemComponent],
|
|
);
|
|
|
|
/**
|
|
* Handles focus events on the list.
|
|
* Sets the focused state and scrolls to the focused item if it is not currently visible.
|
|
*/
|
|
const onFocus = useCallback(
|
|
(e?: React.FocusEvent): void => {
|
|
if (e?.currentTarget !== virtuosoDomRef.current || typeof tabIndexKey !== "string") {
|
|
return;
|
|
}
|
|
|
|
setIsFocused(true);
|
|
const index = keyToIndexMap.get(tabIndexKey);
|
|
if (
|
|
index !== undefined &&
|
|
visibleRange &&
|
|
(index < visibleRange.startIndex || index > visibleRange.endIndex)
|
|
) {
|
|
scrollToIndex(index);
|
|
}
|
|
e?.stopPropagation();
|
|
e?.preventDefault();
|
|
},
|
|
[keyToIndexMap, visibleRange, scrollToIndex, tabIndexKey],
|
|
);
|
|
|
|
const onBlur = useCallback((event: React.FocusEvent<HTMLDivElement>): void => {
|
|
// Only set isFocused to false if the focus is moving outside the list
|
|
// This prevents the list from losing focus when interacting with menus inside it
|
|
if (!event.currentTarget.contains(event.relatedTarget)) {
|
|
setIsFocused(false);
|
|
}
|
|
}, []);
|
|
|
|
const listContext: VirtualizedListContext<Context> = useMemo(
|
|
() => ({
|
|
tabIndexKey: tabIndexKey,
|
|
focused: isFocused,
|
|
context: props.context || ({} as Context),
|
|
}),
|
|
[tabIndexKey, isFocused, props.context],
|
|
);
|
|
|
|
// Combine internal range tracking with optional external callback
|
|
const handleRangeChanged = useCallback(
|
|
(range: ListRange) => {
|
|
setVisibleRange(range);
|
|
rangeChanged?.(range);
|
|
},
|
|
[rangeChanged],
|
|
);
|
|
|
|
return (
|
|
<Virtuoso
|
|
// note that either the container of direct children must be focusable to be axe
|
|
// compliant, so we leave tabIndex as the default so the container can be focused
|
|
// (virtuoso wraps the children inside another couple of elements so setting it
|
|
// on those doesn't seem to work, unfortunately)
|
|
ref={virtuosoHandleRef}
|
|
scrollerRef={scrollerRef}
|
|
onKeyDown={keyDownCallback}
|
|
context={listContext}
|
|
rangeChanged={handleRangeChanged}
|
|
// virtuoso errors internally if you pass undefined.
|
|
overscan={props.overscan || 0}
|
|
data={props.items}
|
|
totalCount={totalCount}
|
|
onFocus={onFocus}
|
|
onBlur={onBlur}
|
|
itemContent={getItemComponentInternal}
|
|
{...virtuosoProps}
|
|
/>
|
|
);
|
|
}
|