Skip to content

Commit

Permalink
Merge pull request #6523 from Expensify/revert-6278-alfredo-fab-optio…
Browse files Browse the repository at this point in the history
…ns-large-screens
  • Loading branch information
sketchydroide committed Nov 30, 2021
2 parents 26f167e + 7f2af77 commit b339775
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
25 changes: 14 additions & 11 deletions src/components/Popover/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,20 @@ const propTypes = {
* This is a convenience wrapper around the Modal component for a responsive Popover.
* On small screen widths, it uses BottomDocked modal type, and a Popover type on wide screen widths.
*/
const Popover = props => (
<Modal
type={props.isSmallScreenWidth ? CONST.MODAL.MODAL_TYPE.BOTTOM_DOCKED : CONST.MODAL.MODAL_TYPE.POPOVER}
popoverAnchorPosition={props.isSmallScreenWidth ? undefined : props.anchorPosition}
// eslint-disable-next-line react/jsx-props-no-spreading
{...props}
fullscreen={props.isSmallScreenWidth ? true : props.fullscreen}
animationIn={props.isSmallScreenWidth ? undefined : props.animationIn}
animationOut={props.isSmallScreenWidth ? undefined : props.animationOut}
/>
);
const Popover = (props) => {
const propsWithoutAnimation = _.omit(props, ['animationIn', 'animationOut', 'popoverAnchorPosition', 'disableAnimation']);
return (
<Modal
type={CONST.MODAL.MODAL_TYPE.BOTTOM_DOCKED}
// eslint-disable-next-line react/jsx-props-no-spreading
{...propsWithoutAnimation}

// Mobile will always has fullscreen menu
// eslint-disable-next-line react/jsx-props-no-multi-spaces
fullscreen
/>
);
};

Popover.propTypes = propTypes;
Popover.defaultProps = defaultProps;
Expand Down
1 change: 0 additions & 1 deletion src/components/PopoverMenu/BasePopoverMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class BasePopoverMenu extends PureComponent {
onModalHide={this.props.onMenuHide}
animationIn={this.props.animationIn}
animationOut={this.props.animationOut}
isSmallScreenWidth={this.props.isSmallScreenWidth}
disableAnimation={this.props.disableAnimation}
>
<View style={this.props.isSmallScreenWidth ? {} : styles.createMenuContainer}>
Expand Down
1 change: 0 additions & 1 deletion src/pages/home/sidebar/SidebarScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ class SidebarScreen extends Component {
isVisible={this.state.isCreateMenuActive}
anchorPosition={styles.createMenuPositionSidebar}
onItemSelected={this.onCreateMenuItemSelected}
isSmallScreenWidth={this.props.isSmallScreenWidth}
menuItems={[
{
icon: Expensicons.ChatBubble,
Expand Down

0 comments on commit b339775

Please sign in to comment.