I have an array of json objects as
JavaScript
x
59
59
1
[
2
{
3
"businessId": "7ab43023-7f40-40cf-b97c-563223bb27ef",
4
"id": "38fe3c68-e6aa-4c57-b4d7-dc6c4f597269",
5
"journalDate": "2020-08-13T00:00:00.000Z",
6
"transactionId": "146",
7
"accountId": "4",
8
"amount": 85,
9
"isReconciled": 0,
10
"active": 1,
11
"createdAt": "2020-08-14T02:55:43.988Z",
12
"updatedAt": "2020-08-14T02:55:43.988Z"
13
},
14
{
15
"id": "45bf4792-c5a5-44ed-b7e8-57557c4f30ee",
16
"journalDate": "2020-08-13T00:00:00.000Z",
17
"transactionId": "160",
18
"accountId": "4",
19
"amount": 70,
20
"isReconciled": 0,
21
"active": 1,
22
"createdAt": "2020-08-14T02:55:43.988Z",
23
"updatedAt": "2020-08-14T02:55:43.988Z"
24
},
25
{
26
"id": "5fe82eb0-17cc-4a08-97cf-0291b4b2b740",
27
"journalDate": "2020-08-13T00:00:00.000Z",
28
"transactionId": "158",
29
"accountId": "4",
30
"amount": 274.5,
31
"isReconciled": 0,
32
"active": 1,
33
"createdAt": "2020-08-14T02:55:43.988Z",
34
"updatedAt": "2020-08-14T02:55:43.988Z"
35
},
36
{
37
"id": "6690f228-35c1-4ba7-a0ff-a3e6a64cbc88",
38
"journalDate": "2020-06-30T00:00:00.000Z",
39
"transactionId": "151",
40
"accountId": "4",
41
"amount": -100,
42
"isReconciled": 0,
43
"active": 1,
44
"createdAt": "2020-08-14T02:55:43.988Z",
45
"updatedAt": "2020-08-14T02:55:43.988Z"
46
},
47
{
48
"id": "89a0e960-943d-4f0a-a81c-44d1ec27de59",
49
"journalDate": "2020-05-31T00:00:00.000Z",
50
"transactionId": "153",
51
"accountId": "4",
52
"amount": -60,
53
"isReconciled": 0,
54
"active": 1,
55
"createdAt": "2020-08-14T02:55:43.988Z",
56
"updatedAt": "2020-08-14T02:55:43.988Z"
57
}
58
]
59
Now i want to group data for same accountid for a year. For example
JavaScript
1
32
32
1
{
2
"accountId": "4",
3
"Jan": [
4
{
5
"businessId": "7ab43023-7f40-40cf-b97c-563223bb27ef",
6
"id": "38fe3c68-e6aa-4c57-b4d7-dc6c4f597269",
7
"journalDate": "2020-01-13T00:00:00.000Z",
8
"transactionId": "146",
9
"accountId": "4",
10
"amount": 85,
11
"isReconciled": 0,
12
"active": 1,
13
"createdAt": "2020-08-14T02:55:43.988Z",
14
"updatedAt": "2020-08-14T02:55:43.988Z"
15
}
16
],
17
"Feb": [
18
{
19
"businessId": "7ab43023-7f40-40cf-b97c-563223bb27ef",
20
"id": "38fe3c68-e6aa-4c57-b4d7-dc6c4f597269",
21
"journalDate": "2020-02-13T00:00:00.000Z",
22
"transactionId": "146",
23
"accountId": "4",
24
"amount": 85,
25
"isReconciled": 0,
26
"active": 1,
27
"createdAt": "2020-08-14T02:55:43.988Z",
28
"updatedAt": "2020-08-14T02:55:43.988Z"
29
}
30
]
31
}
32
Please guide me how can achieve this ?
Advertisement
Answer
Use forEach
over items and Build an object with keys and accountId (have separate buckets for each month). Get Object.values
from the object just built.
JavaScript
1
77
77
1
const transform = (arr) => {
2
const all = {};
3
arr.forEach(({ accountId, journalDate, rest }) => {
4
if (!all[accountId]) {
5
all[accountId] = { accountId };
6
}
7
const month = new Date(journalDate)
8
.toDateString()
9
.split(" ")[1];
10
if (!all[accountId][month]) {
11
all[accountId][month] = [];
12
}
13
all[accountId][month].push({ accountId, journalDate, rest });
14
});
15
return Object.values(all);
16
};
17
18
const data = [
19
{
20
businessId: "7ab43023-7f40-40cf-b97c-563223bb27ef",
21
id: "38fe3c68-e6aa-4c57-b4d7-dc6c4f597269",
22
journalDate: "2020-08-13T00:00:00.000Z",
23
transactionId: "146",
24
accountId: "4",
25
amount: 85,
26
isReconciled: 0,
27
active: 1,
28
createdAt: "2020-08-14T02:55:43.988Z",
29
updatedAt: "2020-08-14T02:55:43.988Z",
30
},
31
{
32
id: "45bf4792-c5a5-44ed-b7e8-57557c4f30ee",
33
journalDate: "2020-08-13T00:00:00.000Z",
34
transactionId: "160",
35
accountId: "4",
36
amount: 70,
37
isReconciled: 0,
38
active: 1,
39
createdAt: "2020-08-14T02:55:43.988Z",
40
updatedAt: "2020-08-14T02:55:43.988Z",
41
},
42
{
43
id: "5fe82eb0-17cc-4a08-97cf-0291b4b2b740",
44
journalDate: "2020-08-13T00:00:00.000Z",
45
transactionId: "158",
46
accountId: "4",
47
amount: 274.5,
48
isReconciled: 0,
49
active: 1,
50
createdAt: "2020-08-14T02:55:43.988Z",
51
updatedAt: "2020-08-14T02:55:43.988Z",
52
},
53
{
54
id: "6690f228-35c1-4ba7-a0ff-a3e6a64cbc88",
55
journalDate: "2020-06-30T00:00:00.000Z",
56
transactionId: "151",
57
accountId: "4",
58
amount: -100,
59
isReconciled: 0,
60
active: 1,
61
createdAt: "2020-08-14T02:55:43.988Z",
62
updatedAt: "2020-08-14T02:55:43.988Z",
63
},
64
{
65
id: "89a0e960-943d-4f0a-a81c-44d1ec27de59",
66
journalDate: "2020-05-31T00:00:00.000Z",
67
transactionId: "153",
68
accountId: "4",
69
amount: -60,
70
isReconciled: 0,
71
active: 1,
72
createdAt: "2020-08-14T02:55:43.988Z",
73
updatedAt: "2020-08-14T02:55:43.988Z",
74
},
75
];
76
77
console.log(transform(data));