-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18692 from Expensify/ionatan_payheader
Add pay button to money request header (cherry picked from commit b44b66f)
- Loading branch information
Showing
42 changed files
with
685 additions
and
537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
import React, {useState, useRef, useEffect} from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import {View} from 'react-native'; | ||
import _ from 'underscore'; | ||
import useWindowDimensions from '../hooks/useWindowDimensions'; | ||
import styles from '../styles/styles'; | ||
import Button from './Button'; | ||
import PopoverMenu from './PopoverMenu'; | ||
import Icon from './Icon'; | ||
import * as Expensicons from './Icon/Expensicons'; | ||
import themeColors from '../styles/themes/default'; | ||
import CONST from '../CONST'; | ||
|
||
const propTypes = { | ||
/** Text to display for the menu header */ | ||
menuHeaderText: PropTypes.string, | ||
|
||
/** Callback to execute when the main button is pressed */ | ||
onPress: PropTypes.func.isRequired, | ||
|
||
/** Whether we should show a loading state for the main button */ | ||
isLoading: PropTypes.bool, | ||
|
||
/** Should the confirmation button be disabled? */ | ||
isDisabled: PropTypes.bool, | ||
|
||
/** Additional styles to add to the component */ | ||
style: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.object), PropTypes.object]), | ||
|
||
/** Menu options to display */ | ||
/** e.g. [{text: 'Pay with Expensify', icon: Wallet}, {text: 'PayPal', icon: PayPal}] */ | ||
options: PropTypes.arrayOf( | ||
PropTypes.shape({ | ||
value: PropTypes.string.isRequired, | ||
text: PropTypes.string.isRequired, | ||
icon: PropTypes.elementType, | ||
iconWidth: PropTypes.number, | ||
iconHeight: PropTypes.number, | ||
iconDescription: PropTypes.string, | ||
}), | ||
).isRequired, | ||
}; | ||
|
||
const defaultProps = { | ||
isLoading: false, | ||
isDisabled: false, | ||
menuHeaderText: '', | ||
style: [], | ||
}; | ||
|
||
const ButtonWithDropdownMenu = (props) => { | ||
const [selectedItemIndex, setSelectedItemIndex] = useState(0); | ||
const [isMenuVisible, setIsMenuVisible] = useState(false); | ||
const [popoverAnchorPosition, setPopoverAnchorPosition] = useState(null); | ||
const {width: windowWidth, height: windowHeight} = useWindowDimensions(); | ||
const caretButton = useRef(null); | ||
useEffect(() => { | ||
if (!caretButton.current) { | ||
return; | ||
} | ||
caretButton.current.measureInWindow((x, y, w, h) => { | ||
setPopoverAnchorPosition({ | ||
horizontal: x + w, | ||
vertical: y + h, | ||
}); | ||
}); | ||
}, [windowWidth, windowHeight]); | ||
|
||
const selectedItem = props.options[selectedItemIndex]; | ||
return ( | ||
<View> | ||
{props.options.length > 1 ? ( | ||
<View style={[styles.flexRow, styles.justifyContentBetween, styles.alignItemsCenter, ...props.style]}> | ||
<Button | ||
success | ||
onPress={(event) => props.onPress(event, selectedItem.value)} | ||
text={selectedItem.text} | ||
isDisabled={props.isDisabled} | ||
isLoading={props.isLoading} | ||
shouldRemoveRightBorderRadius | ||
style={[styles.flex1, styles.pr0]} | ||
pressOnEnter | ||
/> | ||
<View style={styles.buttonDivider} /> | ||
<Button | ||
ref={caretButton} | ||
success | ||
isDisabled={props.isDisabled} | ||
style={[styles.pl0]} | ||
onPress={() => { | ||
setIsMenuVisible(true); | ||
}} | ||
shouldRemoveLeftBorderRadius | ||
> | ||
<Icon | ||
src={Expensicons.DownArrow} | ||
fill={themeColors.textLight} | ||
/> | ||
</Button> | ||
</View> | ||
) : ( | ||
<Button | ||
success | ||
isDisabled={props.isDisabled} | ||
style={[styles.w100, ...props.style]} | ||
isLoading={props.isLoading} | ||
text={selectedItem.text} | ||
onPress={(event) => props.onPress(event, props.options[0].value)} | ||
pressOnEnter | ||
/> | ||
)} | ||
{props.options.length > 1 && !_.isEmpty(popoverAnchorPosition) && ( | ||
<PopoverMenu | ||
isVisible={isMenuVisible} | ||
onClose={() => setIsMenuVisible(false)} | ||
onItemSelected={() => setIsMenuVisible(false)} | ||
anchorPosition={popoverAnchorPosition} | ||
anchorAlignment={{ | ||
horizontal: CONST.MODAL.ANCHOR_ORIGIN_HORIZONTAL.RIGHT, | ||
vertical: CONST.MODAL.ANCHOR_ORIGIN_VERTICAL.BOTTOM, | ||
}} | ||
headerText={props.menuHeaderText} | ||
menuItems={_.map(props.options, (item, index) => ({ | ||
...item, | ||
onSelected: () => { | ||
setSelectedItemIndex(index); | ||
}, | ||
}))} | ||
/> | ||
)} | ||
</View> | ||
); | ||
}; | ||
|
||
ButtonWithDropdownMenu.propTypes = propTypes; | ||
ButtonWithDropdownMenu.defaultProps = defaultProps; | ||
ButtonWithDropdownMenu.displayName = 'ButtonWithDropdownMenu'; | ||
|
||
export default React.memo(ButtonWithDropdownMenu); |
Oops, something went wrong.