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

167 lines
5.8 KiB
JavaScript
Raw Normal View History

2018-10-15 14:42:47 +05:30
import { getChangesCountForFiles, filePathMatches } from './utils';
2020-03-13 15:44:24 +05:30
import {
leftSidebarViews,
packageJsonPath,
PERMISSION_READ_MR,
PERMISSION_CREATE_MR,
2020-04-22 19:07:51 +05:30
PERMISSION_PUSH_CODE,
2020-03-13 15:44:24 +05:30
} from '../constants';
2018-10-15 14:42:47 +05:30
2018-05-09 12:01:36 +05:30
export const activeFile = state => state.openFiles.find(file => file.active) || null;
export const addedFiles = state => state.changedFiles.filter(f => f.tempFile);
export const modifiedFiles = state => state.changedFiles.filter(f => !f.tempFile);
export const projectsWithTrees = state =>
Object.keys(state.projects).map(projectId => {
const project = state.projects[projectId];
return {
...project,
branches: Object.keys(project.branches).map(branchId => {
const branch = project.branches[branchId];
return {
...branch,
tree: state.trees[branch.treeId],
};
}),
};
});
export const currentMergeRequest = state => {
2019-07-07 11:18:12 +05:30
if (
state.projects[state.currentProjectId] &&
state.projects[state.currentProjectId].mergeRequests
) {
2018-05-09 12:01:36 +05:30
return state.projects[state.currentProjectId].mergeRequests[state.currentMergeRequestId];
}
return null;
};
2019-12-26 22:10:19 +05:30
export const findProject = state => projectId => state.projects[projectId];
export const currentProject = (state, getters) => getters.findProject(state.currentProjectId);
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
export const emptyRepo = state =>
state.projects[state.currentProjectId] && state.projects[state.currentProjectId].empty_repo;
2018-10-15 14:42:47 +05:30
export const currentTree = state =>
state.trees[`${state.currentProjectId}/${state.currentBranchId}`];
2018-05-09 12:01:36 +05:30
2019-09-04 21:01:54 +05:30
export const hasChanges = state =>
Boolean(state.changedFiles.length) || Boolean(state.stagedFiles.length);
2018-05-09 12:01:36 +05:30
2019-09-04 21:01:54 +05:30
export const hasMergeRequest = state => Boolean(state.currentMergeRequestId);
2018-10-15 14:42:47 +05:30
export const allBlobs = state =>
Object.keys(state.entries)
.reduce((acc, key) => {
const entry = state.entries[key];
if (entry.type === 'blob') {
acc.push(entry);
}
return acc;
}, [])
.sort((a, b) => b.lastOpenedAt - a.lastOpenedAt);
export const getChangedFile = state => path => state.changedFiles.find(f => f.path === path);
export const getStagedFile = state => path => state.stagedFiles.find(f => f.path === path);
2020-03-13 15:44:24 +05:30
export const getOpenFile = state => path => state.openFiles.find(f => f.path === path);
2018-10-15 14:42:47 +05:30
export const lastOpenedFile = state =>
[...state.changedFiles, ...state.stagedFiles].sort((a, b) => b.lastOpenedAt - a.lastOpenedAt)[0];
2020-03-13 15:44:24 +05:30
export const isEditModeActive = state => state.currentActivityView === leftSidebarViews.edit.name;
export const isCommitModeActive = state =>
state.currentActivityView === leftSidebarViews.commit.name;
export const isReviewModeActive = state =>
state.currentActivityView === leftSidebarViews.review.name;
2018-10-15 14:42:47 +05:30
2018-12-13 13:39:08 +05:30
export const someUncommittedChanges = state =>
2019-09-04 21:01:54 +05:30
Boolean(state.changedFiles.length || state.stagedFiles.length);
2018-10-15 14:42:47 +05:30
export const getChangesInFolder = state => path => {
2018-11-18 11:00:15 +05:30
const changedFilesCount = state.changedFiles.filter(f => filePathMatches(f.path, path)).length;
2018-10-15 14:42:47 +05:30
const stagedFilesCount = state.stagedFiles.filter(
2018-11-18 11:00:15 +05:30
f => filePathMatches(f.path, path) && !getChangedFile(state)(f.path),
2018-10-15 14:42:47 +05:30
).length;
return changedFilesCount + stagedFilesCount;
};
export const getUnstagedFilesCountForPath = state => path =>
getChangesCountForFiles(state.changedFiles, path);
export const getStagedFilesCountForPath = state => path =>
getChangesCountForFiles(state.stagedFiles, path);
export const lastCommit = (state, getters) => {
2018-11-08 19:23:39 +05:30
const branch = getters.currentProject && getters.currentBranch;
2018-10-15 14:42:47 +05:30
return branch ? branch.commit : null;
};
2019-12-26 22:10:19 +05:30
export const findBranch = (state, getters) => (projectId, branchId) => {
const project = getters.findProject(projectId);
return project && project.branches[branchId];
};
2018-11-08 19:23:39 +05:30
export const currentBranch = (state, getters) =>
2019-12-26 22:10:19 +05:30
getters.findBranch(state.currentProjectId, state.currentBranchId);
2018-11-08 19:23:39 +05:30
2019-09-04 21:01:54 +05:30
export const branchName = (_state, getters) => getters.currentBranch && getters.currentBranch.name;
2018-11-18 11:00:15 +05:30
export const packageJson = state => state.entries[packageJsonPath];
2019-09-04 21:01:54 +05:30
export const isOnDefaultBranch = (_state, getters) =>
getters.currentProject && getters.currentProject.default_branch === getters.branchName;
2020-04-22 19:07:51 +05:30
export const canPushToBranch = (_state, getters) => {
return Boolean(getters.currentBranch ? getters.currentBranch.can_push : getters.canPushCode);
};
2019-12-04 20:38:33 +05:30
2020-01-01 13:55:28 +05:30
export const isFileDeletedAndReadded = (state, getters) => path => {
const stagedFile = getters.getStagedFile(path);
const file = state.entries[path];
return Boolean(stagedFile && stagedFile.deleted && file.tempFile);
};
// checks if any diff exists in the staged or unstaged changes for this path
export const getDiffInfo = (state, getters) => path => {
const stagedFile = getters.getStagedFile(path);
const file = state.entries[path];
const renamed = file.prevPath ? file.path !== file.prevPath : false;
const deletedAndReadded = getters.isFileDeletedAndReadded(path);
const deleted = deletedAndReadded ? false : file.deleted;
const tempFile = deletedAndReadded ? false : file.tempFile;
const changed = file.content !== (deletedAndReadded ? stagedFile.raw : file.raw);
return {
exists: changed || renamed || deleted || tempFile,
changed,
renamed,
deleted,
tempFile,
};
};
2020-03-13 15:44:24 +05:30
export const findProjectPermissions = (state, getters) => projectId =>
getters.findProject(projectId)?.userPermissions || {};
export const canReadMergeRequests = (state, getters) =>
Boolean(getters.findProjectPermissions(state.currentProjectId)[PERMISSION_READ_MR]);
export const canCreateMergeRequests = (state, getters) =>
Boolean(getters.findProjectPermissions(state.currentProjectId)[PERMISSION_CREATE_MR]);
2020-04-22 19:07:51 +05:30
export const canPushCode = (state, getters) =>
Boolean(getters.findProjectPermissions(state.currentProjectId)[PERMISSION_PUSH_CODE]);
2018-10-15 14:42:47 +05:30
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};