// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { times } from 'lodash'; import { boolean, select } from '@storybook/addon-knobs'; import { action } from '@storybook/addon-actions'; import { AvatarColors } from '../types/Colors'; import type { ConversationType } from '../state/ducks/conversations'; import type { PropsType } from './CallingPip'; import { CallingPip } from './CallingPip'; import type { ActiveDirectCallType } from '../types/Calling'; import { CallMode, CallViewMode, CallState, GroupCallConnectionState, GroupCallJoinState, } from '../types/Calling'; import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation'; import { fakeGetGroupCallVideoFrameSource } from '../test-both/helpers/fakeGetGroupCallVideoFrameSource'; import { setupI18n } from '../util/setupI18n'; import enMessages from '../../_locales/en/messages.json'; const i18n = setupI18n('en', enMessages); const conversation: ConversationType = getDefaultConversation({ id: '3051234567', avatarPath: undefined, color: AvatarColors[0], title: 'Rick Sanchez', name: 'Rick Sanchez', phoneNumber: '3051234567', profileName: 'Rick Sanchez', }); const getCommonActiveCallData = () => ({ conversation, hasLocalAudio: boolean('hasLocalAudio', true), hasLocalVideo: boolean('hasLocalVideo', false), localAudioLevel: select('localAudioLevel', [0, 0.5, 1], 0), viewMode: select( 'viewMode', [CallViewMode.Grid, CallViewMode.Speaker, CallViewMode.Presentation], CallViewMode.Grid ), joinedAt: Date.now(), outgoingRing: true, pip: true, settingsDialogOpen: false, showParticipantsList: false, }); const defaultCall: ActiveDirectCallType = { ...getCommonActiveCallData(), callMode: CallMode.Direct as CallMode.Direct, callState: CallState.Accepted, peekedParticipants: [], remoteParticipants: [ { hasRemoteVideo: true, presenting: false, title: 'Arsene' }, ], }; const createProps = (overrideProps: Partial = {}): PropsType => ({ activeCall: overrideProps.activeCall || defaultCall, getGroupCallVideoFrameSource: fakeGetGroupCallVideoFrameSource, hangUpActiveCall: action('hang-up-active-call'), hasLocalVideo: boolean('hasLocalVideo', overrideProps.hasLocalVideo || false), i18n, setGroupCallVideoRequest: action('set-group-call-video-request'), setLocalPreview: action('set-local-preview'), setRendererCanvas: action('set-renderer-canvas'), switchFromPresentationView: action('switch-to-presentation-view'), switchToPresentationView: action('switch-to-presentation-view'), togglePip: action('toggle-pip'), }); export default { title: 'Components/CallingPip', }; export function Default(): JSX.Element { const props = createProps({}); return ; } export function ContactWithAvatarAndNoVideo(): JSX.Element { const props = createProps({ activeCall: { ...defaultCall, conversation: { ...conversation, avatarPath: 'https://www.fillmurray.com/64/64', }, remoteParticipants: [ { hasRemoteVideo: false, presenting: false, title: 'Julian' }, ], }, }); return ; } ContactWithAvatarAndNoVideo.story = { name: 'Contact (with avatar and no video)', }; export function ContactNoColor(): JSX.Element { const props = createProps({ activeCall: { ...defaultCall, conversation: { ...conversation, color: undefined, }, }, }); return ; } ContactNoColor.story = { name: 'Contact (no color)', }; export function GroupCall(): JSX.Element { const props = createProps({ activeCall: { ...getCommonActiveCallData(), callMode: CallMode.Group as CallMode.Group, connectionState: GroupCallConnectionState.Connected, conversationsWithSafetyNumberChanges: [], groupMembers: times(3, () => getDefaultConversation()), isConversationTooBigToRing: false, joinState: GroupCallJoinState.Joined, maxDevices: 5, deviceCount: 0, peekedParticipants: [], remoteParticipants: [], remoteAudioLevels: new Map(), }, }); return ; }