Code Monkey home page Code Monkey logo

Comments (12)

wilfriednhw avatar wilfriednhw commented on July 29, 2024 3

HI @mxck

I found a solution to handle this problem. This could help others.

here is my code

//===================For dropdown menu=============================//

_menu = [ ];

hideMenu = (item) => {
    this._menu[item].hide();
};

showMenu = (item) => {
    this._menu[item].show();
};

displayDropdown = (item) => {
    return (
        <Menu
            //  ref={this.setMenuRef}
            ref={(menu) => { this._menu[item] = menu }}
            button={<Icon2 name="dots-three-vertical"
                size={25}
                color="#572E82"
                onPress={() => this.showMenu(item)}
            />}
        >
            <MenuItem onPress={() => this.hideMenu(item)}>{item}</MenuItem>
        </Menu>
    )
}

//===================End dropdown menu=============================//

Inside render method

render() {
    let array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
    return (
        <ScrollView style={styles.listModuleContainer}>
            {
                array.map(
                    item =>
                        <View key={item} style={styles.moduleContainer} >
                            <View style={styles.infosModule}>
                                <Text style={[styles.infos, styles.infosSerial]}>CE4WRTRYTY - {item} </Text>
                                <Text style={styles.infos}>695203140</Text>
                                <Text style={styles.infos}>31-07-2017</Text>
                            </View>
                            <View style={styles.triggerDropdown}>
                                {this.displayDropdown(item)}  //display dropdown
                            </View>
                        </View>
                )
            }
        </ScrollView>

    )
}

from react-native-material-menu.

Saad-Bashar avatar Saad-Bashar commented on July 29, 2024 1

I am having a problem implementing this ref with useRef. Can anyone guide me? @kabitacode ?

from react-native-material-menu.

mxck avatar mxck commented on July 29, 2024

@wilfriednhw hello! Right now you can create menus for each item, but this is not optimized. In the future, I will rework this library by using react context.

from react-native-material-menu.

wilfriednhw avatar wilfriednhw commented on July 29, 2024

Thank you for your answer, I have another problem.

for example, I have 6 elements, when I click on the first element, the menu is triggered on the sixth element.

What to do please

from react-native-material-menu.

jeffelector avatar jeffelector commented on July 29, 2024

HI @mxck

I found a solution to handle this problem. This could help others.

here is my code

//===================For dropdown menu=============================//

_menu = [ ];

hideMenu = (item) => {
    this._menu[item].hide();
};

showMenu = (item) => {
    this._menu[item].show();
};

displayDropdown = (item) => {
    return (
        <Menu
            //  ref={this.setMenuRef}
            ref={(menu) => { this._menu[item] = menu }}
            button={<Icon2 name="dots-three-vertical"
                size={25}
                color="#572E82"
                onPress={() => this.showMenu(item)}
            />}
        >
            <MenuItem onPress={() => this.hideMenu(item)}>{item}</MenuItem>
        </Menu>
    )
}

//===================End dropdown menu=============================//

Inside render method

render() {
    let array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
    return (
        <ScrollView style={styles.listModuleContainer}>
            {
                array.map(
                    item =>
                        <View key={item} style={styles.moduleContainer} >
                            <View style={styles.infosModule}>
                                <Text style={[styles.infos, styles.infosSerial]}>CE4WRTRYTY - {item} </Text>
                                <Text style={styles.infos}>695203140</Text>
                                <Text style={styles.infos}>31-07-2017</Text>
                            </View>
                            <View style={styles.triggerDropdown}>
                                {this.displayDropdown(item)}  //display dropdown
                            </View>
                        </View>
                )
            }
        </ScrollView>

    )
}

you saved my day ! thanks!

from react-native-material-menu.

johnjoshuadablo avatar johnjoshuadablo commented on July 29, 2024

HI @mxck

I found a solution to handle this problem. This could help others.

here is my code

//===================For dropdown menu=============================//

_menu = [ ];

hideMenu = (item) => {
    this._menu[item].hide();
};

showMenu = (item) => {
    this._menu[item].show();
};

displayDropdown = (item) => {
    return (
        <Menu
            //  ref={this.setMenuRef}
            ref={(menu) => { this._menu[item] = menu }}
            button={<Icon2 name="dots-three-vertical"
                size={25}
                color="#572E82"
                onPress={() => this.showMenu(item)}
            />}
        >
            <MenuItem onPress={() => this.hideMenu(item)}>{item}</MenuItem>
        </Menu>
    )
}

//===================End dropdown menu=============================//

Inside render method

render() {
    let array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
    return (
        <ScrollView style={styles.listModuleContainer}>
            {
                array.map(
                    item =>
                        <View key={item} style={styles.moduleContainer} >
                            <View style={styles.infosModule}>
                                <Text style={[styles.infos, styles.infosSerial]}>CE4WRTRYTY - {item} </Text>
                                <Text style={styles.infos}>695203140</Text>
                                <Text style={styles.infos}>31-07-2017</Text>
                            </View>
                            <View style={styles.triggerDropdown}>
                                {this.displayDropdown(item)}  //display dropdown
                            </View>
                        </View>
                )
            }
        </ScrollView>

    )
}

Does not work for me :(

from react-native-material-menu.

r-mhjn avatar r-mhjn commented on July 29, 2024

@wilfriednhw i tried using ur solution but the problem of menu being displayed on the last item of flatlist is still there

from react-native-material-menu.

arunkrishnang86 avatar arunkrishnang86 commented on July 29, 2024

Same issue persisting for me . Did anyone found a solution for this ?

from react-native-material-menu.

kabitacode avatar kabitacode commented on July 29, 2024

in flatlist ( renderItem I added items and index)

showMenu = (item, index) => {
        this._menu[index].show()
    };

<Menu
  ref={(menu) => {this._menu[index] = menu}}
  button={<Text onPress={()=>this.showMenu(item, index)}>Show menu</Text>}>
  <MenuItem onPress={this.hideMenu}>Menu item 1</MenuItem>
  </Menu>

Solved for me :) thank's @jeffelector

from react-native-material-menu.

gauravsbagul avatar gauravsbagul commented on July 29, 2024

@Saad-Bashar same here

from react-native-material-menu.

varunSuccessive avatar varunSuccessive commented on July 29, 2024

showMenu = (item, index) => {
this._menu[index].show()
};

{this._menu[index] = menu}} button={this.showMenu(item, index)}>Show menu}> Menu item 1

Solution worked for me:) thanks alots.

from react-native-material-menu.

mohdadnaanazam avatar mohdadnaanazam commented on July 29, 2024

@Saad-Bashar same here

  1. Create a variable inside your component let _menu : any = []
  2. Inside your renderItem method and in Menu component pass this ref={(ref)=> _menu[index] = ref }
  3. Open your Menu by calling _menu[index]?.show();

from react-native-material-menu.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.