How can I get a reference to an element in list using key?











up vote
2
down vote

favorite












A simple question which I can't find a good answer to.



I have a very large list of items (>1000, possibly greater than 10k). Each of these has a unique key. Is it possible to get a ref to an element by only knowing its key?



I can certainly generate refs myself, but this would require me maintaining a list of refs myself. In general, that is not a big deal, but due to the large list, it would probably be more efficient if there was a method for getting a ref just from the key.










share|improve this question




















  • 1




    What do you want to do with the DOM node once you have a reference to it? The key prop is used by React internally and is never put on the DOM node, so I don't think you can use that, but you could put it in a data attribute and use that for querying if you really need to: <div key={someKey} data-key={somKey}> ... </div>
    – Tholle
    Nov 16 at 21:21










  • First and foremost, I want to change focus to a specific element.
    – bremen_matt
    Nov 16 at 21:25










  • Alright. Depending on your use case you might get away with something like document.querySelectorAll(`[data-key="${someKey}"]`).focus();
    – Tholle
    Nov 16 at 21:27








  • 1




    Nice. Post an answer and earn your reward. I can verify that this indeed works.
    – bremen_matt
    Nov 16 at 21:50















up vote
2
down vote

favorite












A simple question which I can't find a good answer to.



I have a very large list of items (>1000, possibly greater than 10k). Each of these has a unique key. Is it possible to get a ref to an element by only knowing its key?



I can certainly generate refs myself, but this would require me maintaining a list of refs myself. In general, that is not a big deal, but due to the large list, it would probably be more efficient if there was a method for getting a ref just from the key.










share|improve this question




















  • 1




    What do you want to do with the DOM node once you have a reference to it? The key prop is used by React internally and is never put on the DOM node, so I don't think you can use that, but you could put it in a data attribute and use that for querying if you really need to: <div key={someKey} data-key={somKey}> ... </div>
    – Tholle
    Nov 16 at 21:21










  • First and foremost, I want to change focus to a specific element.
    – bremen_matt
    Nov 16 at 21:25










  • Alright. Depending on your use case you might get away with something like document.querySelectorAll(`[data-key="${someKey}"]`).focus();
    – Tholle
    Nov 16 at 21:27








  • 1




    Nice. Post an answer and earn your reward. I can verify that this indeed works.
    – bremen_matt
    Nov 16 at 21:50













up vote
2
down vote

favorite









up vote
2
down vote

favorite











A simple question which I can't find a good answer to.



I have a very large list of items (>1000, possibly greater than 10k). Each of these has a unique key. Is it possible to get a ref to an element by only knowing its key?



I can certainly generate refs myself, but this would require me maintaining a list of refs myself. In general, that is not a big deal, but due to the large list, it would probably be more efficient if there was a method for getting a ref just from the key.










share|improve this question















A simple question which I can't find a good answer to.



I have a very large list of items (>1000, possibly greater than 10k). Each of these has a unique key. Is it possible to get a ref to an element by only knowing its key?



I can certainly generate refs myself, but this would require me maintaining a list of refs myself. In general, that is not a big deal, but due to the large list, it would probably be more efficient if there was a method for getting a ref just from the key.







reactjs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 at 21:13









isherwood

36.3k1080111




36.3k1080111










asked Nov 16 at 21:10









bremen_matt

2,35621734




2,35621734








  • 1




    What do you want to do with the DOM node once you have a reference to it? The key prop is used by React internally and is never put on the DOM node, so I don't think you can use that, but you could put it in a data attribute and use that for querying if you really need to: <div key={someKey} data-key={somKey}> ... </div>
    – Tholle
    Nov 16 at 21:21










  • First and foremost, I want to change focus to a specific element.
    – bremen_matt
    Nov 16 at 21:25










  • Alright. Depending on your use case you might get away with something like document.querySelectorAll(`[data-key="${someKey}"]`).focus();
    – Tholle
    Nov 16 at 21:27








  • 1




    Nice. Post an answer and earn your reward. I can verify that this indeed works.
    – bremen_matt
    Nov 16 at 21:50














  • 1




    What do you want to do with the DOM node once you have a reference to it? The key prop is used by React internally and is never put on the DOM node, so I don't think you can use that, but you could put it in a data attribute and use that for querying if you really need to: <div key={someKey} data-key={somKey}> ... </div>
    – Tholle
    Nov 16 at 21:21










  • First and foremost, I want to change focus to a specific element.
    – bremen_matt
    Nov 16 at 21:25










  • Alright. Depending on your use case you might get away with something like document.querySelectorAll(`[data-key="${someKey}"]`).focus();
    – Tholle
    Nov 16 at 21:27








  • 1




    Nice. Post an answer and earn your reward. I can verify that this indeed works.
    – bremen_matt
    Nov 16 at 21:50








1




1




What do you want to do with the DOM node once you have a reference to it? The key prop is used by React internally and is never put on the DOM node, so I don't think you can use that, but you could put it in a data attribute and use that for querying if you really need to: <div key={someKey} data-key={somKey}> ... </div>
– Tholle
Nov 16 at 21:21




What do you want to do with the DOM node once you have a reference to it? The key prop is used by React internally and is never put on the DOM node, so I don't think you can use that, but you could put it in a data attribute and use that for querying if you really need to: <div key={someKey} data-key={somKey}> ... </div>
– Tholle
Nov 16 at 21:21












First and foremost, I want to change focus to a specific element.
– bremen_matt
Nov 16 at 21:25




First and foremost, I want to change focus to a specific element.
– bremen_matt
Nov 16 at 21:25












