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

actions.js « list « modules « stores « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 945b093b9838bfd07b66959b848f9cf4507848b7 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import * as types from './mutation_types';
import { deprecatedCreateFlash as createFlash } from '~/flash';
import { __ } from '~/locale';
import api from '~/api';
import {
  normalizeHeaders,
  parseIntPagination,
  convertObjectPropsToCamelCase,
} from '~/lib/utils/common_utils';
import allReleasesQuery from '~/releases/queries/all_releases.query.graphql';
import { gqClient, convertGraphQLResponse } from '../../../util';

/**
 * Commits a mutation to update the state while the main endpoint is being requested.
 */
export const requestReleases = ({ commit }) => commit(types.REQUEST_RELEASES);

/**
 * Fetches the main endpoint.
 * Will dispatch requestNamespace action before starting the request.
 * Will dispatch receiveNamespaceSuccess if the request is successful
 * Will dispatch receiveNamesapceError if the request returns an error
 *
 * @param {String} projectId
 */
export const fetchReleases = ({ dispatch, rootState, state }, { page = '1' }) => {
  dispatch('requestReleases');

  if (
    rootState.featureFlags.graphqlReleaseData &&
    rootState.featureFlags.graphqlReleasesPage &&
    rootState.featureFlags.graphqlMilestoneStats
  ) {
    gqClient
      .query({
        query: allReleasesQuery,
        variables: {
          fullPath: state.projectPath,
        },
      })
      .then(response => {
        dispatch('receiveReleasesSuccess', convertGraphQLResponse(response));
      })
      .catch(() => dispatch('receiveReleasesError'));
  } else {
    api
      .releases(state.projectId, { page })
      .then(response => dispatch('receiveReleasesSuccess', response))
      .catch(() => dispatch('receiveReleasesError'));
  }
};

export const receiveReleasesSuccess = ({ commit }, { data, headers }) => {
  const pageInfo = parseIntPagination(normalizeHeaders(headers));
  const camelCasedReleases = convertObjectPropsToCamelCase(data, { deep: true });
  commit(types.RECEIVE_RELEASES_SUCCESS, {
    data: camelCasedReleases,
    pageInfo,
  });
};

export const receiveReleasesError = ({ commit }) => {
  commit(types.RECEIVE_RELEASES_ERROR);
  createFlash(__('An error occurred while fetching the releases. Please try again.'));
};