93 lines
2.1 KiB
Vue
93 lines
2.1 KiB
Vue
|
<script>
|
||
|
import { GlButton, GlTooltipDirective } from '@gitlab/ui';
|
||
|
import Icon from '~/vue_shared/components/icon.vue';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Icon,
|
||
|
GlButton,
|
||
|
},
|
||
|
directives: {
|
||
|
GlTooltip: GlTooltipDirective,
|
||
|
},
|
||
|
props: {
|
||
|
scrollUpButtonDisabled: {
|
||
|
type: Boolean,
|
||
|
required: false,
|
||
|
default: false,
|
||
|
},
|
||
|
scrollDownButtonDisabled: {
|
||
|
type: Boolean,
|
||
|
required: false,
|
||
|
default: false,
|
||
|
},
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
scrollUpAvailable: Boolean(this.$listeners.scrollUp),
|
||
|
scrollDownAvailable: Boolean(this.$listeners.scrollDown),
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
handleRefreshClick() {
|
||
|
this.$emit('refresh');
|
||
|
},
|
||
|
handleScrollUp() {
|
||
|
this.$emit('scrollUp');
|
||
|
},
|
||
|
handleScrollDown() {
|
||
|
this.$emit('scrollDown');
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<div
|
||
|
v-if="scrollUpAvailable"
|
||
|
v-gl-tooltip
|
||
|
class="controllers-buttons"
|
||
|
:title="__('Scroll to top')"
|
||
|
aria-labelledby="scroll-to-top"
|
||
|
>
|
||
|
<gl-button
|
||
|
id="scroll-to-top"
|
||
|
class="btn-blank js-scroll-to-top"
|
||
|
:aria-label="__('Scroll to top')"
|
||
|
:disabled="scrollUpButtonDisabled"
|
||
|
@click="handleScrollUp()"
|
||
|
><icon name="scroll_up"
|
||
|
/></gl-button>
|
||
|
</div>
|
||
|
<div
|
||
|
v-if="scrollDownAvailable"
|
||
|
v-gl-tooltip
|
||
|
:disabled="scrollUpButtonDisabled"
|
||
|
class="controllers-buttons"
|
||
|
:title="__('Scroll to bottom')"
|
||
|
aria-labelledby="scroll-to-bottom"
|
||
|
>
|
||
|
<gl-button
|
||
|
id="scroll-to-bottom"
|
||
|
class="btn-blank js-scroll-to-bottom"
|
||
|
:aria-label="__('Scroll to bottom')"
|
||
|
:v-if="scrollDownAvailable"
|
||
|
:disabled="scrollDownButtonDisabled"
|
||
|
@click="handleScrollDown()"
|
||
|
><icon name="scroll_down"
|
||
|
/></gl-button>
|
||
|
</div>
|
||
|
<gl-button
|
||
|
id="refresh-log"
|
||
|
v-gl-tooltip
|
||
|
class="ml-1 px-2 js-refresh-log"
|
||
|
:title="__('Refresh')"
|
||
|
:aria-label="__('Refresh')"
|
||
|
@click="handleRefreshClick"
|
||
|
>
|
||
|
<icon name="retry" />
|
||
|
</gl-button>
|
||
|
</div>
|
||
|
</template>
|