Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
105 views
in Technique[技术] by (71.8m points)

How can I add an active class when a button is clicked in ReactJS

What i want to acheive is to have an active class when a link is clicked. I'm using react

This is the pagination.js file where I want to have the active class on each number clicked

 const Pagination = ({ recordsPerPage, totalRecords, paginate }) => {
    
    const pageNumbers = []

    for(let i = 1; i <= Math.ceil(totalRecords / recordsPerPage); i++) {
        pageNumbers.push(i)
    }
    return (
        
        <ul className='pagination center'>
           <li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>

               {pageNumbers.map(number => (
                   <li key={number} style={{ marginLeft: '5px'}}>
                       <a href='#!' className='hoverable' onClick={() => paginate(number)}>
                         {number}
                       </a>
                   </li>
               ))}

           <li class="waves-effect"><a href="#!"><i class="material-icons">chevron_right</i></a></li>
            
        </ul> 
    )
}
question from:https://stackoverflow.com/questions/65876634/how-can-i-add-an-active-class-when-a-button-is-clicked-in-reactjs

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can just add a state here, when your onclick fire, set the state of current index

const Pagination = ({ recordsPerPage, totalRecords, paginate }) => {
    const [activePage, setActivePage] = useState(0);

    const pageNumbers = []

    for(let i = 1; i <= Math.ceil(totalRecords / recordsPerPage); i++) {
        pageNumbers.push(i)
    }

    const handlePaginate = (index) => {
        setActivePage(index);
        paginate(index)
    }

    return (
        
        <ul className='pagination center'>
           <li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>

               {pageNumbers.map(number => (
                   <li key={number} style={{ marginLeft: '5px'}} className={activePage === number && 'active'}>
                       <a href='#!' className='hoverable' onClick={() => handlePaginate(number)}>
                         {number}
                       </a>
                   </li>
               ))}

           <li class="waves-effect"><a href="#!"><i class="material-icons">chevron_right</i></a></li>
            
        </ul> 
    )
}

As for initial state, right now just default to 0, but it should be whatever current page you are on.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...