Commit f86cea6f authored by Jacob Schatz's avatar Jacob Schatz

Make Store->RepoStore and others consistent.

parent 863114b4
...@@ -8,7 +8,7 @@ import RepoPreview from './repo_preview.vue'; ...@@ -8,7 +8,7 @@ import RepoPreview from './repo_preview.vue';
import RepoMixin from '../mixins/repo_mixin'; import RepoMixin from '../mixins/repo_mixin';
import PopupDialog from '../../vue_shared/components/popup_dialog.vue'; import PopupDialog from '../../vue_shared/components/popup_dialog.vue';
import Store from '../stores/repo_store'; import Store from '../stores/repo_store';
import RepoHelper from '../helpers/repo_helper'; import Helper from '../helpers/repo_helper';
import MonacoLoaderHelper from '../helpers/monaco_loader_helper'; import MonacoLoaderHelper from '../helpers/monaco_loader_helper';
export default { export default {
...@@ -26,7 +26,7 @@ export default { ...@@ -26,7 +26,7 @@ export default {
}, },
mounted() { mounted() {
RepoHelper.getContent().catch(RepoHelper.loadingError); Helper.getContent().catch(Helper.loadingError);
}, },
methods: { methods: {
......
<script> <script>
import Store from '../stores/repo_store'; import Store from '../stores/repo_store';
import RepoHelper from '../helpers/repo_helper'; import Helper from '../helpers/repo_helper';
const RepoBinaryViewer = { const RepoBinaryViewer = {
data: () => Store, data: () => Store,
...@@ -41,7 +41,7 @@ const RepoBinaryViewer = { ...@@ -41,7 +41,7 @@ const RepoBinaryViewer = {
watch: { watch: {
blobRaw() { blobRaw() {
Store.resetBinaryTypes(); Store.resetBinaryTypes();
if (RepoHelper.isKindaBinary()) { if (Helper.isKindaBinary()) {
this.activeFile.raw = false; this.activeFile.raw = false;
// counts as binaryish so we use the binary viewer in this case. // counts as binaryish so we use the binary viewer in this case.
this.binary = true; this.binary = true;
......
<script> <script>
import RepoStore from '../stores/repo_store'; import Store from '../stores/repo_store';
const RepoTab = { const RepoTab = {
props: { props: {
...@@ -20,7 +20,7 @@ const RepoTab = { ...@@ -20,7 +20,7 @@ const RepoTab = {
}, },
methods: { methods: {
tabClicked: RepoStore.setActiveFiles, tabClicked: Store.setActiveFiles,
xClicked(file) { xClicked(file) {
if (file.changed) return; if (file.changed) return;
......
/* global monaco */ /* global monaco */
import RepoEditor from '../components/repo_editor.vue'; import RepoEditor from '../components/repo_editor.vue';
import RepoStore from '../stores/repo_store'; import Store from '../stores/repo_store';
import monacoLoader from '../monaco_loader'; import monacoLoader from '../monaco_loader';
function repoEditorLoader() { function repoEditorLoader() {
RepoStore.monacoLoading = true; Store.monacoLoading = true;
return new Promise((resolve) => { return new Promise((resolve) => {
monacoLoader(['vs/editor/editor.main'], () => { monacoLoader(['vs/editor/editor.main'], () => {
RepoStore.monaco = monaco; Store.monaco = monaco;
RepoStore.monacoLoading = false; Store.monacoLoading = false;
resolve(RepoEditor); resolve(RepoEditor);
}); });
}); });
......
/* global Flash */ /* global Flash */
import RepoHelper from '../helpers/repo_helper'; import Helper from '../helpers/repo_helper';
import RepoService from '../services/repo_service'; import Service from '../services/repo_service';
const RepoStore = { const RepoStore = {
ideEl: {}, ideEl: {},
...@@ -35,7 +35,7 @@ const RepoStore = { ...@@ -35,7 +35,7 @@ const RepoStore = {
title: '', title: '',
status: false, status: false,
}, },
activeFile: RepoHelper.getDefaultActiveFile(), activeFile: Helper.getDefaultActiveFile(),
activeFileIndex: 0, activeFileIndex: 0,
activeLine: 0, activeLine: 0,
activeFileLabel: 'Raw', activeFileLabel: 'Raw',
...@@ -79,7 +79,7 @@ const RepoStore = { ...@@ -79,7 +79,7 @@ const RepoStore = {
}, },
addFilesToDirectory(inDirectory, currentList, newList) { addFilesToDirectory(inDirectory, currentList, newList) {
RepoStore.files = RepoHelper.getNewMergedList(inDirectory, currentList, newList); RepoStore.files = Helper.getNewMergedList(inDirectory, currentList, newList);
}, },
toggleRawPreview() { toggleRawPreview() {
...@@ -100,14 +100,14 @@ const RepoStore = { ...@@ -100,14 +100,14 @@ const RepoStore = {
} else if (file.newContent || file.plain) { } else if (file.newContent || file.plain) {
RepoStore.blobRaw = file.newContent || file.plain; RepoStore.blobRaw = file.newContent || file.plain;
} else { } else {
RepoService.getRaw(file.raw_path) Service.getRaw(file.raw_path)
.then((rawResponse) => { .then((rawResponse) => {
RepoStore.blobRaw = rawResponse.data; RepoStore.blobRaw = rawResponse.data;
RepoHelper.findOpenedFileFromActive().plain = rawResponse.data; Helper.findOpenedFileFromActive().plain = rawResponse.data;
}).catch(RepoHelper.loadingError); }).catch(Helper.loadingError);
} }
if (!file.loading) RepoHelper.toURL(file.url, file.name); if (!file.loading) Helper.toURL(file.url, file.name);
RepoStore.binary = file.binary; RepoStore.binary = file.binary;
}, },
...@@ -182,7 +182,7 @@ const RepoStore = { ...@@ -182,7 +182,7 @@ const RepoStore = {
}, },
addPlaceholderFile() { addPlaceholderFile() {
const randomURL = RepoHelper.Time.now(); const randomURL = Helper.Time.now();
const newFakeFile = { const newFakeFile = {
active: false, active: false,
binary: true, binary: true,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment