Want to access all of our courses? (30 h 41 min)
You also get:
Already a member? Login here
Amazing course!!! A note for posterity:
We can add a category_id: this.state.query.category_id, inside the query on orderChanged method to avoid the reset category when click on asc or desc icon
category_id: this.state.query.category_id,
this.setState(({ query: { page: 1, category_id: this.state.query.category_id, order_column: column, order_direction: direction }}), () => this.fetchPosts());
Also inside the select of categories we can add
<option value='all'>-- all categories --</option>
and on categoryChanged method
categoryChanged(event) { const category_id = event.target.value; const categoryQuery = { query: category_id === 'all' ? { page: 1 } : { category_id, page: 1 } }; this.setState(categoryQuery, () => this.fetchPosts());}
to list all results when choose all categories
Tell us what you like or what we can improve
Feel free to share anything you like or dislike about this page or the platform in general.
Your feedback has been received. We truly appreciate you taking the time to help us improve.
Amazing course!!! A note for posterity:
We can add a
category_id: this.state.query.category_id,inside the query on orderChanged method to avoid the reset category when click on asc or desc iconAlso inside the select of categories we can add
and on categoryChanged method
to list all results when choose all categories