blob: 6d2f74029b3db825ed24da6bd2c37b5220a3d9b5 [file] [log] [blame]
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -06001<template>
2 <b-button
3 id="scrollToTopBtn"
4 class="btn-top btn-icon-only"
Derick Montague86e11ad2021-01-04 11:19:08 -06005 :class="{ 'show-btn': showButton }"
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -06006 variant="secondary"
7 :title="$t('global.ariaLabel.scrollToTop')"
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -06008 @click="scrollToTop"
9 >
10 <icon-up-to-top />
SurenNeware6e2cb972020-12-24 20:58:16 +053011 <span class="sr-only">{{ $t('global.ariaLabel.scrollToTop') }}</span>
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060012 </b-button>
13</template>
14
15<script>
16import UpToTop24 from '@carbon/icons-vue/es/up-to-top/24';
17
18import { debounce } from 'lodash';
Ed Tanous883a0d52024-03-23 14:56:34 -070019import { useI18n } from 'vue-i18n';
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060020
21export default {
22 name: 'BackToTop',
23 components: { IconUpToTop: UpToTop24 },
24 data() {
25 return {
Ed Tanous883a0d52024-03-23 14:56:34 -070026 $t: useI18n().t,
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060027 showButton: false,
28 };
29 },
30 created() {
31 window.addEventListener('scroll', debounce(this.handleScroll, 200));
32 },
33 methods: {
34 handleScroll() {
35 document.documentElement.scrollTop > 500
36 ? (this.showButton = true)
37 : (this.showButton = false);
38 },
39 scrollToTop() {
40 document.documentElement.scrollTo({
41 top: 0,
42 behavior: 'smooth',
43 });
44 },
45 },
46};
47</script>
48
49<style lang="scss" scoped>
50.btn-top {
51 position: fixed;
52 bottom: 24px;
53 right: 24px;
Derick Montague86e11ad2021-01-04 11:19:08 -060054
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060055 box-shadow: $box-shadow;
Derick Montague86e11ad2021-01-04 11:19:08 -060056 visibility: hidden;
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060057 opacity: 0;
58 transition: $transition-base;
Derick Montague86e11ad2021-01-04 11:19:08 -060059 z-index: $zindex-fixed;
60
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060061 @media (min-width: 1600px) {
62 left: 1485px;
63 right: auto;
64 }
65}
Derick Montague86e11ad2021-01-04 11:19:08 -060066.show-btn {
67 visibility: visible;
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060068 opacity: 1;
Dixsie Wolmers970ea7d2020-11-16 16:46:01 -060069}
70</style>