Alright. Depending on your use case you might get away with something like document.querySelectorAll(`[data-key="${someKey}"]`).focus();
– Tholle
Nov 16 at 21:27






Alright. Depending on your use case you might get away with something like document.querySelectorAll(`[data-key="${someKey}"]`).focus();
– Tholle
Nov 16 at 21:27






1




1




Nice. Post an answer and earn your reward. I can verify that this indeed works.
– bremen_matt
Nov 16 at 21:50




Nice. Post an answer and earn your reward. I can verify that this indeed works.
– bremen_matt
Nov 16 at 21:50












1 Answer
1






active

oldest

votes

















up vote
2
down vote



accepted










The key prop is used by React internally and is never put on the DOM node so you can't use that for querying the DOM, but you could put it in a data attribute and use that for querying instead.



Example






class App extends React.Component {
state = {
items: ["foo", "bar", "baz"]
};

handleClick = event => {
const { key } = event.target.dataset;

document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
};

render() {
return (
<div>
{this.state.items.map(item => (
<div key={item}>
<input data-key={item} value={item} />
<button data-key={item} onClick={this.handleClick}>
Focus
</button>
</div>
))}
</div>
);
}
}

ReactDOM.render(<App />, document.getElementById("root"));

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

<div id="root"></div>








share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345417%2fhow-can-i-get-a-reference-to-an-element-in-list-using-key%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    2
    down vote



    accepted










    The key prop is used by React internally and is never put on the DOM node so you can't use that for querying the DOM, but you could put it in a data attribute and use that for querying instead.



    Example






    class App extends React.Component {
    state = {
    items: ["foo", "bar", "baz"]
    };

    handleClick = event => {
    const { key } = event.target.dataset;

    document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
    };

    render() {
    return (
    <div>
    {this.state.items.map(item => (
    <div key={item}>
    <input data-key={item} value={item} />
    <button data-key={item} onClick={this.handleClick}>
    Focus
    </button>
    </div>
    ))}
    </div>
    );
    }
    }

    ReactDOM.render(<App />, document.getElementById("root"));

    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

    <div id="root"></div>








    share|improve this answer

























      up vote
      2
      down vote



      accepted










      The key prop is used by React internally and is never put on the DOM node so you can't use that for querying the DOM, but you could put it in a data attribute and use that for querying instead.



      Example






      class App extends React.Component {
      state = {
      items: ["foo", "bar", "baz"]
      };

      handleClick = event => {
      const { key } = event.target.dataset;

      document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
      };

      render() {
      return (
      <div>
      {this.state.items.map(item => (
      <div key={item}>
      <input data-key={item} value={item} />
      <button data-key={item} onClick={this.handleClick}>
      Focus
      </button>
      </div>
      ))}
      </div>
      );
      }
      }

      ReactDOM.render(<App />, document.getElementById("root"));

      <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

      <div id="root"></div>








      share|improve this answer























        up vote
        2
        down vote



        accepted







        up vote
        2
        down vote



        accepted






        The key prop is used by React internally and is never put on the DOM node so you can't use that for querying the DOM, but you could put it in a data attribute and use that for querying instead.



        Example






        class App extends React.Component {
        state = {
        items: ["foo", "bar", "baz"]
        };

        handleClick = event => {
        const { key } = event.target.dataset;

        document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
        };

        render() {
        return (
        <div>
        {this.state.items.map(item => (
        <div key={item}>
        <input data-key={item} value={item} />
        <button data-key={item} onClick={this.handleClick}>
        Focus
        </button>
        </div>
        ))}
        </div>
        );
        }
        }

        ReactDOM.render(<App />, document.getElementById("root"));

        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

        <div id="root"></div>








        share|improve this answer












        The key prop is used by React internally and is never put on the DOM node so you can't use that for querying the DOM, but you could put it in a data attribute and use that for querying instead.



        Example






        class App extends React.Component {
        state = {
        items: ["foo", "bar", "baz"]
        };

        handleClick = event => {
        const { key } = event.target.dataset;

        document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
        };

        render() {
        return (
        <div>
        {this.state.items.map(item => (
        <div key={item}>
        <input data-key={item} value={item} />
        <button data-key={item} onClick={this.handleClick}>
        Focus
        </button>
        </div>
        ))}
        </div>
        );
        }
        }

        ReactDOM.render(<App />, document.getElementById("root"));

        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

        <div id="root"></div>








        class App extends React.Component {
        state = {
        items: ["foo", "bar", "baz"]
        };

        handleClick = event => {
        const { key } = event.target.dataset;

        document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
        };

        render() {
        return (
        <div>
        {this.state.items.map(item => (
        <div key={item}>
        <input data-key={item} value={item} />
        <button data-key={item} onClick={this.handleClick}>
        Focus
        </button>
        </div>
        ))}
        </div>
        );
        }
        }

        ReactDOM.render(<App />, document.getElementById("root"));

        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

        <div id="root"></div>





        class App extends React.Component {
        state = {
        items: ["foo", "bar", "baz"]
        };

        handleClick = event => {
        const { key } = event.target.dataset;

        document.querySelectorAll(`input[data-key="${key}"]`)[0].focus();
        };

        render() {
        return (
        <div>
        {this.state.items.map(item => (
        <div key={item}>
        <input data-key={item} value={item} />
        <button data-key={item} onClick={this.handleClick}>
        Focus
        </button>
        </div>
        ))}
        </div>
        );
        }
        }

        ReactDOM.render(<App />, document.getElementById("root"));

        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

        <div id="root"></div>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 16 at 22:14









        Tholle

        32.7k53558




        32.7k53558






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345417%2fhow-can-i-get-a-reference-to-an-element-in-list-using-key%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]