mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-25 17:53:48 +02:00
178 lines
5.0 KiB
Vue
178 lines
5.0 KiB
Vue
<script setup>
|
|
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip';
|
|
import { ArrowUp } from 'lucide-vue-next';
|
|
import { Button } from '@/components/ui/button';
|
|
|
|
const props = defineProps({
|
|
target: { type: [String, Object], default: null },
|
|
|
|
bottom: { type: Number, default: 20 },
|
|
right: { type: Number, default: 20 },
|
|
|
|
visibilityHeight: { type: Number, default: 200 },
|
|
|
|
behavior: {
|
|
type: String,
|
|
default: 'smooth',
|
|
validator: (value) => value === 'auto' || value === 'smooth'
|
|
},
|
|
|
|
tooltip: { type: Boolean, default: true },
|
|
tooltipText: { type: String, default: 'Back to top' },
|
|
|
|
teleport: { type: Boolean, default: true }
|
|
});
|
|
|
|
const visible = ref(false);
|
|
let containerEl = null;
|
|
|
|
function resolveTarget() {
|
|
if (!props.target) return null;
|
|
if (typeof props.target === 'string') {
|
|
return document.querySelector(props.target);
|
|
}
|
|
|
|
if (typeof props.target === 'object') {
|
|
if ('value' in props.target) {
|
|
return props.target.value;
|
|
}
|
|
if ('$el' in props.target) {
|
|
return props.target.$el;
|
|
}
|
|
}
|
|
|
|
return props.target;
|
|
}
|
|
|
|
function getScrollTop() {
|
|
if (!containerEl || typeof containerEl.scrollTop !== 'number') {
|
|
return window.scrollY || document.documentElement.scrollTop || 0;
|
|
}
|
|
return containerEl.scrollTop || 0;
|
|
}
|
|
|
|
function handleScroll() {
|
|
visible.value = getScrollTop() >= props.visibilityHeight;
|
|
}
|
|
|
|
function scrollToTop() {
|
|
const behavior = props.behavior === 'auto' ? 'auto' : 'smooth';
|
|
if (!containerEl || typeof containerEl.scrollTo !== 'function') {
|
|
window.scrollTo({ top: 0, behavior });
|
|
return;
|
|
}
|
|
containerEl.scrollTo({ top: 0, behavior });
|
|
}
|
|
|
|
function bind() {
|
|
containerEl = resolveTarget();
|
|
|
|
const target = containerEl && typeof containerEl.addEventListener === 'function' ? containerEl : window;
|
|
target.addEventListener('scroll', handleScroll, { passive: true });
|
|
handleScroll();
|
|
}
|
|
|
|
function unbind() {
|
|
const target = containerEl || window;
|
|
target.removeEventListener('scroll', handleScroll);
|
|
}
|
|
|
|
onMounted(() => {
|
|
bind();
|
|
});
|
|
|
|
watch(
|
|
() => props.target,
|
|
() => {
|
|
unbind();
|
|
bind();
|
|
}
|
|
);
|
|
|
|
onBeforeUnmount(() => {
|
|
unbind();
|
|
});
|
|
|
|
const wrapperStyle = computed(
|
|
() => `position:fixed; right:${props.right}px; bottom:${props.bottom}px; z-index:50;`
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<Teleport v-if="teleport" to="body">
|
|
<Transition name="back-to-top">
|
|
<div v-if="visible" :style="wrapperStyle">
|
|
<TooltipProvider v-if="tooltip">
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<Button
|
|
size="icon"
|
|
variant="secondary"
|
|
class="rounded-full shadow"
|
|
aria-label="Back to top"
|
|
@click="scrollToTop">
|
|
<ArrowUp class="h-4 w-4" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="left">
|
|
{{ tooltipText }}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
|
|
<Button
|
|
v-else
|
|
size="icon"
|
|
variant="secondary"
|
|
class="rounded-full shadow"
|
|
aria-label="Back to top"
|
|
@click="scrollToTop">
|
|
<ArrowUp class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</Transition>
|
|
</Teleport>
|
|
|
|
<Transition v-else name="back-to-top">
|
|
<div v-if="visible" :style="wrapperStyle">
|
|
<Button
|
|
size="icon"
|
|
variant="secondary"
|
|
class="rounded-full shadow"
|
|
aria-label="Back to top"
|
|
@click="scrollToTop">
|
|
<ArrowUp class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</Transition>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.back-to-top-enter-active,
|
|
.back-to-top-leave-active {
|
|
transition:
|
|
opacity 160ms ease,
|
|
transform 160ms ease;
|
|
}
|
|
|
|
.back-to-top-enter-from,
|
|
.back-to-top-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(6px);
|
|
}
|
|
|
|
.back-to-top-enter-to,
|
|
.back-to-top-leave-from {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.back-to-top-enter-active,
|
|
.back-to-top-leave-active {
|
|
transition: none;
|
|
}
|
|
}
|
|
</style>
|