summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/commit/store/mutations.js
blob: 43f8f17301483d5637d8165dbea261cb52b6416a (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 * as types from './mutation_types';

export default {
  [types.SET_BRANCHES_ENDPOINT](state, endpoint) {
    state.branchesEndpoint = endpoint;
  },

  [types.REQUEST_BRANCHES](state) {
    state.isFetching = true;
  },

  [types.RECEIVE_BRANCHES_SUCCESS](state, branches) {
    state.isFetching = false;
    state.branches = branches;
    state.branches.unshift(state.branch);
  },

  [types.CLEAR_MODAL](state) {
    state.branch = state.defaultBranch;
  },

  [types.SET_BRANCH](state, branch) {
    state.branch = branch;
  },

  [types.SET_SELECTED_BRANCH](state, branch) {
    state.selectedBranch = branch;
  },

  [types.SET_SELECTED_PROJECT](state, projectId) {
    state.targetProjectId = projectId;
    state.branch = state.defaultBranch;
  },
};