summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/create_cluster/store/cluster_dropdown/mutations.js
blob: d09689f1f6c3214d8cf71579277e7369fa446771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as types from './mutation_types';

export default {
  [types.REQUEST_ITEMS](state) {
    state.isLoadingItems = true;
    state.loadingItemsError = null;
  },
  [types.RECEIVE_ITEMS_SUCCESS](state, { items }) {
    state.isLoadingItems = false;
    state.items = items;
  },
  [types.RECEIVE_ITEMS_ERROR](state, { error }) {
    state.isLoadingItems = false;
    state.loadingItemsError = error;
  },
};