2018-05-09 12:01:36 +05:30
|
|
|
<script>
|
2018-12-05 23:21:45 +05:30
|
|
|
import Vue from 'vue';
|
2018-10-15 14:42:47 +05:30
|
|
|
import { mapActions, mapState, mapGetters } from 'vuex';
|
2019-09-04 21:01:54 +05:30
|
|
|
import { GlButton, GlLoadingIcon } from '@gitlab/ui';
|
2018-11-18 11:00:15 +05:30
|
|
|
import { __ } from '~/locale';
|
2019-03-02 22:35:43 +05:30
|
|
|
import FindFile from '~/vue_shared/components/file_finder/index.vue';
|
2018-11-18 11:00:15 +05:30
|
|
|
import NewModal from './new_dropdown/modal.vue';
|
2018-10-15 14:42:47 +05:30
|
|
|
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';
|
2018-11-08 19:23:39 +05:30
|
|
|
import RightPane from './panes/right.vue';
|
|
|
|
import ErrorMessage from './error_message.vue';
|
2018-11-20 20:47:30 +05:30
|
|
|
import CommitEditorHeader from './commit_sidebar/editor_header.vue';
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
export default {
|
|
|
|
components: {
|
2018-11-18 11:00:15 +05:30
|
|
|
NewModal,
|
2018-10-15 14:42:47 +05:30
|
|
|
IdeSidebar,
|
|
|
|
RepoTabs,
|
|
|
|
IdeStatusBar,
|
|
|
|
RepoEditor,
|
|
|
|
FindFile,
|
2018-11-08 19:23:39 +05:30
|
|
|
ErrorMessage,
|
2018-11-20 20:47:30 +05:30
|
|
|
CommitEditorHeader,
|
2019-09-04 21:01:54 +05:30
|
|
|
GlButton,
|
|
|
|
GlLoadingIcon,
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
2018-12-05 23:21:45 +05:30
|
|
|
props: {
|
|
|
|
rightPaneComponent: {
|
|
|
|
type: Vue.Component,
|
|
|
|
required: false,
|
|
|
|
default: () => RightPane,
|
|
|
|
},
|
|
|
|
},
|
2018-05-09 12:01:36 +05:30
|
|
|
computed: {
|
2018-10-15 14:42:47 +05:30
|
|
|
...mapState([
|
|
|
|
'openFiles',
|
|
|
|
'viewer',
|
|
|
|
'currentMergeRequestId',
|
|
|
|
'fileFindVisible',
|
|
|
|
'emptyStateSvgPath',
|
2018-11-08 19:23:39 +05:30
|
|
|
'currentProjectId',
|
|
|
|
'errorMessage',
|
2019-03-02 22:35:43 +05:30
|
|
|
'loading',
|
|
|
|
]),
|
|
|
|
...mapGetters([
|
|
|
|
'activeFile',
|
|
|
|
'hasChanges',
|
|
|
|
'someUncommittedChanges',
|
|
|
|
'isCommitModeActive',
|
|
|
|
'allBlobs',
|
2019-09-04 21:01:54 +05:30
|
|
|
'emptyRepo',
|
|
|
|
'currentTree',
|
2018-10-15 14:42:47 +05:30
|
|
|
]),
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
|
|
|
mounted() {
|
2018-11-18 11:00:15 +05:30
|
|
|
window.onbeforeunload = e => this.onBeforeUnload(e);
|
2018-10-15 14:42:47 +05:30
|
|
|
},
|
|
|
|
methods: {
|
2019-09-04 21:01:54 +05:30
|
|
|
...mapActions(['toggleFileFinder', 'openNewEntryModal']),
|
2018-11-18 11:00:15 +05:30
|
|
|
onBeforeUnload(e = {}) {
|
|
|
|
const returnValue = __('Are you sure you want to lose unsaved changes?');
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
if (!this.someUncommittedChanges) return undefined;
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
Object.assign(e, {
|
|
|
|
returnValue,
|
|
|
|
});
|
|
|
|
return returnValue;
|
|
|
|
},
|
2019-03-02 22:35:43 +05:30
|
|
|
openFile(file) {
|
|
|
|
this.$router.push(`/project${file.url}`);
|
2018-10-15 14:42:47 +05:30
|
|
|
},
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2018-11-20 20:47:30 +05:30
|
|
|
<article class="ide position-relative d-flex flex-column align-items-stretch">
|
2019-02-15 15:39:39 +05:30
|
|
|
<error-message v-if="errorMessage" :message="errorMessage" />
|
|
|
|
<div class="ide-view flex-grow d-flex">
|
2019-03-02 22:35:43 +05:30
|
|
|
<find-file
|
|
|
|
v-show="fileFindVisible"
|
|
|
|
:files="allBlobs"
|
|
|
|
:visible="fileFindVisible"
|
|
|
|
:loading="loading"
|
|
|
|
@toggle="toggleFileFinder"
|
|
|
|
@click="openFile"
|
|
|
|
/>
|
2018-10-15 14:42:47 +05:30
|
|
|
<ide-sidebar />
|
2019-02-15 15:39:39 +05:30
|
|
|
<div class="multi-file-edit-pane">
|
|
|
|
<template v-if="activeFile">
|
|
|
|
<commit-editor-header v-if="isCommitModeActive" :active-file="activeFile" />
|
2018-10-15 14:42:47 +05:30
|
|
|
<repo-tabs
|
2018-11-20 20:47:30 +05:30
|
|
|
v-else
|
2018-10-15 14:42:47 +05:30
|
|
|
:active-file="activeFile"
|
|
|
|
:files="openFiles"
|
|
|
|
:viewer="viewer"
|
|
|
|
:has-changes="hasChanges"
|
|
|
|
:merge-request-id="currentMergeRequestId"
|
|
|
|
/>
|
2019-02-15 15:39:39 +05:30
|
|
|
<repo-editor :file="activeFile" class="multi-file-edit-pane-content" />
|
2018-10-15 14:42:47 +05:30
|
|
|
</template>
|
2019-02-15 15:39:39 +05:30
|
|
|
<template v-else>
|
2019-09-04 21:01:54 +05:30
|
|
|
<div class="ide-empty-state">
|
2018-10-15 14:42:47 +05:30
|
|
|
<div class="row js-empty-state">
|
2018-11-08 19:23:39 +05:30
|
|
|
<div class="col-12">
|
2019-02-15 15:39:39 +05:30
|
|
|
<div class="svg-content svg-250"><img :src="emptyStateSvgPath" /></div>
|
2018-05-09 12:01:36 +05:30
|
|
|
</div>
|
2018-11-08 19:23:39 +05:30
|
|
|
<div class="col-12">
|
2018-10-15 14:42:47 +05:30
|
|
|
<div class="text-content text-center">
|
2019-09-04 21:01:54 +05:30
|
|
|
<h4>
|
|
|
|
{{ __('Make and review changes in the browser with the Web IDE') }}
|
|
|
|
</h4>
|
|
|
|
<template v-if="emptyRepo">
|
|
|
|
<p>
|
|
|
|
{{
|
|
|
|
__(
|
|
|
|
"Create a new file as there are no files yet. Afterwards, you'll be able to commit your changes.",
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
</p>
|
|
|
|
<gl-button
|
|
|
|
variant="success"
|
|
|
|
:title="__('New file')"
|
|
|
|
:aria-label="__('New file')"
|
|
|
|
@click="openNewEntryModal({ type: 'blob' })"
|
|
|
|
>
|
|
|
|
{{ __('New file') }}
|
|
|
|
</gl-button>
|
|
|
|
</template>
|
|
|
|
<gl-loading-icon v-else-if="!currentTree || currentTree.loading" size="md" />
|
|
|
|
<p v-else>
|
|
|
|
{{
|
|
|
|
__(
|
|
|
|
"Select a file from the left sidebar to begin editing. Afterwards, you'll be able to commit your changes.",
|
|
|
|
)
|
|
|
|
}}
|
2018-10-15 14:42:47 +05:30
|
|
|
</p>
|
|
|
|
</div>
|
2018-05-09 12:01:36 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-15 14:42:47 +05:30
|
|
|
</template>
|
|
|
|
</div>
|
2019-02-15 15:39:39 +05:30
|
|
|
<component :is="rightPaneComponent" v-if="currentProjectId" />
|
2018-05-09 12:01:36 +05:30
|
|
|
</div>
|
2019-09-04 21:01:54 +05:30
|
|
|
<ide-status-bar />
|
2018-11-18 11:00:15 +05:30
|
|
|
<new-modal />
|
2018-10-15 14:42:47 +05:30
|
|
|
</article>
|
2018-05-09 12:01:36 +05:30
|
|
|
</template>
|