113 lines
3.2 KiB
TypeScript
113 lines
3.2 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
import { memoize, times } from 'lodash';
|
|
import { action } from '@storybook/addon-actions';
|
|
import type { Meta } from '@storybook/react';
|
|
import type { PropsType } from './GroupCallOverflowArea';
|
|
import { GroupCallOverflowArea } from './GroupCallOverflowArea';
|
|
import { setupI18n } from '../util/setupI18n';
|
|
import { getDefaultConversationWithServiceId } from '../test-both/helpers/getDefaultConversation';
|
|
import { fakeGetGroupCallVideoFrameSource } from '../test-both/helpers/fakeGetGroupCallVideoFrameSource';
|
|
import { FRAME_BUFFER_SIZE } from '../calling/constants';
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
import { generateAci } from '../types/ServiceId';
|
|
import type { CallingImageDataCache } from './CallManager';
|
|
|
|
const MAX_PARTICIPANTS = 32;
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const allRemoteParticipants = times(MAX_PARTICIPANTS).map(index => ({
|
|
aci: generateAci(),
|
|
demuxId: index,
|
|
hasRemoteAudio: index % 3 !== 0,
|
|
hasRemoteVideo: index % 4 !== 0,
|
|
isHandRaised: (index - 2) % 8 === 0,
|
|
mediaKeysReceived: (index + 1) % 20 !== 0,
|
|
presenting: false,
|
|
sharingScreen: false,
|
|
videoAspectRatio: 1.3,
|
|
...getDefaultConversationWithServiceId({
|
|
isBlocked: index === 10 || index === MAX_PARTICIPANTS - 1,
|
|
title: `Participant ${index + 1}`,
|
|
}),
|
|
}));
|
|
|
|
export default {
|
|
title: 'Components/GroupCallOverflowArea',
|
|
argTypes: {},
|
|
args: {},
|
|
} satisfies Meta<PropsType>;
|
|
|
|
const defaultProps = {
|
|
getFrameBuffer: memoize(() => Buffer.alloc(FRAME_BUFFER_SIZE)),
|
|
getCallingImageDataCache: memoize(() => new Map()),
|
|
getGroupCallVideoFrameSource: fakeGetGroupCallVideoFrameSource,
|
|
imageDataCache: React.createRef<CallingImageDataCache>(),
|
|
i18n,
|
|
isCallReconnecting: false,
|
|
onParticipantVisibilityChanged: action('onParticipantVisibilityChanged'),
|
|
remoteAudioLevels: new Map<number, number>(),
|
|
remoteParticipantsCount: 1,
|
|
};
|
|
|
|
// This component is usually rendered on a call screen.
|
|
function Container({ children }: { children: JSX.Element }): JSX.Element {
|
|
return (
|
|
<div
|
|
style={{
|
|
background: 'black',
|
|
display: 'inline-flex',
|
|
height: '80vh',
|
|
}}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function NoOverflowedParticipants(): JSX.Element {
|
|
return (
|
|
<Container>
|
|
<GroupCallOverflowArea {...defaultProps} overflowedParticipants={[]} />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export function OneOverflowedParticipant(): JSX.Element {
|
|
return (
|
|
<Container>
|
|
<GroupCallOverflowArea
|
|
{...defaultProps}
|
|
overflowedParticipants={allRemoteParticipants.slice(0, 1)}
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export function ThreeOverflowedParticipants(): JSX.Element {
|
|
return (
|
|
<Container>
|
|
<GroupCallOverflowArea
|
|
{...defaultProps}
|
|
overflowedParticipants={allRemoteParticipants.slice(0, 3)}
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export function ManyOverflowedParticipants(): JSX.Element {
|
|
return (
|
|
<Container>
|
|
<GroupCallOverflowArea
|
|
{...defaultProps}
|
|
overflowedParticipants={allRemoteParticipants.slice(
|
|
0,
|
|
MAX_PARTICIPANTS
|
|
)}
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|