Hi I was wondering if anyone know how to get a store's current state once without having to subscribe to it. I'm currently using ngrx to subscribe to the store and access its state to set a component's attribute, but since I'm subscribed this attribute is constantly refreshing. So I'm looking for a way to obtain this attribute just once so that I can display data without it refreshing constantly.
Just in case, this happens inside my component's constructor.
I've been trying something like this:
_store.select('storeData.correlationData');
When subscribing I would access like this:
_store.subscribe(
(state) => {
this.correlationData = state.storeData.correlationData;
}
);
EDIT
Applciation State:
export interface ApplicationState {
uiState: UiState;
storeData: StoreData;
}