-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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: pollingInterval update logic in useRequest-usePolling #1463
Open
xiaoYuanDun
wants to merge
16
commits into
alibaba:master
Choose a base branch
from
xiaoYuanDun:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 8 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
5e81c8f
update pollingInterval logic
xiaoYuanDun da9adcb
fix: update pollingInterval logic
xiaoYuanDun ee7b019
fix: handle canceled timer when pollingInterval change
xiaoYuanDun 9398576
fix: only reset timer when request not cancel and document not hidden
xiaoYuanDun 008d3e1
fix: add logic to reset timer when document is hidden
xiaoYuanDun 816a734
Merge branch 'master' into master
xiaoYuanDun 5edb2dc
feat: usePollingPlugin support interval dynamic change
brickspert 3df81cb
Merge branch 'master' of github.com:xiaoYuanDun/hooks into xiaoYuanDu…
brickspert 8ea6187
fix: improve logic of pollingInterval change
xiaoYuanDun c8f1f20
fix: improve logic of pollingInterval change
xiaoYuanDun 64aefe4
fix: add cancel flag
xiaoYuanDun 969fa1c
fix: add cancel flag
xiaoYuanDun 40da696
fix: code format
xiaoYuanDun 0dfe054
fix: code format
xiaoYuanDun f0c65da
fix: handle cancel when pollingInterval is zero
xiaoYuanDun f7ae5e4
Merge branch 'master' into master
xiaoYuanDun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里用 timeRef.current 可能不准确
测试过程中发现,如果 pollingInterval 变化发生在一次请求的
onBefore
之后,onFinally
之前,此时timeRef.current
是被清除了的(undefined),导致不能正确的进入这里的逻辑来启动新定时器。要启动新定时器,应该满足下面两个条件:
cancel
状态(timeRef.current !== -1
)pollingWhenHidden
必须是true
(isDocumentVisible() || pollingWhenHidden
)我结合了一下我们的PR,调整了一下,你看看,能不能接受这样改呢
另外,当
pollingInterval
为 0 时也不能直接返回空对象,此时不是 cancel 状态,应该要返回 onCancel 和 onBefore 来处理可能到来的pollingInterval
变更和 cancel 请求There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
稍后我看下,目前的代码变更还是偏复杂,我好好想想。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok,感觉这里和 options.ready 的情景有点相似