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
Copy file name to clipboardexpand all lines: docs/Switcher.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,10 @@ If the `wrapper` prop is defined, the rendered child component will be wrapped i
55
55
56
56
`basePath` is prepended to all path properties in the components inside `Switcher`. If `basePath` is set to `/base/path` then a component with path, `/home` will match the path `/base/path/home`. The base path may also have [dynamic segments](./dynamic_segments.md). If `basePath` is set to `/base/:id/`, `/home` will match something like `/base/someIdCouldBeAnything/home`.
57
57
58
-
### preventUpdate (default: a function returning false)
58
+
### preventUpdate (default: () => false)
59
59
60
60
`preventUpdate` is an optional function. When `preventUpdate` returns true, subsequent renders will not occur despite props changing or route changes. This can be useful when animating or doing something in which the presentation of the component is desired to remain static.
61
+
62
+
### mapDynamicSegments (default: data => data)
63
+
64
+
`mapDynamicSegments` is an optional function property. When there are [dynamic segments](./dynamic_segments.md) in a path, it passes an object with these values (where the key names are the segment names) to `mapDynamicSegments` and merges the object returned by `mapDynamicSegments` with the props. `mapDynamicSegments` can be used to transform the dynamic segment data before it is merged with props. By default the dynamic segment data object is passed through.
Copy file name to clipboardexpand all lines: docs/dynamic_segments.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Dynamic Segments
2
2
3
-
Like many routing solutions, Rails, express, etc. `switcheroo` supports paths with dynamic segments. These are essentially dynamic parts of the route that will match anything. While the `path` property on a `"Switch"`(./Switch.md) takes a regular expression string, it is beneficial to use dynamic segments because it provides `switcheroo` with named data that can be used elsewhere like in the [`onChange`](./Switcher.md#onchange) callback.
3
+
Like many routing solutions, Rails, express, etc. `switcheroo` supports paths with dynamic segments. These are essentially dynamic parts of the route that will match anything. While the `path` property on a `"Switch"`(./Switch.md) takes a regular expression string, it is beneficial to use dynamic segments because it provides `switcheroo` with named data that can be used elsewhere like in the [`onChange`](./Switcher.md#onchange) callback. These dynamic segments also get passed into the component as props. The data can be transformed by [`mapDynamicSegments`](./Switcher.md#mapdynamicsegments) function property being set as props.
0 commit comments