summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/editor/utils.js
blob: bef21d04b2bcc71572ca4d16b4aafa1cfe9cd941 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { FILE_VIEW_MODE_EDITOR } from '../../../constants';

export const createDefaultFileEditor = () => ({
  editorRow: 1,
  editorColumn: 1,
  fileLanguage: '',
  viewMode: FILE_VIEW_MODE_EDITOR,
});

export const getFileEditorOrDefault = (fileEditors, path) =>
  fileEditors[path] || createDefaultFileEditor();