UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

173 lines (157 loc) 5.73 kB
import BaseComponent from 'primevue/basecomponent'; import ChevronUpIcon from 'primevue/icons/chevronup'; import { ZIndexUtils, DomHandler } from 'primevue/utils'; import { openBlock, createBlock, Transition, withCtx, createElementBlock, mergeProps, renderSlot, resolveDynamicComponent, createCommentVNode } from 'vue'; var script = { name: 'ScrollTop', extends: BaseComponent, scrollListener: null, container: null, props: { target: { type: String, default: 'window' }, threshold: { type: Number, default: 400 }, icon: { type: String, default: undefined }, behavior: { type: String, default: 'smooth' } }, data() { return { visible: false }; }, mounted() { if (this.target === 'window') this.bindDocumentScrollListener(); else if (this.target === 'parent') this.bindParentScrollListener(); }, beforeUnmount() { if (this.target === 'window') this.unbindDocumentScrollListener(); else if (this.target === 'parent') this.unbindParentScrollListener(); if (this.container) { ZIndexUtils.clear(this.container); this.overlay = null; } }, methods: { onClick() { let scrollElement = this.target === 'window' ? window : this.$el.parentElement; scrollElement.scroll({ top: 0, behavior: this.behavior }); }, checkVisibility(scrollY) { if (scrollY > this.threshold) this.visible = true; else this.visible = false; }, bindParentScrollListener() { this.scrollListener = () => { this.checkVisibility(this.$el.parentElement.scrollTop); }; this.$el.parentElement.addEventListener('scroll', this.scrollListener); }, bindDocumentScrollListener() { this.scrollListener = () => { this.checkVisibility(DomHandler.getWindowScrollTop()); }; window.addEventListener('scroll', this.scrollListener); }, unbindParentScrollListener() { if (this.scrollListener) { this.$el.parentElement.removeEventListener('scroll', this.scrollListener); this.scrollListener = null; } }, unbindDocumentScrollListener() { if (this.scrollListener) { window.removeEventListener('scroll', this.scrollListener); this.scrollListener = null; } }, onEnter(el) { ZIndexUtils.set('overlay', el, this.$primevue.config.zIndex.overlay); }, onAfterLeave(el) { ZIndexUtils.clear(el); }, containerRef(el) { this.container = el; } }, computed: { containerClass() { return ['p-scrolltop p-link p-component', { 'p-scrolltop-sticky': this.target !== 'window' }]; }, scrollTopAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.scrollTop : undefined; } }, components: { ChevronUpIcon } }; const _hoisted_1 = ["aria-label"]; function render(_ctx, _cache, $props, $setup, $data, $options) { return (openBlock(), createBlock(Transition, { name: "p-scrolltop", appear: "", onEnter: $options.onEnter, onAfterLeave: $options.onAfterLeave }, { default: withCtx(() => [ ($data.visible) ? (openBlock(), createElementBlock("button", mergeProps({ key: 0, ref: $options.containerRef, class: $options.containerClass, onClick: _cache[0] || (_cache[0] = (...args) => ($options.onClick && $options.onClick(...args))), type: "button", "aria-label": $options.scrollTopAriaLabel }, _ctx.ptm('root')), [ renderSlot(_ctx.$slots, "icon", {}, () => [ (openBlock(), createBlock(resolveDynamicComponent($props.icon ? 'span' : 'ChevronUpIcon'), mergeProps({ class: ['p-scrolltop-icon', $props.icon] }, _ctx.ptm('icon')), null, 16, ["class"])) ]) ], 16, _hoisted_1)) : createCommentVNode("", true) ]), _: 3 }, 8, ["onEnter", "onAfterLeave"])) } function styleInject(css, ref) { if ( ref === void 0 ) ref = {}; var insertAt = ref.insertAt; if (!css || typeof document === 'undefined') { return; } var head = document.head || document.getElementsByTagName('head')[0]; var style = document.createElement('style'); style.type = 'text/css'; if (insertAt === 'top') { if (head.firstChild) { head.insertBefore(style, head.firstChild); } else { head.appendChild(style); } } else { head.appendChild(style); } if (style.styleSheet) { style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } } var css_248z = "\n.p-scrolltop {\n position: fixed;\n bottom: 20px;\n right: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.p-scrolltop-sticky {\n position: sticky;\n}\n.p-scrolltop-sticky.p-link {\n margin-left: auto;\n}\n.p-scrolltop-enter-from {\n opacity: 0;\n}\n.p-scrolltop-enter-active {\n transition: opacity 0.15s;\n}\n.p-scrolltop.p-scrolltop-leave-to {\n opacity: 0;\n}\n.p-scrolltop-leave-active {\n transition: opacity 0.15s;\n}\n"; styleInject(css_248z); script.render = render; export { script as default };