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

utils.js « store « ci_variable_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44807e03dad99ded8c198cc0ddc409266e06dd37 (plain)
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
import { __ } from '~/locale';

const variableType = 'env_var';
const fileType = 'file';

const variableTypeHandler = type => (type === 'Variable' ? variableType : fileType);

export const prepareDataForDisplay = variables => {
  const variablesToDisplay = [];
  variables.forEach(variable => {
    const variableCopy = variable;
    if (variableCopy.variable_type === variableType) {
      variableCopy.variable_type = __('Variable');
    } else {
      variableCopy.variable_type = __('File');
    }

    if (variableCopy.environment_scope === '*') {
      variableCopy.environment_scope = __('All environments');
    }
    variablesToDisplay.push(variableCopy);
  });
  return variablesToDisplay;
};

export const prepareDataForApi = (variable, destroy = false) => {
  const variableCopy = variable;
  variableCopy.protected.toString();
  variableCopy.masked.toString();
  variableCopy.variable_type = variableTypeHandler(variableCopy.variable_type);

  if (variableCopy.environment_scope === __('All environments')) {
    variableCopy.environment_scope = __('*');
  }

  if (destroy) {
    // eslint-disable-next-line
    variableCopy._destroy = destroy;
  }

  return variableCopy;
};

export const prepareEnvironments = environments => environments.map(e => e.name);