mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
23 lines
640 B
TypeScript
23 lines
640 B
TypeScript
|
import { observer } from "mobx-react";
|
||
|
// hooks
|
||
|
import { TSelectionHelper, useMultipleSelect } from "@/hooks/use-multiple-select";
|
||
|
|
||
|
type Props = {
|
||
|
children: (helpers: TSelectionHelper) => React.ReactNode;
|
||
|
containerRef: React.MutableRefObject<HTMLElement | null>;
|
||
|
entities: Record<string, string[]>; // { groupID: entityIds[] }
|
||
|
};
|
||
|
|
||
|
export const MultipleSelectGroup: React.FC<Props> = observer((props) => {
|
||
|
const { children, containerRef, entities } = props;
|
||
|
|
||
|
const helpers = useMultipleSelect({
|
||
|
containerRef,
|
||
|
entities,
|
||
|
});
|
||
|
|
||
|
return <>{children(helpers)}</>;
|
||
|
});
|
||
|
|
||
|
MultipleSelectGroup.displayName = "MultipleSelectGroup";
|