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(*): Cleanup funnel state when unmounted #97

Merged
merged 3 commits into from
Dec 29, 2024
Merged

fix(*): Cleanup funnel state when unmounted #97

merged 3 commits into from
Dec 29, 2024

Conversation

minuukang
Copy link
Member

close #85

Add a interface of cleanup() when funnel is unmounted.

NOTE: The @use-funnel/react-navigation-native should don't use this interface at push stack navigation because the navigation stack render is still alive.
so, check all funnel route param and remove when is not current route.

@minuukang minuukang self-assigned this Dec 29, 2024
Comment on lines +82 to +92
const newHistoryState = {
...window.history.state,
};

delete newHistoryState[`${id}.context`];
delete newHistoryState[`${id}.histories`];

const searchParams = new URLSearchParams(location.search);
searchParams.delete(`${id}.step`);

window.history.replaceState(newHistoryState, '', `?${searchParams.toString()}`);
Copy link
Member Author

Choose a reason for hiding this comment

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

from #95

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: Issue at using sub funnel when re-entered
1 participant