-
Notifications
You must be signed in to change notification settings - Fork 835
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(backtop): move to script setup (#2970)
- Loading branch information
Showing
11 changed files
with
260 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<template> | ||
<view> | ||
<nut-scroll-view | ||
:scroll-y="true" | ||
:style="{ height }" | ||
:scroll-top="scrollTop" | ||
scroll-with-animation="true" | ||
@scroll="scroll" | ||
> | ||
<slot name="content"></slot> | ||
</nut-scroll-view> | ||
<view :class="classes" :style="style" @click.stop="handleClick"> | ||
<slot name="icon"> | ||
<Top width="19px" height="19px" class="nut-backtop-main"></Top> | ||
</slot> | ||
</view> | ||
</view> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { computed, ref } from 'vue'; | ||
import NutScrollView from '../scroll-view/index.taro.vue'; | ||
import { Top } from '@nutui/icons-vue-taro'; | ||
defineOptions({ | ||
name: 'NutBacktop' | ||
}); | ||
export type BacktopProps = Partial<{ | ||
height: string; | ||
bottom: number; | ||
right: number; | ||
distance: number; | ||
zIndex: number; | ||
}>; | ||
const props = withDefaults(defineProps<BacktopProps>(), { | ||
height: '100vh', | ||
bottom: 20, | ||
right: 10, | ||
distance: 200, | ||
zIndex: 10 | ||
}); | ||
const emit = defineEmits(['click']); | ||
const backTop = ref(false); | ||
const scrollTop = ref(1); | ||
const scroll = (e: any) => { | ||
scrollTop.value = 2; | ||
backTop.value = e.detail.scrollTop >= props.distance; | ||
}; | ||
const classes = computed(() => { | ||
const prefixCls = 'nut-backtop'; | ||
return { | ||
[prefixCls]: true, | ||
show: backTop.value | ||
}; | ||
}); | ||
const style = computed(() => { | ||
return { | ||
right: `${props.right}px`, | ||
bottom: `${props.bottom}px`, | ||
zIndex: props.zIndex | ||
}; | ||
}); | ||
const handleClick = (e: MouseEvent) => { | ||
scrollTop.value = 1; | ||
emit('click', e); | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<template> | ||
<div :class="classes" :style="style" @click.stop="handleClick"> | ||
<slot> | ||
<Top width="19px" height="19px" class="nut-backtop-main"></Top> | ||
</slot> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { computed, onMounted, onUnmounted, onActivated, onDeactivated, ref } from 'vue'; | ||
import requestAniFrame, { cancelRaf } from '@/packages/utils/raf'; | ||
import { Top } from '@nutui/icons-vue'; | ||
defineOptions({ | ||
name: 'NutBacktop' | ||
}); | ||
export type BacktopProps = Partial<{ | ||
bottom: number; | ||
right: number; | ||
elId: string; | ||
distance: number; | ||
zIndex: number; | ||
isAnimation: boolean; | ||
duration: number; | ||
}>; | ||
const props = withDefaults(defineProps<BacktopProps>(), { | ||
bottom: 20, | ||
right: 10, | ||
elId: 'body', | ||
distance: 200, | ||
zIndex: 10, | ||
isAnimation: true, | ||
duration: 1000 | ||
}); | ||
const emit = defineEmits(['click']); | ||
const backTop = ref(false); | ||
const scrollTop = ref(0); | ||
const scrollEl = ref(window as HTMLElement | Window); | ||
const startTime = ref(0); | ||
const keepAlive = ref(false); | ||
const classes = computed(() => { | ||
const prefixCls = 'nut-backtop'; | ||
return { | ||
[prefixCls]: true, | ||
show: backTop.value | ||
}; | ||
}); | ||
const style = computed(() => { | ||
return { | ||
right: `${props.right}px`, | ||
bottom: `${props.bottom}px`, | ||
zIndex: props.zIndex | ||
}; | ||
}); | ||
function scrollListener() { | ||
if (scrollEl.value instanceof Window) { | ||
scrollTop.value = scrollEl.value.scrollY; | ||
} else { | ||
scrollTop.value = scrollEl.value.scrollTop; | ||
} | ||
backTop.value = scrollTop.value >= props.distance; | ||
} | ||
function scroll(y = 0) { | ||
if (scrollEl.value instanceof Window) { | ||
window.scrollTo(0, y); | ||
} else { | ||
scrollEl.value.scrollTop = y; | ||
} | ||
} | ||
function scrollAnimation() { | ||
let cid = requestAniFrame(function fn() { | ||
var t = props.duration - Math.max(0, startTime.value - +new Date() + props.duration); | ||
var y = (t * -scrollTop.value) / props.duration + scrollTop.value; | ||
scroll(y); | ||
cid = requestAniFrame(fn); | ||
if (t == props.duration || y == 0) { | ||
cancelRaf(cid); | ||
} | ||
}); | ||
} | ||
function addEventListener() { | ||
scrollEl.value.addEventListener('scroll', scrollListener, false); | ||
scrollEl.value.addEventListener('resize', scrollListener, false); | ||
} | ||
function removeEventListener() { | ||
scrollEl.value.removeEventListener('scroll', scrollListener, false); | ||
scrollEl.value.removeEventListener('resize', scrollListener, false); | ||
} | ||
function handleClick(e: MouseEvent) { | ||
startTime.value = +new Date(); | ||
props.isAnimation && props.duration > 0 ? scrollAnimation() : scroll(); | ||
emit('click', e); | ||
} | ||
function init() { | ||
if (props.elId && document.getElementById(props.elId)) { | ||
scrollEl.value = document.getElementById(props.elId) as HTMLElement | Window; | ||
} | ||
addEventListener(); | ||
} | ||
onMounted(() => { | ||
if (props.distance == 0) { | ||
backTop.value = true; | ||
} | ||
init(); | ||
}); | ||
onUnmounted(() => { | ||
removeEventListener(); | ||
}); | ||
onActivated(() => { | ||
if (keepAlive.value) { | ||
keepAlive.value = false; | ||
init(); | ||
} | ||
}); | ||
onDeactivated(() => { | ||
keepAlive.value = true; | ||
removeEventListener(); | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Backtop from './backtop.taro.vue'; | ||
import type { ComponentPublicInstance } from 'vue'; | ||
import { withInstall } from '@/packages/utils'; | ||
|
||
withInstall(Backtop); | ||
|
||
export type { BacktopProps } from './backtop.taro.vue'; | ||
|
||
export type BacktopInstance = ComponentPublicInstance & InstanceType<typeof Backtop>; | ||
|
||
export { Backtop, Backtop as default }; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Backtop from './backtop.vue'; | ||
import type { ComponentPublicInstance } from 'vue'; | ||
import { withInstall } from '@/packages/utils'; | ||
|
||
withInstall(Backtop); | ||
|
||
export type { BacktopProps } from './backtop.vue'; | ||
|
||
export type BacktopInstance = ComponentPublicInstance & InstanceType<typeof Backtop>; | ||
|
||
export { Backtop, Backtop as default }; |
Oops, something went wrong.