87 lines
2.4 KiB
Vue
87 lines
2.4 KiB
Vue
<script>
|
|
import BlobEmbeddable from '~/blob/components/blob_embeddable.vue';
|
|
import { SNIPPET_VISIBILITY_PUBLIC } from '../constants';
|
|
import BlobHeader from '~/blob/components/blob_header.vue';
|
|
import BlobContent from '~/blob/components/blob_content.vue';
|
|
import CloneDropdownButton from '~/vue_shared/components/clone_dropdown.vue';
|
|
|
|
import GetBlobContent from '../queries/snippet.blob.content.query.graphql';
|
|
|
|
import { SIMPLE_BLOB_VIEWER, RICH_BLOB_VIEWER } from '~/blob/components/constants';
|
|
|
|
export default {
|
|
components: {
|
|
BlobEmbeddable,
|
|
BlobHeader,
|
|
BlobContent,
|
|
CloneDropdownButton,
|
|
},
|
|
apollo: {
|
|
blobContent: {
|
|
query: GetBlobContent,
|
|
variables() {
|
|
return {
|
|
ids: this.snippet.id,
|
|
rich: this.activeViewerType === RICH_BLOB_VIEWER,
|
|
};
|
|
},
|
|
update: data =>
|
|
data.snippets.edges[0].node.blob.richData || data.snippets.edges[0].node.blob.plainData,
|
|
},
|
|
},
|
|
props: {
|
|
snippet: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
blob: this.snippet.blob,
|
|
blobContent: '',
|
|
activeViewerType:
|
|
this.snippet.blob?.richViewer && !window.location.hash
|
|
? RICH_BLOB_VIEWER
|
|
: SIMPLE_BLOB_VIEWER,
|
|
};
|
|
},
|
|
computed: {
|
|
embeddable() {
|
|
return this.snippet.visibilityLevel === SNIPPET_VISIBILITY_PUBLIC;
|
|
},
|
|
isContentLoading() {
|
|
return this.$apollo.queries.blobContent.loading;
|
|
},
|
|
viewer() {
|
|
const { richViewer, simpleViewer } = this.blob;
|
|
return this.activeViewerType === RICH_BLOB_VIEWER ? richViewer : simpleViewer;
|
|
},
|
|
canBeCloned() {
|
|
return this.snippet.sshUrlToRepo || this.snippet.httpUrlToRepo;
|
|
},
|
|
},
|
|
methods: {
|
|
switchViewer(newViewer) {
|
|
this.activeViewerType = newViewer;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<blob-embeddable v-if="embeddable" class="mb-3" :url="snippet.webUrl" />
|
|
<article class="file-holder snippet-file-content">
|
|
<blob-header :blob="blob" :active-viewer-type="viewer.type" @viewer-changed="switchViewer">
|
|
<template #actions>
|
|
<clone-dropdown-button
|
|
v-if="canBeCloned"
|
|
class="mr-2"
|
|
:ssh-link="snippet.sshUrlToRepo"
|
|
:http-link="snippet.httpUrlToRepo"
|
|
/>
|
|
</template>
|
|
</blob-header>
|
|
<blob-content :loading="isContentLoading" :content="blobContent" :active-viewer="viewer" />
|
|
</article>
|
|
</div>
|
|
</template>
|