mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-31 11:59:10 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
30 lines
978 B
TypeScript
30 lines
978 B
TypeScript
import { EntryId, MaybeString } from 'ontime-types';
|
|
import { useCallback } from 'react';
|
|
|
|
import { useCollapsedGroups } from './useCollapsedGroups';
|
|
import { useEventSelection } from './useEventSelection';
|
|
|
|
type SelectAndRevealOptions = {
|
|
id: EntryId;
|
|
index: number;
|
|
parent?: MaybeString;
|
|
};
|
|
|
|
export function useSelectAndRevealEntry(rundownId: string) {
|
|
const { expandGroup } = useCollapsedGroups(rundownId);
|
|
const selectEntry = useEventSelection((state) => state.setSelectedEvents);
|
|
const scrollToEntry = useEventSelection((state) => state.scrollToEntry);
|
|
|
|
return useCallback(
|
|
({ id, index, parent }: SelectAndRevealOptions) => {
|
|
expandGroup(parent);
|
|
selectEntry({ id, index, selectMode: 'click' });
|
|
// Wait one frame so collapsed-group expansion is reflected in rendered/visible entries before scrolling.
|
|
requestAnimationFrame(() => {
|
|
scrollToEntry(id);
|
|
});
|
|
},
|
|
[expandGroup, scrollToEntry, selectEntry],
|
|
);
|
|
}
|