92 lines
2.1 KiB
Vue
92 lines
2.1 KiB
Vue
<script>
|
|
import { GlDeprecatedButton, GlTooltipDirective } from '@gitlab/ui';
|
|
import Icon from '~/vue_shared/components/icon.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Icon,
|
|
GlDeprecatedButton,
|
|
},
|
|
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-deprecated-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-deprecated-button>
|
|
</div>
|
|
<div
|
|
v-if="scrollDownAvailable"
|
|
v-gl-tooltip
|
|
:disabled="scrollUpButtonDisabled"
|
|
class="controllers-buttons"
|
|
:title="__('Scroll to bottom')"
|
|
aria-labelledby="scroll-to-bottom"
|
|
>
|
|
<gl-deprecated-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-deprecated-button>
|
|
</div>
|
|
<gl-deprecated-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-deprecated-button>
|
|
</div>
|
|
</template>
|