Add paginated calling grid for group calls

This commit is contained in:
trevor-signal 2023-11-13 09:56:48 -05:00 committed by GitHub
parent 9c3d404c82
commit cf5b3f78b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 1237 additions and 476 deletions

View file

@ -8,6 +8,7 @@ import type { PropsType } from './CallingHeader';
import { CallingHeader } from './CallingHeader';
import { setupI18n } from '../util/setupI18n';
import enMessages from '../../_locales/en/messages.json';
import { CallViewMode } from '../types/Calling';
const i18n = setupI18n('en', enMessages);
@ -26,7 +27,8 @@ export default {
participantCount: 0,
title: 'With Someone',
togglePip: action('toggle-pip'),
toggleSettings: action('toggle-settings'),
callViewMode: CallViewMode.Paginated,
changeCallView: action('change-call-view'),
},
} satisfies Meta<PropsType>;