54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import { useMutation } from '@apollo/client';
|
|
import { SET_LAYOUT_PROPS, SET_SYNC_WITH_PRESENTER_LAYOUT } from './mutations';
|
|
import { Input, Output } from '../layoutTypes';
|
|
import { calculatePresentationVideoRate } from './service';
|
|
|
|
const usePushLayoutUpdater = (pushLayout: boolean) => {
|
|
const [setSyncWithPresenterLayout] = useMutation(SET_SYNC_WITH_PRESENTER_LAYOUT);
|
|
|
|
const setPushLayout = () => {
|
|
setSyncWithPresenterLayout({
|
|
variables: {
|
|
syncWithPresenterLayout: pushLayout,
|
|
},
|
|
});
|
|
};
|
|
|
|
return setPushLayout;
|
|
};
|
|
|
|
const useMeetingLayoutUpdater = (
|
|
cameraDockOutput: Output['cameraDock'],
|
|
cameraDockInput: Input['cameraDock'],
|
|
presentationInput: Input['presentation'],
|
|
applicationSettings: { pushLayout: boolean, selectedLayout: boolean },
|
|
) => {
|
|
const [setMeetingLayoutProps] = useMutation(SET_LAYOUT_PROPS);
|
|
|
|
const { focusedId, position } = cameraDockOutput;
|
|
const { isResizing } = cameraDockInput;
|
|
const { isOpen: presentationIsOpen } = presentationInput;
|
|
const { pushLayout, selectedLayout } = applicationSettings;
|
|
|
|
const setMeetingLayout = () => {
|
|
setMeetingLayoutProps({
|
|
variables: {
|
|
layout: selectedLayout,
|
|
syncWithPresenterLayout: pushLayout,
|
|
presentationIsOpen,
|
|
isResizing,
|
|
cameraPosition: position || 'contentTop',
|
|
focusedCamera: focusedId,
|
|
presentationVideoRate: calculatePresentationVideoRate(cameraDockOutput),
|
|
},
|
|
});
|
|
};
|
|
|
|
return setMeetingLayout;
|
|
};
|
|
|
|
export {
|
|
useMeetingLayoutUpdater,
|
|
usePushLayoutUpdater,
|
|
};
|