Skip to content
#

ngrx

Here are 826 public repositories matching this topic...

emanuelevivoli
emanuelevivoli commented Apr 11, 2020

Motivation

Hello everyone, I'm opening this issue because I'd like to improve the documentation on this feature that I found actually amazing for testing my firestore-triggered (and http-triggered) cloud functions locally, adding breakpoints.
I want to share it because I was struggling for many days in order to debug my cloud functions locally, and maybe improving documentation can be a be

platform
splincode
splincode commented Oct 27, 2019

Description

I'm on 3.5.1 and it seems that things are still initialized before APP_INITIALIZER.
Not sure if I'm missing something or if I don't completely understand what this issue's resolution should be?

This is my use case:
I need to initialize Ngxs through a library module that either is imported or not in the apps (monorepo structure)
And I couldn’t find a way to initialize it pr

altair
travigd
travigd commented Mar 29, 2020

Is your feature request related to a problem? Please describe.
Sometimes I have related models and I mention them in descriptions. This occurs fairly frequently when I have related models.

For example, I might have a separate Account and Profile types, and the description for Profile might be something like

Public-facing information about an `Account`.

It'd be awesome f

A complete Angular 6 and Webpack 4 starter seed with minimal and full featured branches. Full featured branch includes: Material Design 2 (Bootstrap 4 branch available as well), @ngrx, HMR, DLLs and optional use of Universal for server-side rendering - Supports AOT (offline) compilation, sync and lazy loading. Karma/Protractor for e2e/unit tests.

  • Updated Dec 28, 2019
  • TypeScript
hadirsa
hadirsa commented May 16, 2018

I'm submitting a ...

[ * ] Documentation issue or request

Current behavior
I have added a new language to the languages list. Change in language's combo is Ok and works. The problem is that i want to set a new language as default.
I did this in config.local.json but default language is not set on application start. Is there another changes that i should make to hav

lanovoy
lanovoy commented Mar 6, 2018

README and article samples are looking like we can mutate state object directly and don't have to return anything from the reducer function. It doesn't seem to work...
If I do something like:

@Action(LoadAction)
  public load(state: IState, action: LoadAction) {
      state.isLoading: true,
      state.isLoaded: false,
      state.hasError: false,
      state.error: null
  }
alex-vg
alex-vg commented Apr 22, 2020

At first, thanks for all the work. I'm using this project excessively and like it a lot.

But there is one thing that I think is a bit weird with boxed values. There is a deepEqual check to make sure a boxed value is kinda the same after serialization and deserialization. But it currently complains about undefined values, which are not that bad.
Accessing an undefined value after serialization

deox
dannypule
dannypule commented Oct 4, 2019

This should fail because otherNum is not part of the State interface:

interface State {
  num: number
}

export const initialState: State = {
  num: 0
};

export const appsReducer = createReducer(initialState, handleAction => [
  handleAction(actions.getApps.success, () => ({
    num: 0,
    otherNum: 0 // adding this property should trigger a warning
  })),
]);

Improve this page

Add a description, image, and links to the ngrx topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the ngrx topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.