123456789101112131415161718192021222324252627282930313233343536 |
- /* eslint-disable lines-around-comment */
- import React, { useCallback } from 'react';
- import { useDispatch } from 'react-redux';
-
- // @ts-ignore
- import { openSheet } from '../../../base/dialog';
- // @ts-ignore
- import { IconHangup } from '../../../base/icons';
- import IconButton from '../../../base/react/components/native/IconButton';
- import { BUTTON_TYPES } from '../../../base/ui/constants';
-
- import HangupMenu from './HangupMenu';
-
-
- /**
- * Button for showing the hangup menu.
- *
- * @returns {JSX.Element} - The hangup menu button.
- */
- const HangupMenuButton = () : JSX.Element => {
- const dispatch = useDispatch();
-
- const onSelect = useCallback(() => {
- dispatch(openSheet(HangupMenu));
- }, [ dispatch ]);
-
- return (
- <IconButton
- accessibilityLabel = 'toolbar.accessibilityLabel.hangup'
- onPress = { onSelect }
- src = { IconHangup }
- type = { BUTTON_TYPES.PRIMARY } />
- );
- };
-
- export default HangupMenuButton;
|