158 lines
4.7 KiB
JavaScript
158 lines
4.7 KiB
JavaScript
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: `<strong>${_.escape(branchId)}</strong>`,
|
|
},
|
|
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 loadFile = ({ dispatch, state }, { basePath }) => {
|
|
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',
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
export const loadBranch = ({ dispatch }, { projectId, branchId }) =>
|
|
dispatch('getBranchData', {
|
|
projectId,
|
|
branchId,
|
|
})
|
|
.then(() => {
|
|
dispatch('getMergeRequestsForBranch', {
|
|
projectId,
|
|
branchId,
|
|
});
|
|
return dispatch('getFiles', {
|
|
projectId,
|
|
branchId,
|
|
});
|
|
})
|
|
.catch(() => {
|
|
dispatch('showBranchNotFoundError', branchId);
|
|
return Promise.reject();
|
|
});
|
|
|
|
export const openBranch = ({ dispatch, state, getters }, { projectId, branchId, basePath }) => {
|
|
const currentProject = state.projects[projectId];
|
|
if (getters.emptyRepo) {
|
|
return dispatch('showEmptyState', { projectId, branchId });
|
|
}
|
|
if (!currentProject || !currentProject.branches[branchId]) {
|
|
dispatch('setCurrentBranchId', branchId);
|
|
|
|
return dispatch('loadBranch', { projectId, branchId })
|
|
.then(() => dispatch('loadFile', { basePath }))
|
|
.catch(
|
|
() =>
|
|
new Error(
|
|
sprintf(
|
|
__('An error occurred whilst getting files for - %{branchId}'),
|
|
{
|
|
branchId: `<strong>${_.escape(projectId)}/${_.escape(branchId)}</strong>`,
|
|
},
|
|
false,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
return Promise.resolve(dispatch('loadFile', { basePath }));
|
|
};
|