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

216 lines
4.7 KiB
JavaScript
Raw Normal View History

2019-10-12 21:52:04 +05:30
import { commitActionTypes, FILE_VIEW_MODE_EDITOR } from '../constants';
2019-07-31 22:56:46 +05:30
2018-05-09 12:01:36 +05:30
export const dataStructure = () => ({
id: '',
// Key will contain a mixture of ID and path
// it can also contain a prefix `pending-` for files opened in review mode
key: '',
type: '',
projectId: '',
branchId: '',
name: '',
url: '',
path: '',
tempFile: false,
tree: [],
loading: false,
opened: false,
active: false,
changed: false,
2018-10-15 14:42:47 +05:30
staged: false,
2019-09-30 21:07:59 +05:30
replaces: false,
2018-05-09 12:01:36 +05:30
lastCommitPath: '',
2018-11-08 19:23:39 +05:30
lastCommitSha: '',
2018-05-09 12:01:36 +05:30
lastCommit: {
id: '',
url: '',
message: '',
updatedAt: '',
author: '',
},
blamePath: '',
commitsPath: '',
permalink: '',
rawPath: '',
binary: false,
html: '',
raw: '',
content: '',
parentTreeUrl: '',
renderError: false,
base64: false,
editorRow: 1,
editorColumn: 1,
fileLanguage: '',
eol: '',
2019-10-12 21:52:04 +05:30
viewMode: FILE_VIEW_MODE_EDITOR,
2018-05-09 12:01:36 +05:30
previewMode: null,
size: 0,
2018-10-15 14:42:47 +05:30
parentPath: null,
lastOpenedAt: 0,
mrChange: null,
2018-11-18 11:00:15 +05:30
deleted: false,
prevPath: '',
movedPath: '',
moved: false,
2018-05-09 12:01:36 +05:30
});
export const decorateData = entity => {
const {
id,
projectId,
branchId,
type,
url,
name,
path,
renderError,
content = '',
tempFile = false,
active = false,
opened = false,
changed = false,
parentTreeUrl = '',
base64 = false,
2019-07-31 22:56:46 +05:30
binary = false,
rawPath = '',
2018-05-09 12:01:36 +05:30
previewMode,
file_lock,
html,
2018-10-15 14:42:47 +05:30
parentPath = '',
2018-05-09 12:01:36 +05:30
} = entity;
2019-07-07 11:18:12 +05:30
return Object.assign(dataStructure(), {
2018-05-09 12:01:36 +05:30
id,
projectId,
branchId,
key: `${name}-${type}-${id}`,
type,
name,
url,
path,
tempFile,
opened,
active,
parentTreeUrl,
changed,
renderError,
content,
base64,
2019-07-31 22:56:46 +05:30
binary,
rawPath,
2018-05-09 12:01:36 +05:30
previewMode,
file_lock,
html,
2018-10-15 14:42:47 +05:30
parentPath,
2019-07-07 11:18:12 +05:30
});
2018-05-09 12:01:36 +05:30
};
export const findEntry = (tree, type, name, prop = 'name') =>
tree.find(f => f.type === type && f[prop] === name);
export const findIndexOfFile = (state, file) => state.findIndex(f => f.path === file.path);
export const setPageTitle = title => {
document.title = title;
};
2018-11-18 11:00:15 +05:30
export const commitActionForFile = file => {
if (file.prevPath) {
2019-07-31 22:56:46 +05:30
return commitActionTypes.move;
2018-11-18 11:00:15 +05:30
} else if (file.deleted) {
2019-07-31 22:56:46 +05:30
return commitActionTypes.delete;
2019-09-30 21:07:59 +05:30
} else if (file.tempFile && !file.replaces) {
2019-07-31 22:56:46 +05:30
return commitActionTypes.create;
2018-11-18 11:00:15 +05:30
}
2019-07-31 22:56:46 +05:30
return commitActionTypes.update;
2018-11-18 11:00:15 +05:30
};
export const getCommitFiles = stagedFiles =>
stagedFiles.reduce((acc, file) => {
2019-12-04 20:38:33 +05:30
if (file.moved || file.type === 'tree') return acc;
2018-11-18 11:00:15 +05:30
return acc.concat({
...file,
});
}, []);
2019-07-31 22:56:46 +05:30
export const createCommitPayload = ({
branch,
getters,
newBranch,
state,
rootState,
rootGetters,
}) => ({
2018-05-09 12:01:36 +05:30
branch,
2018-11-08 19:23:39 +05:30
commit_message: state.commitMessage || getters.preBuiltCommitMessage,
2018-11-18 11:00:15 +05:30
actions: getCommitFiles(rootState.stagedFiles).map(f => ({
action: commitActionForFile(f),
2019-09-30 21:07:59 +05:30
file_path: f.moved ? f.movedPath : f.path,
2018-11-18 11:00:15 +05:30
previous_path: f.prevPath === '' ? undefined : f.prevPath,
2019-09-30 21:07:59 +05:30
content: f.prevPath ? null : f.content || undefined,
2018-05-09 12:01:36 +05:30
encoding: f.base64 ? 'base64' : 'text',
2019-09-30 21:07:59 +05:30
last_commit_id:
newBranch || f.deleted || f.prevPath || f.replaces ? undefined : f.lastCommitSha,
2018-05-09 12:01:36 +05:30
})),
2019-10-12 21:52:04 +05:30
start_sha: newBranch ? rootGetters.lastCommit.id : undefined,
2018-05-09 12:01:36 +05:30
});
export const createNewMergeRequestUrl = (projectUrl, source, target) =>
2019-10-12 21:52:04 +05:30
`${projectUrl}/merge_requests/new?merge_request[source_branch]=${source}&merge_request[target_branch]=${target}&nav_source=webide`;
2018-05-09 12:01:36 +05:30
const sortTreesByTypeAndName = (a, b) => {
if (a.type === 'tree' && b.type === 'blob') {
return -1;
} else if (a.type === 'blob' && b.type === 'tree') {
return 1;
}
2018-10-15 14:42:47 +05:30
if (a.name < b.name) return -1;
if (a.name > b.name) return 1;
2018-05-09 12:01:36 +05:30
return 0;
};
export const sortTree = sortedTree =>
sortedTree
.map(entity =>
Object.assign(entity, {
tree: entity.tree.length ? sortTree(entity.tree) : [],
}),
)
.sort(sortTreesByTypeAndName);
2018-10-15 14:42:47 +05:30
2018-11-18 11:00:15 +05:30
export const filePathMatches = (filePath, path) => filePath.indexOf(`${path}/`) === 0;
2018-10-15 14:42:47 +05:30
export const getChangesCountForFiles = (files, path) =>
2018-11-18 11:00:15 +05:30
files.filter(f => filePathMatches(f.path, path)).length;
2019-07-07 11:18:12 +05:30
export const mergeTrees = (fromTree, toTree) => {
if (!fromTree || !fromTree.length) {
return toTree;
}
const recurseTree = (n, t) => {
if (!n) {
return t;
}
const existingTreeNode = t.find(el => el.path === n.path);
if (existingTreeNode && n.tree.length > 0) {
existingTreeNode.opened = true;
recurseTree(n.tree[0], existingTreeNode.tree);
} else if (!existingTreeNode) {
const sorted = sortTree(t.concat(n));
t.splice(0, t.length + 1, ...sorted);
}
return t;
};
for (let i = 0, l = fromTree.length; i < l; i += 1) {
recurseTree(fromTree[i], toTree);
}
return toTree;
};