summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/mr_notes/stores/actions.js
blob: bc66d1dd68fb8d9afd1cc2f08fb93eff135ba3a0 (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
import axios from '~/lib/utils/axios_utils';

import types from './mutation_types';

export function setActiveTab({ commit }, tab) {
  commit(types.SET_ACTIVE_TAB, tab);
}

export function setEndpoints({ commit }, endpoints) {
  commit(types.SET_ENDPOINTS, endpoints);
}

export function setMrMetadata({ commit }, metadata) {
  commit(types.SET_MR_METADATA, metadata);
}

export function fetchMrMetadata({ dispatch, state }) {
  if (state.endpoints?.metadata) {
    axios
      .get(state.endpoints.metadata)
      .then((response) => {
        dispatch('setMrMetadata', response.data);
      })
      .catch(() => {
        // https://gitlab.com/gitlab-org/gitlab/-/issues/324740
        // We can't even do a simple console warning here because
        // the pipeline will fail. However, the issue above will
        // eventually handle errors appropriately.
        // console.warn('Failed to load MR Metadata for the Overview tab.');
      });
  }
}