debian-mirror-gitlab/app/assets/javascripts/ide/stores/actions/project.js

166 lines
4.9 KiB
JavaScript
Raw Normal View History

2018-11-08 19:23:39 +05:30
import _ from 'underscore';
2018-05-09 12:01:36 +05:30
import flash from '~/flash';
2018-11-08 19:23:39 +05:30
import { __, sprintf } from '~/locale';
2018-05-09 12:01:36 +05:30
import service from '../../services';
2018-11-08 19:23:39 +05:30
import api from '../../../api';
2018-05-09 12:01:36 +05:30
import * as types from '../mutation_types';
2018-11-08 19:23:39 +05:30
import router from '../../ide_router';
2018-05-09 12:01:36 +05:30
2018-11-08 19:23:39 +05:30
export const getProjectData = ({ commit, state }, { namespace, projectId, force = false } = {}) =>
2018-10-15 14:42:47 +05:30
new Promise((resolve, reject) => {
if (!state.projects[`${namespace}/${projectId}`] || force) {
2018-05-09 12:01:36 +05:30
commit(types.TOGGLE_LOADING, { entry: state });
2018-10-15 14:42:47 +05:30
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 });
2018-11-08 19:23:39 +05:30
commit(types.SET_CURRENT_PROJECT, `${namespace}/${projectId}`);
2018-10-15 14:42:47 +05:30
resolve(data);
})
.catch(() => {
flash(
2018-11-08 19:23:39 +05:30
__('Error loading project data. Please try again.'),
2018-10-15 14:42:47 +05:30
'alert',
document,
null,
false,
true,
);
reject(new Error(`Project not loaded ${namespace}/${projectId}`));
});
} else {
resolve(state.projects[`${namespace}/${projectId}`]);
}
});
2018-05-09 12:01:36 +05:30
2018-11-08 19:23:39 +05:30
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);
2018-10-15 14:42:47 +05:30
});
2018-11-08 19:23:39 +05:30
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', {
2019-02-15 15:39:39 +05:30
text: __('An error occurred creating the new branch.'),
2018-11-08 19:23:39 +05:30
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>`,
},
2018-10-15 14:42:47 +05:30
false,
2018-11-08 19:23:39 +05:30
),
action: payload => dispatch('createNewBranchFromDefault', payload),
actionText: __('Create branch'),
actionPayload: branchId,
2018-10-15 14:42:47 +05:30
});
2018-11-08 19:23:39 +05:30
};
2018-11-20 20:47:30 +05:30
2020-03-13 15:44:24 +05:30
export const showEmptyState = ({ commit, state, dispatch }, { projectId, branchId }) => {
2019-09-04 21:01:54 +05:30
const treePath = `${projectId}/${branchId}`;
2020-03-13 15:44:24 +05:30
dispatch('setCurrentBranchId', branchId);
2019-09-04 21:01:54 +05:30
commit(types.CREATE_TREE, { treePath });
commit(types.TOGGLE_LOADING, {
entry: state.trees[treePath],
forceValue: false,
2018-11-20 20:47:30 +05:30
});
2019-09-04 21:01:54 +05:30
};
2018-11-20 20:47:30 +05:30
2019-12-21 20:55:43 +05:30
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];
2019-09-04 21:01:54 +05:30
2019-12-21 20:55:43 +05:30
if (treeEntry) {
dispatch('handleTreeEntryAction', treeEntry);
} else {
dispatch('createTempEntry', {
name: path,
type: 'blob',
});
}
2019-09-04 21:01:54 +05:30
}
2019-12-21 20:55:43 +05:30
};
2020-03-13 15:44:24 +05:30
export const loadBranch = ({ dispatch, getters }, { projectId, branchId }) =>
2019-12-21 20:55:43 +05:30
dispatch('getBranchData', {
2018-12-13 13:39:08 +05:30
projectId,
branchId,
2019-07-07 11:18:12 +05:30
})
.then(() => {
dispatch('getMergeRequestsForBranch', {
projectId,
branchId,
});
2020-03-13 15:44:24 +05:30
const branch = getters.findBranch(projectId, branchId);
2019-12-21 20:55:43 +05:30
return dispatch('getFiles', {
2019-09-04 21:01:54 +05:30
projectId,
branchId,
2020-03-13 15:44:24 +05:30
ref: branch.commit.id,
2019-12-21 20:55:43 +05:30
});
2019-09-04 21:01:54 +05:30
})
2020-03-13 15:44:24 +05:30
.catch(err => {
2019-09-04 21:01:54 +05:30
dispatch('showBranchNotFoundError', branchId);
2020-03-13 15:44:24 +05:30
throw err;
2019-07-07 11:18:12 +05:30
});
2019-12-21 20:55:43 +05:30
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(
2020-03-13 15:44:24 +05:30
__('An error occurred while getting files for - %{branchId}'),
2019-12-21 20:55:43 +05:30
{
branchId: `<strong>${_.escape(projectId)}/${_.escape(branchId)}</strong>`,
},
false,
),
),
);
}
return Promise.resolve(dispatch('loadFile', { basePath }));
2018-11-20 20:47:30 +05:30
};