Files
element-call/src/grid/SpotlightExpandedLayout.tsx
T

75 lines
2.0 KiB
TypeScript
Raw Normal View History

/*
Copyright 2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/
2024-11-06 04:36:48 -05:00
import { forwardRef, useCallback } from "react";
import { useObservableEagerState } from "observable-hooks";
import { SpotlightExpandedLayout as SpotlightExpandedLayoutModel } from "../state/CallViewModel";
2024-11-06 04:36:48 -05:00
import { CallLayout } from "./CallLayout";
2024-07-25 12:50:28 -04:00
import { DragCallback, useUpdateLayout } from "./Grid";
import styles from "./SpotlightExpandedLayout.module.css";
2024-07-18 11:33:20 -04:00
/**
* An implementation of the "expanded spotlight" layout, in which the spotlight
* tile stretches edge-to-edge and is overlaid by a picture-in-picture tile.
*/
export const makeSpotlightExpandedLayout: CallLayout<
SpotlightExpandedLayoutModel
2024-07-24 16:57:20 -04:00
> = ({ pipAlignment }) => ({
scrollingOnTop: true,
fixed: forwardRef(function SpotlightExpandedLayoutFixed(
{ model, Slot },
ref,
) {
2024-07-25 12:50:28 -04:00
useUpdateLayout();
return (
2024-07-24 16:57:20 -04:00
<div ref={ref} className={styles.layer}>
<Slot
className={styles.spotlight}
id="spotlight"
2024-11-06 04:36:48 -05:00
model={model.spotlight}
/>
</div>
);
}),
scrolling: forwardRef(function SpotlightExpandedLayoutScrolling(
{ model, Slot },
ref,
) {
2024-07-25 12:50:28 -04:00
useUpdateLayout();
const pipAlignmentValue = useObservableEagerState(pipAlignment);
const onDragPip: DragCallback = useCallback(
({ xRatio, yRatio }) =>
pipAlignment.next({
block: yRatio < 0.5 ? "start" : "end",
inline: xRatio < 0.5 ? "start" : "end",
}),
[],
);
return (
2024-07-24 16:57:20 -04:00
<div ref={ref} className={styles.layer}>
2024-11-06 04:36:48 -05:00
{model.pip && (
<Slot
className={styles.pip}
2024-11-06 04:36:48 -05:00
id={model.pip.id}
model={model.pip}
onDrag={onDragPip}
2024-11-06 04:36:48 -05:00
onVisibilityChange={model.pip.setVisible}
data-block-alignment={pipAlignmentValue.block}
data-inline-alignment={pipAlignmentValue.inline}
/>
)}
</div>
);
}),
});