Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to map only a portion of an array? (Array.map())

Tags:

I am building a project using React.js as a front-end framework. On one particular page I am displaying a full data set to the user. I have an Array which contains this full data set. It is an array of JSON objects. In terms of presenting this data to the user, I currently have it displaying the whole data set by returning each item of data using Array.map().

This is a step in the right direction, but now I need to display only a portion of the data-set, not the whole thing, I also want some control in terms of knowing how much of the total data set has been displayed, and how much of the data set is yet to be displayed. Basically I am building something like a "view more" button that loads more items of data to the user.

Here is what I am using now where 'feed' represents my Array of JSON objects. (this displays the whole data set.)

 return (   <div className={feedClass}>   {     feed.map((item, index) => {       return <FeedItem key={index} data={item}/>     })   }   </div> ); 

I am wondering if it is possible to use .map() on only a portion of the array without having to break up the array before hand? I know that a possible solution would be to hold the full data set, and break it off into portions, and then .map() those portions, but is there a way to .map() a portion of the array without having to break it up?

Any and all feedback is appreciated. Thanks!

like image 886
connected_user Avatar asked Sep 12 '16 16:09

connected_user


People also ask

How do I map only part of an array?

To map() only a portion of an array in React: Call the slice() method on the array to get a portion of the array. Call the map() method on the portion of the array. Iterate over the portion of the array.

What is the purpose use of the array map () method?

Definition and Usage map() creates a new array from calling a function for every array element. map() calls a function once for each element in an array. map() does not execute the function for empty elements. map() does not change the original array.

Can you map over empty array?

map() on empty array will not produces an error, but will return an empty array. Which is fine because empty array is a renderable item in react and won't produce error in render() and will not render the notes as there are no notes provided.


1 Answers

Do not try to solve this problem with a hack in your mapping step.

Instead, slice() the list to the right length first before the mapping:

class Feed extends React.Component {    constructor(props) {      super(props)            this.handleShowMore = this.handleShowMore.bind(this)            this.state = {        items: ['Item A', 'Item B', 'Item C', 'Item D'],        showItems: 2      }    }        handleShowMore() {      this.setState({        showItems:           this.state.showItems >= this.state.items.length ?            this.state.showItems : this.state.showItems + 1      })    }        render() {      const items = this.state.items.slice(0, this.state.showItems).map(        (item) => <div>{item}</div>      )            return (        <div>          {items}          <button onClick={this.handleShowMore}>            Show more!          </button>        </div>      )    }  }      ReactDOM.render(    <Feed />,    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>
like image 115
TimoStaudinger Avatar answered Oct 19 '22 23:10

TimoStaudinger