You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add props for explicit configuration of events to listen for
- Add load and hashChange props (default to true) that tell Switcher
what events it should check for path changes on. (pushState already
there).
- Add location property (defaults to "hash") that lets user customize
what to use to compare the path
Copy file name to clipboardexpand all lines: docs/components/Switcher.md
+13-3
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,21 @@ To actually render anything, the `Switcher` must have any number of children ele
28
28
29
29
## Optional Props
30
30
31
-
### pushState
31
+
### pushState (default: false)
32
32
33
-
By default `window.location.hash` is used to match paths. If the `pushState` prop is set to true, then `window.location.pathname` is used.
33
+
When true, `Switcher` listens to the `popstate` event and looks for path changes on this event.
34
34
35
-
When the hash is used, `Switcher` listens for path changes with the `hashchange` event, and when `pushState` is used, it listens to the `popstate` event.
35
+
### hashChange (default: true)
36
+
37
+
When true, `Switcher` listens to the `hashchange` event and looks for path changes on this event.
38
+
39
+
### load (default: true)
40
+
41
+
When true, `Switcher` listens to the `load` event and looks for path changes on this event.
42
+
43
+
### location (default: 'hash')
44
+
45
+
By default `window.location.hash` is used to match paths. If `location` is set to 'pathname', then `window.location.pathname` is used instead.
0 commit comments