Contact info modal for call link join requests

This commit is contained in:
ayumi-signal
2024-09-11 12:30:50 -07:00
committed by GitHub
parent 390eab2556
commit 84896d0fbb
19 changed files with 519 additions and 6 deletions

View File

@@ -38,6 +38,12 @@ const conversationWithAbout = getDefaultConversation({
aboutText: '😀 About Me',
hasMessages: true,
});
const conversationWithSharedGroups = getDefaultConversation({
acceptedMessageRequest: true,
aboutText: 'likes to chat',
hasMessages: true,
sharedGroupNames: ['Axolotl lovers'],
});
const systemContact = getDefaultConversation({
acceptedMessageRequest: true,
systemGivenName: 'Alice',
@@ -110,3 +116,13 @@ export function SystemContact(args: PropsType): JSX.Element {
/>
);
}
export function WithSharedGroups(args: PropsType): JSX.Element {
return (
<AboutContactModal
{...args}
conversation={conversationWithSharedGroups}
isSignalConnection
/>
);
}