NGRX Redux store — selecting only a slice of the state returns 'undefined' even if intellisense autocompletes and everything in the model matchesHow do I display a property from a simple object using ngrx redux and angular2Angular 2 Material 2 radio button default selectionangular + redux/ngrx: state update vs. formsCall component logic when state changes in ngrxngrx store select always returning undefinedHow to filter async pipes into Angular child componentsUsing @ngrx/entity for handling collections in store, getSelectors() not workingngrx Reducer - correct way to return new state@angular-redux/store trying to test component that uses async on a property decorated with @select() - documentation does not existNgrx store - how to select root state

when is out of tune ok?

Applicability of Single Responsibility Principle

Your magic is very sketchy

What to do with wrong results in talks?

Valid Badminton Score?

Dot above capital letter not centred

What will be the benefits of Brexit?

Is there any reason not to eat food that's been dropped on the surface of the moon?

Short story about space worker geeks who zone out by 'listening' to radiation from stars

Opposite of a diet

How does residential electricity work?

Is exact Kanji stroke length important?

Ways to speed up user implemented RK4

How do I rename a LINUX host without needing to reboot for the rename to take effect?

What is the intuitive meaning of having a linear relationship between the logs of two variables?

is this a spam?

Coordinate position not precise

What are the ramifications of creating a homebrew world without an Astral Plane?

Why is delta-v is the most useful quantity for planning space travel?

At which point does a character regain all their Hit Dice?

Is there a good way to store credentials outside of a password manager?

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

Student evaluations of teaching assistants

Implement the Thanos sorting algorithm



NGRX Redux store — selecting only a slice of the state returns 'undefined' even if intellisense autocompletes and everything in the model matches


How do I display a property from a simple object using ngrx redux and angular2Angular 2 Material 2 radio button default selectionangular + redux/ngrx: state update vs. formsCall component logic when state changes in ngrxngrx store select always returning undefinedHow to filter async pipes into Angular child componentsUsing @ngrx/entity for handling collections in store, getSelectors() not workingngrx Reducer - correct way to return new state@angular-redux/store trying to test component that uses async on a property decorated with @select() - documentation does not existNgrx store - how to select root state













3















Using @ngrx-redux/store, the latest verson. I can select via string any slice of the state. When I try to access a property, it returns 'undefined' errors.



Syntax:



this.loadedClients = this.store.select(
state => state.superUser.loadedClients
);


using



this.loadedClients = this.store.select('superUser')



works, but using the async pipe to get loadedClients property causes messy markup.



I can't find examples on Google or in the documentation.










share|improve this question
























  • presented string selector doesn't pick the loadedClients subproperty. Have you tried select('superUser', 'loadedClients') ?

    – Kos
    Mar 21 at 16:28












  • @Kos surprising enough, the presented selector does get that subproperty with that syntax. I traced back the steps through the functions and turns out I forgot to return the state in one of the reducers which always ran onInit in that specific component...

    – SebastianG
    Mar 21 at 21:02
















3















Using @ngrx-redux/store, the latest verson. I can select via string any slice of the state. When I try to access a property, it returns 'undefined' errors.



Syntax:



this.loadedClients = this.store.select(
state => state.superUser.loadedClients
);


using



this.loadedClients = this.store.select('superUser')



works, but using the async pipe to get loadedClients property causes messy markup.



I can't find examples on Google or in the documentation.










share|improve this question
























  • presented string selector doesn't pick the loadedClients subproperty. Have you tried select('superUser', 'loadedClients') ?

    – Kos
    Mar 21 at 16:28












  • @Kos surprising enough, the presented selector does get that subproperty with that syntax. I traced back the steps through the functions and turns out I forgot to return the state in one of the reducers which always ran onInit in that specific component...

    – SebastianG
    Mar 21 at 21:02














3












3








3








Using @ngrx-redux/store, the latest verson. I can select via string any slice of the state. When I try to access a property, it returns 'undefined' errors.



Syntax:



this.loadedClients = this.store.select(
state => state.superUser.loadedClients
);


using



this.loadedClients = this.store.select('superUser')



works, but using the async pipe to get loadedClients property causes messy markup.



I can't find examples on Google or in the documentation.










share|improve this question
















Using @ngrx-redux/store, the latest verson. I can select via string any slice of the state. When I try to access a property, it returns 'undefined' errors.



Syntax:



this.loadedClients = this.store.select(
state => state.superUser.loadedClients
);


using



this.loadedClients = this.store.select('superUser')



works, but using the async pipe to get loadedClients property causes messy markup.



I can't find examples on Google or in the documentation.







angular redux rxjs ngrx-store angular-redux






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 17:36









Community

11




11










asked Mar 21 at 15:26









SebastianGSebastianG

977320




977320












  • presented string selector doesn't pick the loadedClients subproperty. Have you tried select('superUser', 'loadedClients') ?

    – Kos
    Mar 21 at 16:28












  • @Kos surprising enough, the presented selector does get that subproperty with that syntax. I traced back the steps through the functions and turns out I forgot to return the state in one of the reducers which always ran onInit in that specific component...

    – SebastianG
    Mar 21 at 21:02


















  • presented string selector doesn't pick the loadedClients subproperty. Have you tried select('superUser', 'loadedClients') ?

    – Kos
    Mar 21 at 16:28












  • @Kos surprising enough, the presented selector does get that subproperty with that syntax. I traced back the steps through the functions and turns out I forgot to return the state in one of the reducers which always ran onInit in that specific component...

    – SebastianG
    Mar 21 at 21:02

















presented string selector doesn't pick the loadedClients subproperty. Have you tried select('superUser', 'loadedClients') ?

– Kos
Mar 21 at 16:28






presented string selector doesn't pick the loadedClients subproperty. Have you tried select('superUser', 'loadedClients') ?

– Kos
Mar 21 at 16:28














@Kos surprising enough, the presented selector does get that subproperty with that syntax. I traced back the steps through the functions and turns out I forgot to return the state in one of the reducers which always ran onInit in that specific component...

– SebastianG
Mar 21 at 21:02






@Kos surprising enough, the presented selector does get that subproperty with that syntax. I traced back the steps through the functions and turns out I forgot to return the state in one of the reducers which always ran onInit in that specific component...

– SebastianG
Mar 21 at 21:02













0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283905%2fngrx-redux-store-selecting-only-a-slice-of-the-state-returns-undefined-even%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283905%2fngrx-redux-store-selecting-only-a-slice-of-the-state-returns-undefined-even%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript