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(transition): fix KeepAlive with transition out-in mode behavior in production #12468

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

yangxiuxiu1115
Copy link
Contributor

fix #12465

Copy link

Size Report

Bundles

File Size Gzip Brotli
runtime-dom.global.prod.js 100 kB (+42 B) 38 kB (+12 B) 34.2 kB (+18 B)
vue.global.prod.js 158 kB (+42 B) 57.8 kB (+14 B) 51.5 kB (+43 B)

Usages

Name Size Gzip Brotli
createApp (CAPI only) 47.2 kB 18.3 kB 16.8 kB
createApp 55.2 kB 21.3 kB 19.5 kB
createSSRApp 59.3 kB 23.1 kB 21 kB
defineCustomElement 60.1 kB 22.9 kB 20.8 kB
overall 69.1 kB (+42 B) 26.5 kB (+9 B) 24.1 kB (+8 B)

Copy link

pkg-pr-new bot commented Nov 25, 2024

Open in Stackblitz

@vue/compiler-core

npm i https://pkg.pr.new/@vue/compiler-core@12468

@vue/compiler-sfc

npm i https://pkg.pr.new/@vue/compiler-sfc@12468

@vue/compiler-dom

npm i https://pkg.pr.new/@vue/compiler-dom@12468

@vue/compiler-ssr

npm i https://pkg.pr.new/@vue/compiler-ssr@12468

@vue/runtime-core

npm i https://pkg.pr.new/@vue/runtime-core@12468

@vue/runtime-dom

npm i https://pkg.pr.new/@vue/runtime-dom@12468

@vue/reactivity

npm i https://pkg.pr.new/@vue/reactivity@12468

@vue/server-renderer

npm i https://pkg.pr.new/@vue/server-renderer@12468

@vue/shared

npm i https://pkg.pr.new/@vue/shared@12468

vue

npm i https://pkg.pr.new/vue@12468

@vue/compat

npm i https://pkg.pr.new/@vue/compat@12468

commit: 732c398

@skirtles-code
Copy link
Contributor

That branch of the code has a comment on it:

  // #7121 ensure get the child component subtree in case
  // it's been replaced during HMR

It would appear that the author of that section only intended for it to be used during HMR. If it's going to be used in production then that comment needs updating.

Did you investigate why that code was added just for HMR?


More generally, could you also please include more details in your PR descriptions? Presumably you spent a while debugging this before deciding what the appropriate fix should be. What did you find? Why do you think this is the correct fix? If you don't provide that information in the description then anyone reviewing the change is going to need to go through that debugging and exploration process all over again.

Reviewing a PR, even a small one like this, can take a reviewer several hours. We don't just need to check that the fix works, we need to assess whether it's actually the best fix for the underlying problem. Providing a brief explanation in the PR description of what you think the underlying problem is and why you think it's the right fix can save us a huge amount of time. It can also be really valuable months down the line when someone wants to understand why a particular change was made.

Thanks.

@yangxiuxiu1115 yangxiuxiu1115 marked this pull request as draft November 26, 2024 02:34
@yangxiuxiu1115
Copy link
Contributor Author

yangxiuxiu1115 commented Nov 26, 2024

Thank you very much for your reply, honestly I'm not very good at English, most of the time I rely on translation software, how to use English accurately might be really difficult for me, but that's my problem.

Return to PR, To be honest I did overlook that code comment you mentioned. But this is just my simple attempt, he may not be correct

debugging the issue is really tricky, one thing to note about this issue is that when class=“test” is removed from the transition, everything goes back to normal. This is due to the indirect effect of fallthroughAttrs, which clones a new vnode when it exists, which causes vnode.component.subTree and vnode.children[0] to get completely different values.

Then look at the difference between DEV and PROD, when there are fallthroughAttrs then vnode.component.subTree is the correct child vnode, so everything works fine in the DEV environment too!

NOTE:
The overall debugging idea can be started from the vnode, you can simply debug the number of updates on DEV and PROD, you can find that there is a missing update on PROD, and the last update is triggered by the afterLeave on the transition.

@yangxiuxiu1115 yangxiuxiu1115 marked this pull request as ready for review November 26, 2024 04:07
@edison1105
Copy link
Member

/ecosystem-ci run

Choose a reason for hiding this comment

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

Copilot reviewed 1 out of 1 changed files in this pull request and generated no suggestions.

@vue-bot
Copy link
Contributor

vue-bot commented Nov 27, 2024

📝 Ran ecosystem CI: Open

suite result latest scheduled
language-tools success success
nuxt success success
pinia success success
primevue success success
quasar success success
radix-vue success success
router success success
test-utils success success
vant success success
vite-plugin-vue success success
vitepress success success
vue-i18n success success
vue-macros failure success
vuetify success success
vueuse failure failure
vue-simple-compiler success success

@edison1105
Copy link
Member

I think this PR should be correct. It is similar to #7121 where the root node has switched. We should always apply the transition to their component.subTree without distinguishing between DEV and PROD if the component is already mounted. The comments mentioned above need to be updated.

This needs a test case by the way.

@edison1105 edison1105 added need test The PR has missing test cases. scope: transition 🔨 p3-minor-bug Priority 3: this fixes a bug, but is an edge case that only affects very specific usage. labels Nov 27, 2024
@edison1105 edison1105 added ready to merge The PR is ready to be merged. and removed need test The PR has missing test cases. labels Nov 27, 2024
@edison1105 edison1105 changed the title fix(transition): align the different transition behaviors of dev and prod fix(transition): fix KeepAlive with transition out-in mode behavior in production Nov 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔨 p3-minor-bug Priority 3: this fixes a bug, but is an edge case that only affects very specific usage. ready to merge The PR is ready to be merged. scope: transition
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Transition got different behavior in dev & prod mode
4 participants