Follow-up to ea2d98179c
This took a couple of iterations to find something that works without creating update loops, but I think that by automatically informing Grid whenever a layout component is re-rendered, we'll have a much easier time ensuring that our layouts are fully reactive.
93 lines
2.7 KiB
TypeScript
93 lines
2.7 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { forwardRef, useMemo } from "react";
|
|
import { useObservableEagerState } from "observable-hooks";
|
|
import classNames from "classnames";
|
|
|
|
import { CallLayout, GridTileModel, TileModel } from "./CallLayout";
|
|
import { SpotlightLandscapeLayout as SpotlightLandscapeLayoutModel } from "../state/CallViewModel";
|
|
import styles from "./SpotlightLandscapeLayout.module.css";
|
|
import { useLayout } from "./Grid";
|
|
|
|
/**
|
|
* An implementation of the "spotlight landscape" layout, in which the spotlight
|
|
* tile takes up most of the space on the left, and the grid of participants is
|
|
* shown as a scrolling rail on the right.
|
|
*/
|
|
export const makeSpotlightLandscapeLayout: CallLayout<
|
|
SpotlightLandscapeLayoutModel
|
|
> = ({ minBounds }) => ({
|
|
scrollingOnTop: false,
|
|
|
|
fixed: forwardRef(function SpotlightLandscapeLayoutFixed(
|
|
{ model, Slot },
|
|
ref,
|
|
) {
|
|
useLayout();
|
|
useObservableEagerState(minBounds);
|
|
const tileModel: TileModel = useMemo(
|
|
() => ({
|
|
type: "spotlight",
|
|
vms: model.spotlight,
|
|
maximised: false,
|
|
}),
|
|
[model.spotlight],
|
|
);
|
|
|
|
return (
|
|
<div ref={ref} className={styles.layer}>
|
|
<div className={styles.spotlight}>
|
|
<Slot className={styles.slot} id="spotlight" model={tileModel} />
|
|
</div>
|
|
<div className={styles.grid} />
|
|
</div>
|
|
);
|
|
}),
|
|
|
|
scrolling: forwardRef(function SpotlightLandscapeLayoutScrolling(
|
|
{ model, Slot },
|
|
ref,
|
|
) {
|
|
useLayout();
|
|
useObservableEagerState(minBounds);
|
|
const tileModels: GridTileModel[] = useMemo(
|
|
() => model.grid.map((vm) => ({ type: "grid", vm })),
|
|
[model.grid],
|
|
);
|
|
|
|
return (
|
|
<div ref={ref} className={styles.layer}>
|
|
<div
|
|
className={classNames(styles.spotlight, {
|
|
[styles.withIndicators]: model.spotlight.length > 1,
|
|
})}
|
|
/>
|
|
<div className={styles.grid}>
|
|
{tileModels.map((m) => (
|
|
<Slot
|
|
key={m.vm.id}
|
|
className={styles.slot}
|
|
id={m.vm.id}
|
|
model={m}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}),
|
|
});
|