debian-mirror-gitlab/app/assets/javascripts/repository/components/preview/index.vue

66 lines
1.5 KiB
Vue
Raw Normal View History

2019-12-26 22:10:19 +05:30
<script>
2020-11-24 15:15:51 +05:30
/* eslint-disable vue/no-v-html */
2020-03-13 15:44:24 +05:30
import $ from 'jquery';
import '~/behaviors/markdown/render_gfm';
2019-12-26 22:10:19 +05:30
import { GlLink, GlLoadingIcon } from '@gitlab/ui';
2020-03-13 15:44:24 +05:30
import { handleLocationHash } from '~/lib/utils/common_utils';
2020-10-24 23:57:45 +05:30
import readmeQuery from '../../queries/readme.query.graphql';
2019-12-26 22:10:19 +05:30
export default {
apollo: {
readme: {
2020-10-24 23:57:45 +05:30
query: readmeQuery,
2019-12-26 22:10:19 +05:30
variables() {
return {
2020-10-24 23:57:45 +05:30
url: this.blob.webPath,
2019-12-26 22:10:19 +05:30
};
},
loadingKey: 'loading',
},
},
components: {
GlLink,
GlLoadingIcon,
},
props: {
blob: {
type: Object,
required: true,
},
},
data() {
return {
readme: null,
loading: 0,
};
},
2020-03-13 15:44:24 +05:30
watch: {
readme(newVal) {
if (newVal) {
this.$nextTick(() => {
handleLocationHash();
$(this.$refs.readme).renderGFM();
});
}
},
},
2019-12-26 22:10:19 +05:30
};
</script>
<template>
<article class="file-holder limited-width-container readme-holder">
2020-01-01 13:55:28 +05:30
<div class="js-file-title file-title-flex-parent">
<div class="file-header-content">
<i aria-hidden="true" class="fa fa-file-text-o fa-fw"></i>
2020-10-24 23:57:45 +05:30
<gl-link :href="blob.webPath">
2020-01-01 13:55:28 +05:30
<strong>{{ blob.name }}</strong>
</gl-link>
</div>
2019-12-26 22:10:19 +05:30
</div>
2020-04-22 19:07:51 +05:30
<div class="blob-viewer" data-qa-selector="blob_viewer_content">
2020-03-13 15:44:24 +05:30
<gl-loading-icon v-if="loading > 0" size="md" color="dark" class="my-4 mx-auto" />
<div v-else-if="readme" ref="readme" v-html="readme.html"></div>
2019-12-26 22:10:19 +05:30
</div>
</article>
</template>