All files / source/reports curves.js

100% Statements 22/22
72.72% Branches 8/11
100% Functions 6/6
100% Lines 18/18

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61                          1x 8x   1x                                     8x 1x 8x   1x 2x 2x   2x 2x 16x   20x 16x 4x   16x 2x         2x      
import moment from 'moment-timezone';
import { models } from '../../../config/database';
import CurvesDao from '../../database/dao/curves';
import { mountWhereBasedFilter } from '../../helpers/reports/sequelize';
 
// Funcao criada para popular o array headers e rows enviados por parametro
export default async function generateData(
  columns,
  filters,
  headers = [],
  rows = [],
  opts = {}
) {
  const where = mountWhereBasedFilter(filters);
  const headersValue = columns.map((it) => it.value);
 
  const data = await CurvesDao.findCurves(where, {
    attributes: headersValue,
    include: [
      {
        required: true,
        model: models.User,
        as: 'userCreated',
        attributes: ['login'],
      },
      {
        required: true,
        model: models.User,
        as: 'userUpdated',
        attributes: ['login'],
      },
    ],
    ...opts,
  });
 
  const headersValueRes = columns.map((it) => it.value);
  columns.forEach((it) => {
    headers.push(it.label);
  });
  data.forEach((it) => {
    it.createdUser = it.userCreated.login;
    it.updatedUser = it.userUpdated.login;
 
    const row = [];
    for (let index = 0; index < headersValueRes.length; index += 1) {
      const column = headersValueRes[index];
 
      row.push(column.split('.').reduce((o, i) => o[i] || '', it));
      if (column === 'createdAt' || column === 'updatedAt') {
        row[index] = moment(row[index]).format('L LTS');
      }
      if (column === 'curves') {
        row[
          index
        ] = `${it.curves.dataValues.code} - ${it.curves.dataValues.name}`;
      }
    }
    rows.push(row);
  });
}