42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
import Vue from 'vue';
|
|
import VueResource from 'vue-resource';
|
|
import * as types from './mutation_types';
|
|
|
|
Vue.use(VueResource);
|
|
|
|
export const fetchRepos = ({ commit, state }) => {
|
|
commit(types.TOGGLE_MAIN_LOADING);
|
|
|
|
return Vue.http
|
|
.get(state.endpoint)
|
|
.then(res => res.json())
|
|
.then(response => {
|
|
commit(types.TOGGLE_MAIN_LOADING);
|
|
commit(types.SET_REPOS_LIST, response);
|
|
});
|
|
};
|
|
|
|
export const fetchList = ({ commit }, { repo, page }) => {
|
|
commit(types.TOGGLE_REGISTRY_LIST_LOADING, repo);
|
|
|
|
return Vue.http.get(repo.tagsPath, { params: { page } }).then(response => {
|
|
const { headers } = response;
|
|
|
|
return response.json().then(resp => {
|
|
commit(types.TOGGLE_REGISTRY_LIST_LOADING, repo);
|
|
commit(types.SET_REGISTRY_LIST, { repo, resp, headers });
|
|
});
|
|
});
|
|
};
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
export const deleteRepo = ({ commit }, repo) => Vue.http.delete(repo.destroyPath);
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
export const deleteRegistry = ({ commit }, image) => Vue.http.delete(image.destroyPath);
|
|
|
|
export const setMainEndpoint = ({ commit }, data) => commit(types.SET_MAIN_ENDPOINT, data);
|
|
export const toggleLoading = ({ commit }) => commit(types.TOGGLE_MAIN_LOADING);
|
|
|
|
// prevent babel-plugin-rewire from generating an invalid default during karma tests
|
|
export default () => {};
|