Signal-Desktop/ts/components/CallingParticipantsList.sto...

104 lines
3.0 KiB
TypeScript
Raw Normal View History

// Copyright 2020-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
2020-10-15 19:53:21 +00:00
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
2020-12-02 18:14:03 +00:00
import { v4 as generateUuid } from 'uuid';
2020-10-15 19:53:21 +00:00
import { CallingParticipantsList, PropsType } from './CallingParticipantsList';
2020-11-17 15:07:53 +00:00
import { Colors } from '../types/Colors';
import { GroupCallRemoteParticipantType } from '../types/Calling';
import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation';
2020-10-15 19:53:21 +00:00
import { setup as setupI18n } from '../../js/modules/i18n';
import enMessages from '../../_locales/en/messages.json';
const i18n = setupI18n('en', enMessages);
2020-11-17 15:07:53 +00:00
function createParticipant(
participantProps: Partial<GroupCallRemoteParticipantType>
): GroupCallRemoteParticipantType {
const randomColor = Math.floor(Math.random() * Colors.length - 1);
return {
demuxId: 2,
2020-11-17 15:07:53 +00:00
hasRemoteAudio: Boolean(participantProps.hasRemoteAudio),
hasRemoteVideo: Boolean(participantProps.hasRemoteVideo),
presenting: Boolean(participantProps.presenting),
sharingScreen: Boolean(participantProps.sharingScreen),
videoAspectRatio: 1.3,
...getDefaultConversation({
avatarPath: participantProps.avatarPath,
color: Colors[randomColor],
isBlocked: Boolean(participantProps.isBlocked),
name: participantProps.name,
profileName: participantProps.title,
title: String(participantProps.title),
uuid: generateUuid(),
}),
2020-11-17 15:07:53 +00:00
};
}
2020-10-15 19:53:21 +00:00
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
i18n,
onClose: action('on-close'),
ourUuid: 'cf085e6a-e70b-41ec-a310-c198248af13f',
2020-11-17 15:07:53 +00:00
participants: overrideProps.participants || [],
2020-10-15 19:53:21 +00:00
});
const story = storiesOf('Components/CallingParticipantsList', module);
2020-11-17 15:07:53 +00:00
story.add('No one', () => {
2020-10-15 19:53:21 +00:00
const props = createProps();
return <CallingParticipantsList {...props} />;
});
2020-11-17 15:07:53 +00:00
story.add('Solo Call', () => {
const props = createProps({
participants: [
createParticipant({
title: 'Bardock',
}),
],
});
return <CallingParticipantsList {...props} />;
});
2020-10-15 19:53:21 +00:00
story.add('Many Participants', () => {
const props = createProps({
participants: [
2020-11-17 15:07:53 +00:00
createParticipant({
2020-10-15 19:53:21 +00:00
title: 'Son Goku',
2020-11-17 15:07:53 +00:00
}),
createParticipant({
hasRemoteAudio: true,
presenting: true,
2020-11-20 19:39:50 +00:00
name: 'Rage Trunks',
2020-10-15 19:53:21 +00:00
title: 'Rage Trunks',
2020-11-17 15:07:53 +00:00
}),
createParticipant({
hasRemoteAudio: true,
2020-10-15 19:53:21 +00:00
title: 'Prince Vegeta',
2020-11-17 15:07:53 +00:00
}),
createParticipant({
hasRemoteAudio: true,
hasRemoteVideo: true,
2020-11-20 19:39:50 +00:00
name: 'Goku Black',
2020-10-15 19:53:21 +00:00
title: 'Goku Black',
2020-11-17 15:07:53 +00:00
}),
createParticipant({
2020-10-15 19:53:21 +00:00
title: 'Supreme Kai Zamasu',
2020-11-17 15:07:53 +00:00
}),
2020-10-15 19:53:21 +00:00
],
});
return <CallingParticipantsList {...props} />;
});
2020-11-20 17:19:53 +00:00
story.add('Overflow', () => {
const props = createProps({
participants: Array(50)
.fill(null)
.map(() => createParticipant({ title: 'Kirby' })),
});
return <CallingParticipantsList {...props} />;
});