TylerBarnes / gatsby-plugin-transition-link

A link component for page transitions in gatsby
537 stars 70 forks source link

Transition is broken when use path with query parameters #129

Open stushurik opened 5 years ago

stushurik commented 5 years ago

In my project I need to use AniLink with query params. I experience performance degradation (junk frames and transition does not work smooth with visible deffects) when to prop contains query params.

When link is used with path without params everything is ok

            <AniLink swipe direction="left" to="/path">
                Some link
            </AniLink>

But this one cause problems

            <AniLink swipe direction="left" to="/path?param=1">
                Some link
            </AniLink>
aamorozov commented 5 years ago

Looks like the similar issue I've been having with newer versions of this plugin - ref https://github.com/TylerBarnes/gatsby-plugin-transition-link/issues/92 @stushurik

stushurik commented 5 years ago

@aamorozov have you solved your issue?

aamorozov commented 5 years ago

I'm using it for a relatively old project so I just locked it to 1.6

stushurik commented 5 years ago

Yes I downgraded to 1.6 and it works fine now

TylerBarnes commented 5 years ago

Thanks guys, it's helpful for me to know 1.6 is fine when I'm debugging. I'll have a look at this

justin-bond commented 4 years ago

@TylerBarnes is there any update for a fix for this? Issue #175 doesn't solve this issue since that's using <Router> and not using the OOB gatsby pages