Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
simcaq-node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
simcaq-node
Commits
56fdb6d2
Commit
56fdb6d2
authored
8 months ago
by
lgtg20
Browse files
Options
Downloads
Patches
Plain Diff
fix split problem
parent
2df470e0
No related branches found
No related tags found
3 merge requests
!417
[ADD] Indicator "Taxa de Atendimento Educacional" updated on production!
,
!416
[ADD] Route almost ready, some tests needed. Comments added and filters that...
,
!411
fix split problem
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/libs/middlewares/aggregateData.js
+34
-33
34 additions, 33 deletions
src/libs/middlewares/aggregateData.js
with
34 additions
and
33 deletions
src/libs/middlewares/aggregateData.js
+
34
−
33
View file @
56fdb6d2
...
...
@@ -20,43 +20,44 @@ const convert = {
}
function
aggregateData
(
req
,
res
,
next
)
{
const
newResult
=
[]
const
aggregateFields
=
[
'
gender
'
,
'
age_range
'
,
'
ethnic_group
'
,
'
education_level_mod_agg
'
,
'
integral_time_agg
'
,
'
period_agg
'
,
'
modality_integral_time
'
,
'
especial_education
'
]
let
id
;
const
fields
=
req
.
query
.
dims
.
split
(
'
,
'
);
let
currentAggregateField
;
let
currentNonAggregateField
;
// Verifica se o filtro passado está presente nos filtros agregados
fields
.
forEach
(
field
=>
{
if
(
aggregateFields
.
includes
(
field
))
currentAggregateField
=
field
;
else
currentNonAggregateField
=
field
});
console
.
log
(
convert
[
currentAggregateField
])
if
(
currentAggregateField
)
{
req
.
result
.
forEach
((
r
)
=>
{
// Alguns filtros começam com o id = 0 outros id = 1
id
=
[
'
ethnic_group
'
,
'
integral_time_agg
'
].
includes
(
currentAggregateField
)
?
0
:
1
;
for
(
const
property
in
r
)
{
// Dados agregados são identificados com a substring "total_" em sua chave
if
(
property
.
includes
(
"
total_
"
))
{
let
data
=
{
total
:
r
[
property
],
year
:
r
.
year
,
[
`
${
currentAggregateField
}
_id`
]:
id
,
[
`
${
currentAggregateField
}
_name`
]:
id2str
[
convert
[
currentAggregateField
]](
id
)
}
if
(
req
.
query
.
dims
)
{
const
newResult
=
[]
const
aggregateFields
=
[
'
gender
'
,
'
age_range
'
,
'
ethnic_group
'
,
'
education_level_mod_agg
'
,
'
integral_time_agg
'
,
'
period_agg
'
,
'
modality_integral_time
'
,
'
especial_education
'
]
let
id
;
const
fields
=
req
.
query
.
dims
.
split
(
'
,
'
);
let
currentAggregateField
;
let
currentNonAggregateField
;
if
(
currentNonAggregateField
)
{
data
[
`
${
currentNonAggregateField
}
_id`
]
=
r
[
`
${
currentNonAggregateField
}
_id`
];
data
[
`
${
currentNonAggregateField
}
_name`
]
=
id2str
[
convert
[
currentNonAggregateField
]](
r
[
`
${
currentNonAggregateField
}
_id`
]);
// Verifica se o filtro passado está presente nos filtros agregados
fields
.
forEach
(
field
=>
{
if
(
aggregateFields
.
includes
(
field
))
currentAggregateField
=
field
;
else
currentNonAggregateField
=
field
});
console
.
log
(
convert
[
currentAggregateField
])
if
(
currentAggregateField
)
{
req
.
result
.
forEach
((
r
)
=>
{
// Alguns filtros começam com o id = 0 outros id = 1
id
=
[
'
ethnic_group
'
,
'
integral_time_agg
'
].
includes
(
currentAggregateField
)
?
0
:
1
;
for
(
const
property
in
r
)
{
// Dados agregados são identificados com a substring "total_" em sua chave
if
(
property
.
includes
(
"
total_
"
))
{
let
data
=
{
total
:
r
[
property
],
year
:
r
.
year
,
[
`
${
currentAggregateField
}
_id`
]:
id
,
[
`
${
currentAggregateField
}
_name`
]:
id2str
[
convert
[
currentAggregateField
]](
id
)
}
if
(
currentNonAggregateField
)
{
data
[
`
${
currentNonAggregateField
}
_id`
]
=
r
[
`
${
currentNonAggregateField
}
_id`
];
data
[
`
${
currentNonAggregateField
}
_name`
]
=
id2str
[
convert
[
currentNonAggregateField
]](
r
[
`
${
currentNonAggregateField
}
_id`
]);
}
newResult
.
push
(
data
)
++
id
;
}
newResult
.
push
(
data
)
++
id
;
}
}
})
req
.
result
=
newResult
;
}
)
req
.
result
=
newResult
;
}
}
console
.
log
(
req
.
result
);
next
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment