New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

manifold-dx-redirect-dx

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

manifold-dx-redirect-dx - npm Package Compare versions

Comparing version 0.7.13 to 0.7.14

2

dist/src/RedirectDx.js

@@ -84,3 +84,3 @@ "use strict";

exports.getHistory = getHistory;
// Creating a render object makes spying/testing simple...
// Creating a render object makes spying/testing a little simpler
exports.render = {

@@ -87,0 +87,0 @@ redirect: function (props, historyMax) {

{
"name": "manifold-dx-redirect-dx",
"version": "0.7.13",
"version": "0.7.14",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [

# React Router Integration for manifold-dx: RedirectDx
This library provides a manifold-dx state-based mechanism for routing within an application that uses
React Router, specifically its `<Redirect>` component.
React Router, specifically its `<Redirect>` component. NOTE: we are assuming one RedirectDx per application!
**We are assuming one RedirectDx per application!**
Some advantages to this are:
1. Redirects can be done consistently throughout your app by creating and dispatching an action, e.g.:
Some advantages to using this library with manifold-dx are:
1. Redirects can be done consistently throughout your app using a single line of code, by creating
and dispatching an action, e.g.:
```typescript jsx
getActionCreator(this.appState).update('redirectTo', 'search').dispatch();
```
2. URL changes are integrated into manifold-dx actions, so that action undo/redo will move forward and backward across app URL's as well.
Note that this means that you've defined appState to have a string property called 'redirectTo'
that holds the state that will tell React Router where to go. The appState is a manifold-dx
StateObject, with a 'redirectTo' property which are assigned to the RedirectDxProps, like so:
```typescript jsx
<AppRedirectDx redirectDxState={this.appState} redirectDxProp={'redirectTo'} />
```
2. URL changes are integrated into manifold-dx actions, so that action undo/redo will
move forward and backward across app URL's as well.
3. Deep linking is unaffected, since this library doesn't do anything until after the app is loaded.
To use this in your application, you need to subclass RedirectDx, handing it your state store and
interface defining your app state. For example, if your export its store as `appStore` and defines
its state as `AppState`, this is how you would subclass RedirectDx for your app:
```typescript jsx
export class AppRedirectDx<S extends StateObject> extends RedirectDx<S, AppState> {
constructor(props: RedirectDxProps<S>) {
super(props, appStore.getState(), factory);
}
}
```
## Build instructions

@@ -17,0 +35,0 @@ - upgrade TypeScript to whatever the current version is in manifold-dx (at project start, that was 3.1.6)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc