summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages/details/store/actions.js
blob: cda80056e19070ed419c66fe83813babb95cc788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Api from '~/api';
import { deprecatedCreateFlash as createFlash } from '~/flash';
import { FETCH_PACKAGE_VERSIONS_ERROR } from '../constants';
import * as types from './mutation_types';

export default ({ commit, state }) => {
  commit(types.SET_LOADING, true);

  const { project_id, id } = state.packageEntity;

  return Api.projectPackage(project_id, id)
    .then(({ data }) => {
      if (data.versions) {
        commit(types.SET_PACKAGE_VERSIONS, data.versions.reverse());
      }
    })
    .catch(() => {
      createFlash(FETCH_PACKAGE_VERSIONS_ERROR);
    })
    .finally(() => {
      commit(types.SET_LOADING, false);
    });
};