Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions src/middlewares/updateState.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
import { QContext } from "../../index";
import { undefinedOrTrue } from "../utils";

export default function updateState(context: QContext, done) {
if (undefinedOrTrue(context.navigateOptions, "updateState")) {
context.instance._setCurrent(context.matches);
export default function updateState(context: QContext, done: () => void) {
const { navigateOptions, instance, matches } = context;

if (undefinedOrTrue(navigateOptions, "updateState")) {
instance._setCurrent(matches);
}
done();

// We call the next function in the middleware chain with a delay, to give
// time for the state to be updated in the browser's history API. This is
// necessary to prevent the `_matchRoute` function from being called with
// the old state in certain scenarios, such as when using the back button
// or when navigating to the same URL twice in a row.
setTimeout(() => {
done();
}, 10);
}