Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

draft: fix: menu closing on web automatically #4149

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
68 changes: 68 additions & 0 deletions example/src/Examples/MenuExample.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,23 @@ type MenuVisibility = {

const MORE_ICON = Platform.OS === 'ios' ? 'dots-horizontal' : 'dots-vertical';

const longMenuItems = [
'Home',
'About us',
'History',
'Team',
'Products',
'Investments',
'R&D',
'News',
'Archive',
'Events',
'Blog',
'Account',
'Press',
'Contact',
];

const MenuExample = ({ navigation }: Props) => {
const [visible, setVisible] = React.useState<MenuVisibility>({});
const [contextualMenuCoord, setContextualMenuCoor] =
Expand Down Expand Up @@ -146,6 +163,49 @@ const MenuExample = ({ navigation }: Props) => {
</TouchableRipple>
</List.Section>
</View>
<List.Section style={styles.listSection} title="Long menus">
<View style={styles.spaceBetween}>
<Menu
visible={_getVisible('menu-left')}
onDismiss={_toggleMenu('menu-left')}
anchor={
<Button mode="outlined" onPress={_toggleMenu('menu-left')}>
Left
</Button>
}
>
{longMenuItems.map((item) => (
<Menu.Item key={item} title={item} onPress={() => {}} />
))}
</Menu>
<Menu
visible={_getVisible('menu-center')}
onDismiss={_toggleMenu('menu-center')}
anchor={
<Button mode="outlined" onPress={_toggleMenu('menu-center')}>
Center
</Button>
}
>
{longMenuItems.map((item) => (
<Menu.Item key={item} title={item} onPress={() => {}} />
))}
</Menu>
<Menu
visible={_getVisible('menu-right')}
onDismiss={_toggleMenu('menu-right')}
anchor={
<Button mode="outlined" onPress={_toggleMenu('menu-right')}>
Right
</Button>
}
>
{longMenuItems.map((item) => (
<Menu.Item key={item} title={item} onPress={() => {}} />
))}
</Menu>
</View>
</List.Section>

<View style={styles.bottomMenu}>
<Menu
Expand Down Expand Up @@ -182,6 +242,14 @@ const styles = StyleSheet.create({
alignCenter: {
alignItems: 'center',
},
listSection: {
flex: 1,
overflow: 'scroll',
},
spaceBetween: {
flexDirection: 'row',
justifyContent: 'space-between',
},
md3Divider: {
marginVertical: 8,
},
Expand Down
1 change: 1 addition & 0 deletions src/components/Menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ class Menu extends React.Component<Props, State> {
const styles = StyleSheet.create({
wrapper: {
position: 'absolute',
overflow: 'hidden',
},
shadowMenuContainer: {
opacity: 0,
Expand Down
2 changes: 2 additions & 0 deletions src/components/__tests__/__snapshots__/Menu.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ exports[`renders menu with content styles 1`] = `
style={
[
{
"overflow": "hidden",
"position": "absolute",
},
{
Expand Down Expand Up @@ -946,6 +947,7 @@ exports[`renders visible menu 1`] = `
style={
[
{
"overflow": "hidden",
"position": "absolute",
},
{
Expand Down