I have this array of objects
JavaScript
x
17
17
1
[
2
{
3
appLearningItemId: 67
4
catalogues: (2) [ {id: 1041, value: "New Catalog"},
5
{id: 1058, value: "Test"}]
6
categories: (3) [{id: 1, value: "Soft Skills"},
7
{id: 3, value: "Non-technical"},
8
{id: 5, value: "Induction"}]
9
code: "CCE0013"
10
suppliers: (3) [{id: 1, value: "Company XYZ Ltd"},
11
{id: 2, value: "test c2"},
12
{id: 17, value: "new company"} ]
13
title: "07 Values & Beliefs"
14
type: {id: 11377, value: "Elearning"}
15
}, * 682 items
16
]
17
I have to filter this list with 4 different select boxes, Catalogues, Categories, Suppliers, Type.
I can filter the list for type because it is not in an array like so
JavaScript
1
2
1
const typeList = this.originalLearningItems.filter(item => item.type.value === val.typeSearch)
2
but for catalogues, categories and suppliers they are a level down. I have tried
JavaScript
1
3
1
const listHasCatalogs = this.originalLearningItems.filter(item => item.catalogues.map(
2
catalogs => catalogs.some(catalog => catalog.value == val.catalogSearch)
3
but I get catalogs.some is not an object, I also tried catalogs.filter but I get the same error.
What is the best way to filter the items based on values within a nested array of objects?
Advertisement
Answer
.some
is a function that belongs to Arrays. You are calling it on each element of the array.
Try this instead.
JavaScript
1
5
1
const listHasCatalogs = this.originalLearningItems
2
.filter(item =>
3
item.catalogues.some(catalog => catalog.value == val.catalogSearch)
4
)
5