import _ from 'underscore'; import flash from '~/flash'; import { __, sprintf } from '~/locale'; import service from '../../services'; import api from '../../../api'; import * as types from '../mutation_types'; import router from '../../ide_router'; export const getProjectData = ({ commit, state }, { namespace, projectId, force = false } = {}) => new Promise((resolve, reject) => { if (!state.projects[`${namespace}/${projectId}`] || force) { commit(types.TOGGLE_LOADING, { entry: state }); service .getProjectData(namespace, projectId) .then(res => res.data) .then(data => { commit(types.TOGGLE_LOADING, { entry: state }); commit(types.SET_PROJECT, { projectPath: `${namespace}/${projectId}`, project: data }); commit(types.SET_CURRENT_PROJECT, `${namespace}/${projectId}`); resolve(data); }) .catch(() => { flash( __('Error loading project data. Please try again.'), 'alert', document, null, false, true, ); reject(new Error(`Project not loaded ${namespace}/${projectId}`)); }); } else { resolve(state.projects[`${namespace}/${projectId}`]); } }); export const refreshLastCommitData = ({ commit }, { projectId, branchId } = {}) => service .getBranchData(projectId, branchId) .then(({ data }) => { commit(types.SET_BRANCH_COMMIT, { projectId, branchId, commit: data.commit, }); }) .catch(() => { flash(__('Error loading last commit.'), 'alert', document, null, false, true); }); export const createNewBranchFromDefault = ({ state, dispatch, getters }, branch) => api .createBranch(state.currentProjectId, { ref: getters.currentProject.default_branch, branch, }) .then(() => { dispatch('setErrorMessage', null); router.push(`${router.currentRoute.path}?${Date.now()}`); }) .catch(() => { dispatch('setErrorMessage', { text: __('An error occurred creating the new branch.'), action: payload => dispatch('createNewBranchFromDefault', payload), actionText: __('Please try again'), actionPayload: branch, }); }); export const showBranchNotFoundError = ({ dispatch }, branchId) => { dispatch('setErrorMessage', { text: sprintf( __("Branch %{branchName} was not found in this project's repository."), { branchName: `${_.escape(branchId)}`, }, false, ), action: payload => dispatch('createNewBranchFromDefault', payload), actionText: __('Create branch'), actionPayload: branchId, }); }; export const showEmptyState = ({ commit, state }, { projectId, branchId }) => { const treePath = `${projectId}/${branchId}`; commit(types.CREATE_TREE, { treePath }); commit(types.TOGGLE_LOADING, { entry: state.trees[treePath], forceValue: false, }); }; export const openBranch = ({ dispatch, state, getters }, { projectId, branchId, basePath }) => { dispatch('setCurrentBranchId', branchId); if (getters.emptyRepo) { return dispatch('showEmptyState', { projectId, branchId }); } return dispatch('getBranchData', { projectId, branchId, }) .then(() => { dispatch('getMergeRequestsForBranch', { projectId, branchId, }); dispatch('getFiles', { projectId, branchId, }) .then(() => { if (basePath) { const path = basePath.slice(-1) === '/' ? basePath.slice(0, -1) : basePath; const treeEntryKey = Object.keys(state.entries).find( key => key === path && !state.entries[key].pending, ); const treeEntry = state.entries[treeEntryKey]; if (treeEntry) { dispatch('handleTreeEntryAction', treeEntry); } else { dispatch('createTempEntry', { name: path, type: 'blob', }); } } }) .catch( () => new Error( sprintf( __('An error occurred whilst getting files for - %{branchId}'), { branchId: `${_.escape(projectId)}/${_.escape(branchId)}`, }, false, ), ), ); }) .catch(() => { dispatch('showBranchNotFoundError', branchId); }); };