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

actions.js « branches « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c46289f77e2f189b70f4a9e1fad52e142df1867a (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
import { __ } from '~/locale';
import Api from '~/api';
import * as types from './mutation_types';

export const requestBranches = ({ commit }) => commit(types.REQUEST_BRANCHES);
export const receiveBranchesError = ({ commit, dispatch }, { search }) => {
  dispatch(
    'setErrorMessage',
    {
      text: __('Error loading branches.'),
      action: payload =>
        dispatch('fetchBranches', payload).then(() =>
          dispatch('setErrorMessage', null, { root: true }),
        ),
      actionText: __('Please try again'),
      actionPayload: { search },
    },
    { root: true },
  );
  commit(types.RECEIVE_BRANCHES_ERROR);
};
export const receiveBranchesSuccess = ({ commit }, data) =>
  commit(types.RECEIVE_BRANCHES_SUCCESS, data);

export const fetchBranches = ({ dispatch, rootGetters }, { search = '' }) => {
  dispatch('requestBranches');
  dispatch('resetBranches');

  return Api.branches(rootGetters.currentProject.id, search, { sort: 'updated_desc' })
    .then(({ data }) => dispatch('receiveBranchesSuccess', data))
    .catch(() => dispatch('receiveBranchesError', { search }));
};

export const resetBranches = ({ commit }) => commit(types.RESET_BRANCHES);