Replace the mobile one-on-one layout with an edge-to-edge spotlight
This commit is contained in:
@@ -95,7 +95,6 @@ export interface GridArrangement {
|
|||||||
|
|
||||||
const tileMaxAspectRatio = 17 / 9;
|
const tileMaxAspectRatio = 17 / 9;
|
||||||
const tileMinAspectRatio = 4 / 3;
|
const tileMinAspectRatio = 4 / 3;
|
||||||
const tileMobileMinAspectRatio = 2 / 3;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine the ideal arrangement of tiles into a grid of a particular size.
|
* Determine the ideal arrangement of tiles into a grid of a particular size.
|
||||||
@@ -138,15 +137,10 @@ export function arrangeTiles(
|
|||||||
|
|
||||||
// Impose a minimum and maximum aspect ratio on the tiles
|
// Impose a minimum and maximum aspect ratio on the tiles
|
||||||
const tileAspectRatio = tileWidth / tileHeight;
|
const tileAspectRatio = tileWidth / tileHeight;
|
||||||
// We enforce a different min aspect ratio in 1:1s on mobile
|
|
||||||
const minAspectRatio =
|
|
||||||
tileCount === 1 && width < 600
|
|
||||||
? tileMobileMinAspectRatio
|
|
||||||
: tileMinAspectRatio;
|
|
||||||
if (tileAspectRatio > tileMaxAspectRatio)
|
if (tileAspectRatio > tileMaxAspectRatio)
|
||||||
tileWidth = tileHeight * tileMaxAspectRatio;
|
tileWidth = tileHeight * tileMaxAspectRatio;
|
||||||
else if (tileAspectRatio < minAspectRatio)
|
else if (tileAspectRatio < tileMinAspectRatio)
|
||||||
tileHeight = tileWidth / minAspectRatio;
|
tileHeight = tileWidth / tileMinAspectRatio;
|
||||||
|
|
||||||
return { tileWidth, tileHeight, gap, columns };
|
return { tileWidth, tileHeight, gap, columns };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,18 +26,11 @@ limitations under the License.
|
|||||||
|
|
||||||
.local {
|
.local {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inline-size: 135px;
|
inline-size: 180px;
|
||||||
block-size: 160px;
|
block-size: 135px;
|
||||||
inset: var(--cpd-space-4x);
|
inset: var(--cpd-space-4x);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 600px) {
|
|
||||||
.local {
|
|
||||||
inline-size: 170px;
|
|
||||||
block-size: 110px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.spotlight {
|
.spotlight {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inline-size: 404px;
|
inline-size: 404px;
|
||||||
|
|||||||
@@ -25,11 +25,18 @@ limitations under the License.
|
|||||||
|
|
||||||
.pip {
|
.pip {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inline-size: 180px;
|
inline-size: 135px;
|
||||||
block-size: 135px;
|
block-size: 160px;
|
||||||
inset: var(--cpd-space-4x);
|
inset: var(--cpd-space-4x);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 600px) {
|
||||||
|
.pip {
|
||||||
|
inline-size: 180px;
|
||||||
|
block-size: 135px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.pip[data-block-alignment="start"] {
|
.pip[data-block-alignment="start"] {
|
||||||
inset-block-end: unset;
|
inset-block-end: unset;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -295,7 +295,7 @@ export const InCallView: FC<InCallViewProps> = ({
|
|||||||
ref,
|
ref,
|
||||||
) {
|
) {
|
||||||
const spotlightExpanded = useObservableEagerState(vm.spotlightExpanded);
|
const spotlightExpanded = useObservableEagerState(vm.spotlightExpanded);
|
||||||
const [onToggleExpanded] = useObservableEagerState(
|
const onToggleExpanded = useObservableEagerState(
|
||||||
vm.toggleSpotlightExpanded,
|
vm.toggleSpotlightExpanded,
|
||||||
);
|
);
|
||||||
const showSpeakingIndicatorsValue = useObservableEagerState(
|
const showSpeakingIndicatorsValue = useObservableEagerState(
|
||||||
|
|||||||
@@ -646,7 +646,9 @@ export class CallViewModel extends ViewModel {
|
|||||||
return this.oneOnOne.pipe(
|
return this.oneOnOne.pipe(
|
||||||
switchMap((oneOnOne) =>
|
switchMap((oneOnOne) =>
|
||||||
oneOnOne
|
oneOnOne
|
||||||
? this.oneOnOneLayout
|
? // The expanded spotlight layout makes for a better one-on-one
|
||||||
|
// experience in narrow windows
|
||||||
|
this.spotlightExpandedLayout
|
||||||
: combineLatest(
|
: combineLatest(
|
||||||
[this.grid, this.spotlight],
|
[this.grid, this.spotlight],
|
||||||
(grid, spotlight) =>
|
(grid, spotlight) =>
|
||||||
@@ -689,24 +691,25 @@ export class CallViewModel extends ViewModel {
|
|||||||
shareReplay(1),
|
shareReplay(1),
|
||||||
);
|
);
|
||||||
|
|
||||||
// To work around https://github.com/crimx/observable-hooks/issues/131 we must
|
public readonly toggleSpotlightExpanded: Observable<(() => void) | null> =
|
||||||
// wrap the emitted function here in a non-function wrapper type
|
this.windowMode.pipe(
|
||||||
public readonly toggleSpotlightExpanded: Observable<
|
switchMap((mode) =>
|
||||||
readonly [(() => void) | null]
|
mode === "normal"
|
||||||
> = this.layout.pipe(
|
? this.layout.pipe(
|
||||||
map(
|
map(
|
||||||
(l) =>
|
(l) =>
|
||||||
l.type === "spotlight-landscape" || l.type === "spotlight-expanded",
|
l.type === "spotlight-landscape" ||
|
||||||
),
|
l.type === "spotlight-expanded",
|
||||||
distinctUntilChanged(),
|
),
|
||||||
map(
|
)
|
||||||
(enabled) =>
|
: of(false),
|
||||||
[
|
),
|
||||||
enabled ? (): void => this.spotlightExpandedToggle.next() : null,
|
distinctUntilChanged(),
|
||||||
] as const,
|
map((enabled) =>
|
||||||
),
|
enabled ? (): void => this.spotlightExpandedToggle.next() : null,
|
||||||
shareReplay(1),
|
),
|
||||||
);
|
shareReplay(1),
|
||||||
|
);
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
// A call is permanently tied to a single Matrix room and LiveKit room
|
// A call is permanently tied to a single Matrix room and LiveKit room
|
||||||
|
|||||||
@@ -6944,9 +6944,9 @@ object.values@^1.1.7:
|
|||||||
es-abstract "^1.22.1"
|
es-abstract "^1.22.1"
|
||||||
|
|
||||||
observable-hooks@^4.2.3:
|
observable-hooks@^4.2.3:
|
||||||
version "4.2.3"
|
version "4.2.4"
|
||||||
resolved "https://registry.yarnpkg.com/observable-hooks/-/observable-hooks-4.2.3.tgz#69e3353caafd7887ad9030bd440b053304e8d2d1"
|
resolved "https://registry.yarnpkg.com/observable-hooks/-/observable-hooks-4.2.4.tgz#e1ee0f867e0f2216f79c1e13c58716fb50b410ec"
|
||||||
integrity sha512-d6fYTIU+9sg1V+CT0GhgoE/ntjIqcy9DGaYGE6ELGVP4ojaWIEsaLvL/05hLOM+AL7aySN4DCTLvj6dDF9T8XA==
|
integrity sha512-FdTQgyw1h5bG/QHCBIqctdBSnv9VARJCEilgpV6L2qlw1yeLqFIwPm4U15dMtl5kDmNN0hSt+Nl6iYbLFwEcQA==
|
||||||
|
|
||||||
oidc-client-ts@^3.0.1:
|
oidc-client-ts@^3.0.1:
|
||||||
version "3.0.1"
|
version "3.0.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user