> For the complete documentation index, see [llms.txt](https://briebug.gitbook.io/ngrx-workshop/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://briebug.gitbook.io/ngrx-workshop/rules-of-thumb.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
