Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow middleware to be exportable #102

Open
Millsky opened this issue Sep 19, 2018 · 1 comment
Open

Allow middleware to be exportable #102

Millsky opened this issue Sep 19, 2018 · 1 comment

Comments

@Millsky
Copy link

Millsky commented Sep 19, 2018

When trying to use a separate store with ng-redux, it is not possible to use this package unless you manually import the router-middleware.

This (routerMiddleware) should be exported from redux-ui-router main index file, so it it more easily compilable by webpack / babel.

The $state service can be manually injected, by using a proxy $injector on the DOM.

import routerMiddleware from '../../../node_modules/redux-ui-router/src/router-middleware';

const handler = {
    get: (obj, prop) => angular.element(document).injector().get('$state')[prop],
};

const stateProxy = new Proxy({}, handler);

export default routerMiddleware(stateProxy);```
@dcogswell
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants