Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/registry/list/stores/actions.js')
-rw-r--r--app/assets/javascripts/registry/list/stores/actions.js46
1 files changed, 0 insertions, 46 deletions
diff --git a/app/assets/javascripts/registry/list/stores/actions.js b/app/assets/javascripts/registry/list/stores/actions.js
deleted file mode 100644
index 6afba618486..00000000000
--- a/app/assets/javascripts/registry/list/stores/actions.js
+++ /dev/null
@@ -1,46 +0,0 @@
-import axios from '~/lib/utils/axios_utils';
-import createFlash from '~/flash';
-import * as types from './mutation_types';
-import { FETCH_REPOS_ERROR_MESSAGE, FETCH_REGISTRY_ERROR_MESSAGE } from '../constants';
-
-export const fetchRepos = ({ commit, state }) => {
- commit(types.TOGGLE_MAIN_LOADING);
-
- return axios
- .get(state.endpoint)
- .then(({ data }) => {
- commit(types.TOGGLE_MAIN_LOADING);
- commit(types.SET_REPOS_LIST, data);
- })
- .catch(() => {
- commit(types.TOGGLE_MAIN_LOADING);
- createFlash(FETCH_REPOS_ERROR_MESSAGE);
- });
-};
-
-export const fetchList = ({ commit }, { repo, page }) => {
- commit(types.TOGGLE_REGISTRY_LIST_LOADING, repo);
- return axios
- .get(repo.tagsPath, { params: { page } })
- .then(response => {
- const { headers, data } = response;
-
- commit(types.TOGGLE_REGISTRY_LIST_LOADING, repo);
- commit(types.SET_REGISTRY_LIST, { repo, resp: data, headers });
- })
- .catch(() => {
- commit(types.TOGGLE_REGISTRY_LIST_LOADING, repo);
- createFlash(FETCH_REGISTRY_ERROR_MESSAGE);
- });
-};
-
-export const deleteItem = (_, item) => axios.delete(item.destroyPath);
-export const multiDeleteItems = (_, { path, items }) =>
- axios.delete(path, { params: { ids: items } });
-
-export const setMainEndpoint = ({ commit }, data) => commit(types.SET_MAIN_ENDPOINT, data);
-export const setIsDeleteDisabled = ({ commit }, data) => commit(types.SET_IS_DELETE_DISABLED, data);
-export const toggleLoading = ({ commit }) => commit(types.TOGGLE_MAIN_LOADING);
-
-// prevent babel-plugin-rewire from generating an invalid default during karma tests
-export default () => {};