You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The React.js integration for ABP Boilerplate framework.
3
+
The React.js integration for ABP Boilerplate framework. This template is built on React+Mobx+Typescript. SOLID, SoC principles are used.
4
+
5
+
# Architecture
6
+
7
+
This framework is designed by utilizing MVC design pattern and layered architecture as follows:
8
+
9
+
- All Backend communications are done by service layer.
10
+
- For every Container Component there exists one Store and one Model.
11
+
- Store has state of application so it consumes service See "Defining data stores". All service functions will be called in store not in Component. Component executes Store actions when state is needed.
12
+
- Presentational Component can use store directly by injecting the store or Props from Container Component can be passed in it.
13
+
- Container or Presentational Component can invoke store actions and automatic rendering of component will be done by Mobx.
14
+
15
+
InversifyJS IoC container is used to ensure dependency inversion. All of services has one interface and one implementation, so mocks can be used easily when writing tests.
0 commit comments