2020-01-01 13:55:28 +05:30
|
|
|
<script>
|
|
|
|
import GetSnippetQuery from '../queries/snippet.query.graphql';
|
|
|
|
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';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
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
|
|
|
},
|
|
|
|
apollo: {
|
|
|
|
snippet: {
|
|
|
|
query: GetSnippetQuery,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
ids: this.snippetGid,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
update: data => data.snippets.edges[0].node,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
snippetGid: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
snippet: {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
isLoading() {
|
|
|
|
return this.$apollo.queries.snippet.loading;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div class="js-snippet-view">
|
|
|
|
<gl-loading-icon
|
|
|
|
v-if="isLoading"
|
|
|
|
:label="__('Loading snippet')"
|
|
|
|
:size="2"
|
|
|
|
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" />
|
|
|
|
<snippet-blob :snippet="snippet" />
|
|
|
|
</template>
|
2020-01-01 13:55:28 +05:30
|
|
|
</div>
|
|
|
|
</template>
|