Richard Davenport
Richard Davenport
Agreed! We are actively using this. I'd love to help out too. I understand the desire to align with upstream, but I think some concessions would be greatly appreciated. How...
I realized that the background was overwriting some styles in my css class, namely background-color. I'm guessing that most people are wanting to style it based on a class, so...
We have a case where we need to navigate to outlets and the url looks like `/orders/(25143084//modal:order-cancel)`. The `navigate` api does not like this, but `navigateByUrl` works perfect. I'm going...
Never mind, we'll be switching over to v4.x!
@mischkl I believe you would just not dispatch an action: ``` @Effect({ dispatch: false }) searchOrdersSuccess$ = this.actions$ .ofType(OrderListActions.SEARCH_ORDERS_SUCCESS) .map(() => this.router.navigate(['blah'])); ``` And if you switch to v4 then...
@mischkl I'm talking about not dispatching an action...`@Effect({ dispatch: false })` [https://github.com/ngrx/effects/blob/master/docs/api.md#effect](https://github.com/ngrx/effects/blob/master/docs/api.md#effect) Pass { dispatch: false } to the decorator to prevent actions from being dispatched. It's my understanding that...
@stolinski Would like to help you out here... Just give me a push in the right direction and I can start on whatever you'd like.
Just looking over some older issues, we had a need to do this too. I solved it using a few different techniques. We use context (just because it's available), although...
> My general recommendation is that I wouldn't necessarily show these error messages directly to a user, because Superstruct provides no guarantee that they are user-facing. Depending on the structure...
@ianstormtaylor thanks for being open. Let me through together some notes/code.