@shaper.org/vite-react-plugin 1.0.12 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/templates/main.ts +11 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shaper.org/vite-react-plugin",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "private": false,
package/templates/main.ts CHANGED
@@ -108,7 +108,11 @@ export class ReactRouteMonitor {
108
108
  this.iframeClient.onMessage((event) => {
109
109
  const messageData = event.data;
110
110
  if (messageData.type == "push-route") {
111
- history.pushState({}, "", messageData.message.path);
111
+ history.pushState(
112
+ { type: "from-iframe-parent" },
113
+ "",
114
+ messageData.message.path,
115
+ );
112
116
  }
113
117
  });
114
118
  }
@@ -129,8 +133,13 @@ export class ReactRouteMonitor {
129
133
 
130
134
  patchHistory() {
131
135
  history.pushState = (...args) => {
136
+ let shouldTrigger = true;
137
+ if (args[0] && args[0].type === "from-iframe-parent") {
138
+ args[0] = {};
139
+ shouldTrigger = false;
140
+ }
132
141
  this.origPush.apply(history, args);
133
- this.triggerRouteChange();
142
+ if (shouldTrigger) this.triggerRouteChange();
134
143
  };
135
144
 
136
145
  history.replaceState = (...args) => {