I’ve the following json object
obj =
{
"api": "1.0.0",
"info": {
"title": "Events",
"version": "v1",
"description": "Set of events"
},
"topics": {
"cust.created.v1": { //Take this value
"subscribe": {
"summary": "Customer Register Event v2", //Take this value
"payload": {
"type": "object",
"required": [
"storeUid"
],
"properties": {
"customerUid": {
"type": "string",
"description": "Email of a Customer",
"title": "Customer uid"
}
}
}
}
},
"qu.orderplaced.v1": { //Take this value
"subscribe": {
"summary": "Order Placed", //Take this value
"payload": {
"type": "object",
"required": [
"quoteCode"
],
"properties": {
"quoteCode": {
"type": "string",
"example": "762",
"title": "Quote Code"
}
}
}
}
}
}
}
And I need to map the values from the json objects to javascript array
E.g.:
MyArray = [
{
Label: “cust.created.v1”,
Description: "Customer Register Event v2"
},
{
Label: “qu.orderplaced.v1”,
Description: "Order Placed",
}
]
I need to map the two values, the key => label for each instance (e.g. “cust.created.v1” ) and the summary => Description from each instance
I’ve tried to do it with map but I struggled to do it with key and the property inside, is it possible to do it with map ?
I’ve the following json object
https://codebeautify/jsonviewer/cb01bb4d
obj =
{
"api": "1.0.0",
"info": {
"title": "Events",
"version": "v1",
"description": "Set of events"
},
"topics": {
"cust.created.v1": { //Take this value
"subscribe": {
"summary": "Customer Register Event v2", //Take this value
"payload": {
"type": "object",
"required": [
"storeUid"
],
"properties": {
"customerUid": {
"type": "string",
"description": "Email of a Customer",
"title": "Customer uid"
}
}
}
}
},
"qu.orderplaced.v1": { //Take this value
"subscribe": {
"summary": "Order Placed", //Take this value
"payload": {
"type": "object",
"required": [
"quoteCode"
],
"properties": {
"quoteCode": {
"type": "string",
"example": "762",
"title": "Quote Code"
}
}
}
}
}
}
}
And I need to map the values from the json objects to javascript array
E.g.:
MyArray = [
{
Label: “cust.created.v1”,
Description: "Customer Register Event v2"
},
{
Label: “qu.orderplaced.v1”,
Description: "Order Placed",
}
]
I need to map the two values, the key => label for each instance (e.g. “cust.created.v1” ) and the summary => Description from each instance
I’ve tried to do it with map but I struggled to do it with key and the property inside, is it possible to do it with map ?
Share Improve this question edited Jun 16, 2020 at 12:14 dege 2,9492 gold badges30 silver badges35 bronze badges asked Jun 16, 2020 at 9:04 Beno OdrBeno Odr 1,2833 gold badges17 silver badges30 bronze badges4 Answers
Reset to default 6Take entries
of object then map it:
var obj = { "api": "1.0.0", "info": { "title": "Events", "version": "v1", "description": "Set of events" }, "topics": { "cust.created.v1": { "subscribe": { "summary": "Customer Register Event v2", "payload": { "type": "object", "required": [ "storeUid" ], "properties": { "customerUid": { "type": "string", "description": "Email of a Customer", "title": "Customer uid" } } } } }, "qu.orderplaced.v1": { "subscribe": { "summary": "Order Placed", "payload": { "type": "object", "required": [ "quoteCode" ], "properties": { "quoteCode": { "type": "string", "example": "762", "title": "Quote Code" } } } } }}}
var result = Object.entries(obj.topics).map(([k,v])=>({Label:k, Description:v.subscribe.summary}));
console.log(result);
Object.entries is the key of your problem ;)
Object.entries(obj.topics).map(topic => ({
Label: topic[0],
Description: topic[1].subscribe.summary
}))
If you are not sure if topic[1].subscribe you can cover your back with topic[1].subscribe?.summary
or topic[1].subscribe && topic[1].subscribe.summary
You can also destructure the inner arrays of Object.entries, maybe it's a little cleaner
const obj = { "api": "1.0.0", "info": { "title": "Events", "version": "v1", "description": "Set of events" }, "topics": { "cust.created.v1": { "subscribe": { "summary": "Customer Register Event v2", "payload": { "type": "object", "required": [ "storeUid" ], "properties": { "customerUid": { "type": "string", "description": "Email of a Customer", "title": "Customer uid" } } } } }, "qu.orderplaced.v1": { "subscribe": { "summary": "Order Placed", "payload": { "type": "object", "required": [ "quoteCode" ], "properties": { "quoteCode": { "type": "string", "example": "762", "title": "Quote Code" } } } } }}}
const arr = Object.entries(obj.topics).map(([Label, content]) => ({
Label,
Description: content.subscribe?.summary
}))
console.log(arr)
You can map over all the keys in topics, and for each of those items, you can pull any data out of that object like so:
Object.keys(obj.topics).map((key) => { return {Label: key, Description: obj.topics[key].subscribe.summary} })
You can do this way
let obj = { "api": "1.0.0", "info": { "title": "Events", "version": "v1", "description": "Set of events" }, "topics": { "cust.created.v1": { "subscribe": { "summary": "Customer Register Event v2", "payload": { "type": "object", "required": [ "storeUid" ], "properties": { "customerUid": { "type": "string", "description": "Email of a Customer", "title": "Customer uid" } } } } }, "qu.orderplaced.v1": { "subscribe": { "summary": "Order Placed", "payload": { "type": "object", "required": [ "quoteCode" ], "properties": { "quoteCode": { "type": "string", "example": "762", "title": "Quote Code" } } } } }}}
let outputArray = Object.keys(obj.topics).map((key)=>(
{ Label: key, Description: obj.topics[key]['subscribe']['summary'] }
))
console.log(outputArray)