2020-01-01 13:55:28 +05:30
|
|
|
<script>
|
2020-07-28 23:09:34 +05:30
|
|
|
import BlobEmbeddable from '~/blob/components/blob_embeddable.vue';
|
2020-01-01 13:55:28 +05:30
|
|
|
import SnippetHeader from './snippet_header.vue';
|
2020-03-13 15:44:24 +05:30
|
|
|
import SnippetTitle from './snippet_title.vue';
|
|
|
|
import SnippetBlob from './snippet_blob_view.vue';
|
2020-01-01 13:55:28 +05:30
|
|
|
import { GlLoadingIcon } from '@gitlab/ui';
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
import { getSnippetMixin } from '../mixins/snippets';
|
2020-07-28 23:09:34 +05:30
|
|
|
import { SNIPPET_VISIBILITY_PUBLIC } from '~/snippets/constants';
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
export default {
|
|
|
|
components: {
|
2020-07-28 23:09:34 +05:30
|
|
|
BlobEmbeddable,
|
2020-01-01 13:55:28 +05:30
|
|
|
SnippetHeader,
|
2020-03-13 15:44:24 +05:30
|
|
|
SnippetTitle,
|
2020-01-01 13:55:28 +05:30
|
|
|
GlLoadingIcon,
|
2020-03-13 15:44:24 +05:30
|
|
|
SnippetBlob,
|
2020-01-01 13:55:28 +05:30
|
|
|
},
|
2020-04-22 19:07:51 +05:30
|
|
|
mixins: [getSnippetMixin],
|
2020-07-28 23:09:34 +05:30
|
|
|
computed: {
|
|
|
|
embeddable() {
|
|
|
|
return this.snippet.visibilityLevel === SNIPPET_VISIBILITY_PUBLIC;
|
|
|
|
},
|
|
|
|
},
|
2020-01-01 13:55:28 +05:30
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div class="js-snippet-view">
|
|
|
|
<gl-loading-icon
|
|
|
|
v-if="isLoading"
|
|
|
|
:label="__('Loading snippet')"
|
2020-04-22 19:07:51 +05:30
|
|
|
size="lg"
|
2020-01-01 13:55:28 +05:30
|
|
|
class="loading-animation prepend-top-20 append-bottom-20"
|
|
|
|
/>
|
2020-03-13 15:44:24 +05:30
|
|
|
<template v-else>
|
|
|
|
<snippet-header :snippet="snippet" />
|
|
|
|
<snippet-title :snippet="snippet" />
|
2020-07-28 23:09:34 +05:30
|
|
|
<blob-embeddable v-if="embeddable" class="gl-mb-5" :url="snippet.webUrl" />
|
|
|
|
<div v-for="blob in blobs" :key="blob.path">
|
|
|
|
<snippet-blob :snippet="snippet" :blob="blob" />
|
|
|
|
</div>
|
2020-03-13 15:44:24 +05:30
|
|
|
</template>
|
2020-01-01 13:55:28 +05:30
|
|
|
</div>
|
|
|
|
</template>
|