debian-mirror-gitlab/app/assets/javascripts/ide/components/ide.vue

131 lines
3.2 KiB
Vue
Raw Normal View History

2018-05-09 12:01:36 +05:30
<script>
2018-10-15 14:42:47 +05:30
import Mousetrap from 'mousetrap';
import { mapActions, mapState, mapGetters } from 'vuex';
import IdeSidebar from './ide_side_bar.vue';
import RepoTabs from './repo_tabs.vue';
import IdeStatusBar from './ide_status_bar.vue';
import RepoEditor from './repo_editor.vue';
import FindFile from './file_finder/index.vue';
const originalStopCallback = Mousetrap.stopCallback;
2018-05-09 12:01:36 +05:30
export default {
components: {
2018-10-15 14:42:47 +05:30
IdeSidebar,
RepoTabs,
IdeStatusBar,
RepoEditor,
FindFile,
2018-05-09 12:01:36 +05:30
},
computed: {
2018-10-15 14:42:47 +05:30
...mapState([
'changedFiles',
'openFiles',
'viewer',
'currentMergeRequestId',
'fileFindVisible',
'emptyStateSvgPath',
]),
2018-05-09 12:01:36 +05:30
...mapGetters(['activeFile', 'hasChanges']),
},
mounted() {
const returnValue = 'Are you sure you want to lose unsaved changes?';
window.onbeforeunload = e => {
if (!this.changedFiles.length) return undefined;
Object.assign(e, {
returnValue,
});
return returnValue;
};
2018-10-15 14:42:47 +05:30
Mousetrap.bind(['t', 'command+p', 'ctrl+p'], e => {
if (e.preventDefault) {
e.preventDefault();
}
this.toggleFileFinder(!this.fileFindVisible);
});
Mousetrap.stopCallback = (e, el, combo) => this.mousetrapStopCallback(e, el, combo);
},
methods: {
...mapActions(['toggleFileFinder']),
mousetrapStopCallback(e, el, combo) {
if (
(combo === 't' && el.classList.contains('dropdown-input-field')) ||
el.classList.contains('inputarea')
) {
return true;
} else if (combo === 'command+p' || combo === 'ctrl+p') {
return false;
}
return originalStopCallback(e, el, combo);
},
2018-05-09 12:01:36 +05:30
},
};
</script>
<template>
2018-10-15 14:42:47 +05:30
<article class="ide">
2018-05-09 12:01:36 +05:30
<div
2018-10-15 14:42:47 +05:30
class="ide-view"
2018-05-09 12:01:36 +05:30
>
2018-10-15 14:42:47 +05:30
<find-file
v-show="fileFindVisible"
/>
<ide-sidebar />
<div
class="multi-file-edit-pane"
2018-05-09 12:01:36 +05:30
>
2018-10-15 14:42:47 +05:30
<template
v-if="activeFile"
>
<repo-tabs
:active-file="activeFile"
:files="openFiles"
:viewer="viewer"
:has-changes="hasChanges"
:merge-request-id="currentMergeRequestId"
/>
<repo-editor
class="multi-file-edit-pane-content"
:file="activeFile"
/>
</template>
<template
v-else
2018-05-09 12:01:36 +05:30
>
2018-10-15 14:42:47 +05:30
<div
v-once
class="ide-empty-state"
>
<div class="row js-empty-state">
<div class="col-xs-12">
<div class="svg-content svg-250">
<img :src="emptyStateSvgPath" />
</div>
2018-05-09 12:01:36 +05:30
</div>
2018-10-15 14:42:47 +05:30
<div class="col-xs-12">
<div class="text-content text-center">
<h4>
Welcome to the GitLab IDE
</h4>
<p>
Select a file from the left sidebar to begin editing.
Afterwards, you'll be able to commit your changes.
</p>
</div>
2018-05-09 12:01:36 +05:30
</div>
</div>
</div>
2018-10-15 14:42:47 +05:30
</template>
</div>
2018-05-09 12:01:36 +05:30
</div>
2018-10-15 14:42:47 +05:30
<ide-status-bar
:file="activeFile"
2018-05-09 12:01:36 +05:30
/>
2018-10-15 14:42:47 +05:30
</article>
2018-05-09 12:01:36 +05:30
</template>