Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(useInfiniteScroll): improve visibility check #3212

Merged
merged 6 commits into from Jul 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
73 changes: 73 additions & 0 deletions packages/core/useInfiniteScroll/index.test.ts
@@ -0,0 +1,73 @@
import { flushPromises } from '@vue/test-utils'
import { describe, expect, it, vi } from 'vitest'
import { ref } from 'vue-demi'
import { useElementVisibility } from '../useElementVisibility'
import { useInfiniteScroll } from '.'

vi.mock('../useElementVisibility')
describe('useInfiniteScroll', () => {
it('should be defined', () => {
expect(useInfiniteScroll).toBeDefined()
})

it.each([
[ref(givenMockElement())],
[givenMockElement()],
[document],
[window],
])('should calls the loadMore handler, when element is visible', (target) => {
const mockHandler = vi.fn()
givenElementVisibilityRefMock(true)

useInfiniteScroll(target, mockHandler)

expect(mockHandler).toHaveBeenCalledTimes(1)
})

it('should calls the loadMore handler, when element visibility state form hidden to visible', async () => {
const mockHandler = vi.fn()
const mockElement = givenMockElement()
const visibilityRefMock = givenElementVisibilityRefMock(false)

useInfiniteScroll(mockElement, mockHandler)

expect(mockHandler).not.toHaveBeenCalled()

visibilityRefMock.value = true
await flushPromises()

expect(mockHandler).toHaveBeenCalledTimes(1)
})

it('should call the loadMore handler, when user scrolls', async () => {
const mockElementScrollHeight = 100
const mockHandler = vi.fn()
const mockElement = givenMockElement({
scrollHeight: mockElementScrollHeight,
})
givenElementVisibilityRefMock(true)

useInfiniteScroll(mockElement, mockHandler)
mockElement.scrollTop = mockElementScrollHeight
mockElement.dispatchEvent(new Event('scroll'))
await flushPromises()

expect(mockHandler).toHaveBeenCalledTimes(1)
})

function givenMockElement({
scrollHeight = 0,
} = {}): HTMLDivElement {
const mockElement = document.createElement('div')
Object.defineProperty(mockElement, 'scrollHeight', {
value: scrollHeight,
})
return mockElement
}

function givenElementVisibilityRefMock(defaultValue: boolean) {
const mockVisibilityRef = ref(defaultValue)
vi.mocked(useElementVisibility).mockReturnValue(mockVisibilityRef)
return mockVisibilityRef
}
})
27 changes: 20 additions & 7 deletions packages/core/useInfiniteScroll/index.ts
@@ -1,7 +1,8 @@
import { computed, nextTick, reactive, ref, watch } from 'vue-demi'
import type { UnwrapNestedRefs } from 'vue-demi'
import type { Awaitable, MaybeRefOrGetter } from '@vueuse/shared'
import { toValue } from '@vueuse/shared'
import type { UnwrapNestedRefs } from 'vue-demi'
import { computed, nextTick, reactive, ref, watch } from 'vue-demi'
import { useElementVisibility } from '../useElementVisibility'
import type { UseScrollOptions } from '../useScroll'
import { useScroll } from '../useScroll'

Expand Down Expand Up @@ -56,17 +57,29 @@ export function useInfiniteScroll(

const promise = ref<any>()
const isLoading = computed(() => !!promise.value)
// Document and Window cannot be observed by IntersectionObserver
const observedElement = computed<HTMLElement | SVGElement | null | undefined>(() => {
const el = toValue(element)
if (el instanceof Window)
return window.document.documentElement

if (el instanceof Document)
return document.documentElement

return el
})
const isElementVisible = useElementVisibility(observedElement)

function checkAndLoad() {
state.measure()

const el = toValue(element) as HTMLElement
if (!el || !el.offsetParent)
Copy link
Contributor

@genu genu Jul 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fails when el is a document instance.

We need to check if el is a instance of HTMLDocument first, instead of assuming its an HTMLElement

Copy link
Contributor Author

@erikkkwu erikkkwu Jul 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I discovered that although the approach of determining the element offsetParent solves the issue of an infinite loop when v-show is false #3143, it also results in the load more functionality not working when v-show is switched to true. The solution I came up with is to use MutationObserver to listen for changes and trigger the load more. do you have any better suggestions?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to review the code more, but I think the issue in #3143 needs to be solved in a different way.

The changes that were made by @antfu coerces the element to be an HTMLElement:

const el = toValue(element) as HTMLElement
    if (!el || !el.offsetParent)
      return

This is not correct because the function definition itself tells us that element could take 4 different shapes:

export function useInfiniteScroll(
  element: MaybeRefOrGetter<HTMLElement | SVGElement | Window | Document | null | undefined>,
...
) 

coincidentally only HTMLElemewnt has an offsetParent

Pinging @antfu for feedback.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not very familiar with this, but I guess we could do !el || (('offsetParent' in el) && !el.offsetParent)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes can, but it will have another problem that load more callback will not trigger when the v-show from false to true

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My recommendation is to re-open that issue and revert the fix that was made because It had caused a regression. Then we can move the discussion on how to fix it there or another PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@genu Any update on this? :)

If I understand correctly, you just need a PR that reverts the offsetParent check?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR was updated and I reviewed again. In my testing, everything looks good now.

if (!observedElement.value || !isElementVisible.value)
return

const { scrollHeight, clientHeight, scrollWidth, clientWidth } = observedElement.value as HTMLElement
const isNarrower = (direction === 'bottom' || direction === 'top')
? el.scrollHeight <= el.clientHeight
: el.scrollWidth <= el.clientWidth
? scrollHeight <= clientHeight
: scrollWidth <= clientWidth

if (state.arrivedState[direction] || isNarrower) {
if (!promise.value) {
Expand All @@ -83,7 +96,7 @@ export function useInfiniteScroll(
}

watch(
() => [state.arrivedState[direction], toValue(element)],
() => [state.arrivedState[direction], isElementVisible.value],
checkAndLoad,
{ immediate: true },
)
Expand Down