debian-mirror-gitlab/app/assets/javascripts/code_navigation/components/popover.vue

106 lines
2.5 KiB
Vue
Raw Normal View History

2020-03-13 15:44:24 +05:30
<script>
2020-05-24 23:13:21 +05:30
import { GlButton } from '@gitlab/ui';
2020-06-23 00:09:42 +05:30
import DocLine from './doc_line.vue';
2020-03-13 15:44:24 +05:30
export default {
components: {
2020-05-24 23:13:21 +05:30
GlButton,
2020-06-23 00:09:42 +05:30
DocLine,
2020-03-13 15:44:24 +05:30
},
props: {
position: {
type: Object,
required: true,
},
data: {
type: Object,
required: true,
},
2020-04-22 19:07:51 +05:30
definitionPathPrefix: {
type: String,
required: true,
},
2020-05-24 23:13:21 +05:30
blobPath: {
type: String,
required: true,
},
2020-03-13 15:44:24 +05:30
},
data() {
return {
offsetLeft: 0,
};
},
computed: {
positionStyles() {
return {
left: `${this.position.x - this.offsetLeft}px`,
top: `${this.position.y + this.position.height}px`,
};
},
2020-04-22 19:07:51 +05:30
definitionPath() {
2020-05-24 23:13:21 +05:30
if (!this.data.definition_path) {
return null;
}
if (this.isDefinitionCurrentBlob) {
return `#${this.data.definition_path.split('#').pop()}`;
}
return `${this.definitionPathPrefix}/${this.data.definition_path}`;
},
isDefinitionCurrentBlob() {
return this.data.definition_path.indexOf(this.blobPath) === 0;
2020-04-22 19:07:51 +05:30
},
2020-03-13 15:44:24 +05:30
},
watch: {
position: {
handler() {
this.$nextTick(() => this.updateOffsetLeft());
},
deep: true,
immediate: true,
},
},
methods: {
updateOffsetLeft() {
this.offsetLeft = Math.max(
0,
this.$el.offsetLeft + this.$el.offsetWidth - window.innerWidth + 20,
);
},
},
colorScheme: gon?.user_color_scheme,
};
</script>
<template>
<div
:style="positionStyles"
class="popover code-navigation-popover popover-font-size-normal gl-popover bs-popover-bottom show"
>
<div :style="{ left: `${offsetLeft}px` }" class="arrow"></div>
<div v-for="(hover, index) in data.hover" :key="index" class="border-bottom">
<pre
v-if="hover.language"
ref="code-output"
:class="$options.colorScheme"
class="border-0 bg-transparent m-0 code highlight"
2020-06-23 00:09:42 +05:30
><doc-line v-for="(tokens, tokenIndex) in hover.tokens" :key="tokenIndex" :language="hover.language" :tokens="tokens"/></pre>
2020-03-13 15:44:24 +05:30
<p v-else ref="doc-output" class="p-3 m-0">
{{ hover.value }}
</p>
</div>
2020-04-22 19:07:51 +05:30
<div v-if="definitionPath" class="popover-body">
2020-05-24 23:13:21 +05:30
<gl-button
:href="definitionPath"
:target="isDefinitionCurrentBlob ? null : '_blank'"
class="w-100"
variant="default"
data-testid="go-to-definition-btn"
>
2020-03-13 15:44:24 +05:30
{{ __('Go to definition') }}
2020-05-24 23:13:21 +05:30
</gl-button>
2020-03-13 15:44:24 +05:30
</div>
</div>
</template>