Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « serverless « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e218a9aa3fd45f9d48aafa02585024a1cf3ec514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Validate that the object coming in has valid query details and results
export const validateGraphData = (data) =>
  data.queries &&
  Array.isArray(data.queries) &&
  data.queries.filter((query) => {
    if (Array.isArray(query.result)) {
      return query.result.filter((res) => Array.isArray(res.values)).length === query.result.length;
    }

    return false;
  }).length === data.queries.length;

export const translate = (functions) =>
  functions.reduce(
    (acc, func) =>
      Object.assign(acc, {
        [func.environment_scope]: (acc[func.environment_scope] || []).concat([func]),
      }),
    {},
  );