20 lines
545 B
TypeScript
20 lines
545 B
TypeScript
import React from 'react';
|
|
|
|
import * as HeaderButton from '../../../containers/HeaderButton';
|
|
import { useVideoConf } from '../../../lib/hooks/useVideoConf';
|
|
|
|
export default function HeaderCallButton({ rid }: { rid: string }): React.ReactElement | null {
|
|
const { showInitCallActionSheet, callEnabled, disabledTooltip } = useVideoConf(rid);
|
|
|
|
if (callEnabled)
|
|
return (
|
|
<HeaderButton.Item
|
|
disabled={disabledTooltip}
|
|
iconName='phone'
|
|
onPress={showInitCallActionSheet}
|
|
testID='room-view-header-call'
|
|
/>
|
|
);
|
|
return null;
|
|
}
|