javascript - Toggle(showhide) components onClick in single page React component useState - Stack Overflow

How do you toggle between ponents in the single page case below? Ideally, when you click the menu-item

How do you toggle between ponents in the single page case below? Ideally, when you click the menu-item the associated ponent will show and the others will hide.

React

import React, { useState } from 'react';
import About from "./ponents/About";
import Projects from "./ponents/Projects";
import Contact from "./ponents/Contact";

const App = () => {
    // Toggle state(s) here?

    // Toggle function(s) here?

    return (
        <div className="nav">
            <ul className="menu">
                <li className="menu-item">About</li>
                <li className="menu-item">Projects</li>
                <li className="menu-item">Contact</li>
            </ul>
        </div>
        <div className="container">
            <About />
            <Projects />
            <Contact />
        </div>
    )
};

export default App;

How do you toggle between ponents in the single page case below? Ideally, when you click the menu-item the associated ponent will show and the others will hide.

React

import React, { useState } from 'react';
import About from "./ponents/About";
import Projects from "./ponents/Projects";
import Contact from "./ponents/Contact";

const App = () => {
    // Toggle state(s) here?

    // Toggle function(s) here?

    return (
        <div className="nav">
            <ul className="menu">
                <li className="menu-item">About</li>
                <li className="menu-item">Projects</li>
                <li className="menu-item">Contact</li>
            </ul>
        </div>
        <div className="container">
            <About />
            <Projects />
            <Contact />
        </div>
    )
};

export default App;
Share Improve this question edited Jan 9, 2020 at 6:17 ckingchris asked Jan 9, 2020 at 5:48 ckingchrisckingchris 6091 gold badge14 silver badges29 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

A simple way is to render a ponent based on the current state and change the state to render another ponent:

import React, { useState } from 'react';
import About from "./ponents/About";
import Projects from "./ponents/Projects";
import Contact from "./ponents/Contact";

const App = () => {
    const [page, setPage] = useState("about")

    return (
        <div className="nav">
            <ul className="menu">
                <li className="menu-item" onClick={() => setPage("about")}>About</li>
                <li className="menu-item" onClick={() => setPage("projects")}>Projects</li>
                <li className="menu-item" onClick={() => setPage("contact")}>Contact</li>
            </ul>
        </div>
        <div className="container">
            {page === "about" && <About />}
            {page === "projects" && <Projects />}
            {page === "contact" && <Contact />}
        </div>
    )
};

export default App;

You probably want to make it a little cleaner but you have the idea.

You can manage an array for menu items and selected ponent will render! Here is the codepen demo!

const About=()=>"About us page";
const Projects=()=>"Projects page";
const Contact=()=>"Contact Page";
const App = () => {
   const menuItems =[
    {ponent:<About />, title:"About"},
    {ponent:<Projects />, title:"Projects"},
    {ponent:<Contact />, title:"Contact"}
   ];

   const [ponent, setComponent] = React.useState(menuItems[0].ponent);

    return (
      <div>
        <div className="nav">
            <ul className="menu">
                {
                  menuItems.map((item,i)=>
                    <li key={i} onClick={()=>setComponent(item.ponent)} className="menu-item">
                      {item.title}
                    </li>
                  )
                }
            </ul>
        </div>
        <div className="container">
           {ponent}
        </div>
       </div>
    );
};

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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743694683a4491555.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信