# Rules of Thumb

## You probably don't need NgRx

* **Consider**
  * **Service with Behavior Subject**
  * **Container Presenter**
  * **Easy upgrade path to NgRx**

## Container/Presenter

### Container

* **Interacts with the store**
* **Pass observable streams via async pipe**
* **Receive events from child presenter components**
* **Decide what to do with events/data**

{% embed url="<https://stackblitz.com/edit/tour-of-heroes-container-presenter?file=src%2Fapp%2Ffeatures%2Fdashboard%2Fcontainers%2Fdashboard%2Fdashboard.component.ts&view=editor>" %}

### Presenter

* **Receive plain data from parent**
* **Display data/make it pretty**
* **User/system events are raised to parent via emitters**
  * **Decisions are deferred**
  * **Component is reusable and flexible**
* **No knowledge of stores, services, selectors, actions, etc.**

{% embed url="<https://stackblitz.com/edit/tour-of-heroes-container-presenter?file=src%2Fapp%2Ffeatures%2Fdashboard%2Fcomponents%2Ftop-heroes-list%2Ftop-heroes-list.component.ts&view=editor>" %}

{% hint style="info" %}
Refactor Tour of Heroes to use Container Presenter <https://stackblitz.com/github/jessesanders/tour-of-heroes>
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://briebug.gitbook.io/ngrx-workshop/rules-of-thumb.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
