mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
26 lines
801 B
TypeScript
26 lines
801 B
TypeScript
import { useEffect, useState } from "react";
|
|
import { useCommittedRef } from "@/hooks/use-committed-ref";
|
|
import { useSelectionContext } from "@/selection/context";
|
|
import { activateScope, type ScopeEntry } from "@/selection/scope";
|
|
|
|
export function useSelectionScope() {
|
|
const { selectedIds, clearSelection } = useSelectionContext();
|
|
const hasSelection = selectedIds.length > 0;
|
|
const hasSelectionRef = useCommittedRef(hasSelection);
|
|
const clearSelectionRef = useCommittedRef(clearSelection);
|
|
const [entry] = useState<ScopeEntry>(() => ({
|
|
hasSelection: () => hasSelectionRef.current,
|
|
clear: () => {
|
|
clearSelectionRef.current();
|
|
},
|
|
}));
|
|
|
|
useEffect(() => {
|
|
if (!hasSelection) {
|
|
return;
|
|
}
|
|
|
|
return activateScope({ entry });
|
|
}, [entry, hasSelection]);
|
|
}
|