gitlab-org--gitlab-foss/spec/javascripts/ide/helpers.js

55 lines
1.6 KiB
JavaScript
Raw Normal View History

2018-06-26 15:50:13 +00:00
import * as pathUtils from 'path';
2018-03-20 14:16:38 +00:00
import { decorateData } from '~/ide/stores/utils';
import state from '~/ide/stores/state';
import commitState from '~/ide/stores/modules/commit/state';
2018-05-11 10:36:34 +00:00
import mergeRequestsState from '~/ide/stores/modules/merge_requests/state';
2018-05-29 12:09:19 +00:00
import pipelinesState from '~/ide/stores/modules/pipelines/state';
2018-08-07 15:15:56 +00:00
import branchesState from '~/ide/stores/modules/branches/state';
2018-08-30 09:43:41 +00:00
import fileTemplatesState from '~/ide/stores/modules/file_templates/state';
import paneState from '~/ide/stores/modules/pane/state';
2018-03-20 14:16:38 +00:00
export const resetStore = store => {
const newState = {
...state(),
commit: commitState(),
2018-05-11 10:36:34 +00:00
mergeRequests: mergeRequestsState(),
2018-05-29 12:09:19 +00:00
pipelines: pipelinesState(),
2018-08-07 15:15:56 +00:00
branches: branchesState(),
2018-08-30 09:43:41 +00:00
fileTemplates: fileTemplatesState(),
rightPane: paneState(),
};
store.replaceState(newState);
};
2018-06-26 15:50:13 +00:00
export const file = (name = 'name', id = name, type = '', parent = null) =>
2018-03-20 14:16:38 +00:00
decorateData({
id,
type,
icon: 'icon',
url: 'url',
name,
2018-06-26 15:50:13 +00:00
path: parent ? `${parent.path}/${name}` : name,
parentPath: parent ? parent.path : '',
2018-03-20 14:16:38 +00:00
lastCommit: {},
});
2018-06-26 15:50:13 +00:00
export const createEntriesFromPaths = paths =>
2018-06-26 15:50:13 +00:00
paths
.map(path => ({
name: pathUtils.basename(path),
dir: pathUtils.dirname(path),
ext: pathUtils.extname(path),
}))
.reduce((entries, path, idx) => {
const { name } = path;
2018-06-26 15:50:13 +00:00
const parent = path.dir ? entries[path.dir] : null;
const type = path.ext ? 'blob' : 'tree';
const entry = file(name, (idx + 1).toString(), type, parent);
return {
[entry.path]: entry,
...entries,
};
}, {});