// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { useRef, useEffect } from 'react'; import type { LocalizerType } from '../types/Util'; import { AvatarColors } from '../types/Colors'; import { Avatar, AvatarSize } from './Avatar'; import { Intl } from './Intl'; import { ContactName } from './conversation/ContactName'; import type { ConversationType } from '../state/ducks/conversations'; type Props = { conversation: Pick< ConversationType, | 'acceptedMessageRequest' | 'avatarPath' | 'color' | 'isMe' | 'name' | 'phoneNumber' | 'profileName' | 'sharedGroupNames' | 'title' | 'unblurredAvatarPath' >; i18n: LocalizerType; close: () => void; }; const AUTO_CLOSE_MS = 10000; export function CallNeedPermissionScreen({ conversation, i18n, close, }: Props): JSX.Element { const title = conversation.title || i18n('icu:unknownContact'); const autoCloseAtRef = useRef(Date.now() + AUTO_CLOSE_MS); useEffect(() => { const timeout = setTimeout(close, autoCloseAtRef.current - Date.now()); return clearTimeout.bind(null, timeout); }, [autoCloseAtRef, close]); return (

, }} />

); }