summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/components/blob_content_viewer.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/repository/components/blob_content_viewer.vue')
-rw-r--r--app/assets/javascripts/repository/components/blob_content_viewer.vue17
1 files changed, 16 insertions, 1 deletions
diff --git a/app/assets/javascripts/repository/components/blob_content_viewer.vue b/app/assets/javascripts/repository/components/blob_content_viewer.vue
index a9701c8f8aa..7fbf331d585 100644
--- a/app/assets/javascripts/repository/components/blob_content_viewer.vue
+++ b/app/assets/javascripts/repository/components/blob_content_viewer.vue
@@ -8,11 +8,13 @@ import createFlash from '~/flash';
import { __ } from '~/locale';
import blobInfoQuery from '../queries/blob_info.query.graphql';
import BlobHeaderEdit from './blob_header_edit.vue';
+import BlobReplace from './blob_replace.vue';
export default {
components: {
BlobHeader,
BlobHeaderEdit,
+ BlobReplace,
BlobContent,
GlLoadingIcon,
},
@@ -87,6 +89,9 @@ export default {
};
},
computed: {
+ isLoggedIn() {
+ return Boolean(gon.current_user_id);
+ },
isLoading() {
return this.$apollo.queries.project.loading;
},
@@ -126,7 +131,17 @@ export default {
@viewer-changed="switchViewer"
>
<template #actions>
- <blob-header-edit :edit-path="blobInfo.editBlobPath" />
+ <blob-header-edit
+ :edit-path="blobInfo.editBlobPath"
+ :web-ide-path="blobInfo.ideEditPath"
+ />
+ <blob-replace
+ v-if="isLoggedIn"
+ :path="path"
+ :name="blobInfo.name"
+ :replace-path="blobInfo.replacePath"
+ :can-push-code="blobInfo.canModifyBlob"
+ />
</template>
</blob-header>
<blob-content