84 lines
2.3 KiB
Vue
84 lines
2.3 KiB
Vue
<script>
|
|
import { mapState, mapGetters, mapActions } from 'vuex';
|
|
import { modalTypes, viewerTypes } from '../constants';
|
|
import IdeTreeList from './ide_tree_list.vue';
|
|
import NewEntryButton from './new_dropdown/button.vue';
|
|
import NewModal from './new_dropdown/modal.vue';
|
|
import Upload from './new_dropdown/upload.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Upload,
|
|
IdeTreeList,
|
|
NewEntryButton,
|
|
NewModal,
|
|
},
|
|
computed: {
|
|
...mapState(['currentBranchId']),
|
|
...mapGetters(['currentProject', 'currentTree', 'activeFile', 'getUrlForPath']),
|
|
},
|
|
mounted() {
|
|
this.initialize();
|
|
},
|
|
activated() {
|
|
this.initialize();
|
|
},
|
|
methods: {
|
|
...mapActions(['updateViewer', 'createTempEntry', 'resetOpenFiles']),
|
|
createNewFile() {
|
|
this.$refs.newModal.open(modalTypes.blob);
|
|
},
|
|
createNewFolder() {
|
|
this.$refs.newModal.open(modalTypes.tree);
|
|
},
|
|
initialize() {
|
|
this.$nextTick(() => {
|
|
this.updateViewer(viewerTypes.edit);
|
|
});
|
|
|
|
if (!this.activeFile) return;
|
|
|
|
if (this.activeFile.pending && !this.activeFile.deleted) {
|
|
this.$router.push(this.getUrlForPath(this.activeFile.path), () => {
|
|
this.updateViewer(viewerTypes.edit);
|
|
});
|
|
} else if (this.activeFile.deleted) {
|
|
this.resetOpenFiles();
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<ide-tree-list @tree-ready="$emit('tree-ready')">
|
|
<template #header>
|
|
{{ __('Edit') }}
|
|
<div class="ide-tree-actions ml-auto d-flex" data-testid="ide-root-actions">
|
|
<new-entry-button
|
|
:label="__('New file')"
|
|
:show-label="false"
|
|
class="d-flex border-0 p-0 mr-3"
|
|
icon="doc-new"
|
|
data-qa-selector="new_file_button"
|
|
@click="createNewFile()"
|
|
/>
|
|
<upload
|
|
:show-label="false"
|
|
class="d-flex mr-3"
|
|
button-css-classes="border-0 p-0"
|
|
@create="createTempEntry"
|
|
/>
|
|
<new-entry-button
|
|
:label="__('New directory')"
|
|
:show-label="false"
|
|
class="d-flex border-0 p-0"
|
|
icon="folder-new"
|
|
data-qa-selector="new_directory_button"
|
|
@click="createNewFolder()"
|
|
/>
|
|
</div>
|
|
<new-modal ref="newModal" />
|
|
</template>
|
|
</ide-tree-list>
|
|
</template>
|