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
{{ message }}
This repository was archived by the owner on Feb 15, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/main/Introduction.md
+21-11Lines changed: 21 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,15 +120,6 @@ Therefore, AgileTs should be used as a friend and helper to outsource all busine
120
120
121
121
AgileTs is 99% written in Typescript and offers an excellent type-safety.
122
122
123
-
## 👨🏫 Learn AgileTs
124
-
125
-
We have a variety of resources available to help you learn AgileTs. An excellent place to start are
126
-
our [Quick Start](./Installation.md) Guides, where you learn the basics about how to use AgileTs in a specific
127
-
Framework. After knowing the ground concept of AgileTs, we recommend checking out the [Style Guides](./StyleGuide.md).
128
-
The Style Guides will help you to get some inspiration on structuring a scalable application using AgileTs. Now you
129
-
are ready to use AgileTs wherever you want. If you need some more information about some functionalities of AgileTs,
130
-
use the search bar in the top right corner. And in case you have any further questions, don't hesitate to join our [Community Discord](https://discord.gg/T9GzreAwPH).
@@ -178,7 +169,7 @@ THEME_STATE.ingestValue(/* new value of THEME_STATE */);
178
169
#### `4`
179
170
180
171
The Observer then creates a Job and passes it to the Runtime.
181
-
The created Job has a reference to the Observer itself in order to perform the actual action
172
+
The created Job has a reference to the Observer itself in order to perform the actual action
182
173
and rerender the correct UI-Components.
183
174
```ts
184
175
// ..
@@ -203,13 +194,22 @@ jobsToRerender.push(job);
203
194
#### `6`
204
195
205
196
A side effect of running a Job is the rerendering of subscribed Components.
206
-
Another could be the persisting into a permanent Storage or rebuilding the Group output.
197
+
Another could be the persisting into a permanent Storage or rebuilding the [Group](../packages/core/features/collection/group/Introduction.md) output.
207
198
```ts
208
199
// ..
209
200
subscriptionContainer.callback(); // If Component based Subscription
210
201
// ..
211
202
```
212
203
204
+
## 👨🏫 Learn AgileTs
205
+
206
+
We have a variety of resources available to help you learn AgileTs. An excellent place to start are
207
+
our [Quick Start](./Installation.md) Guides, where you learn the basics about how to use AgileTs in a specific
208
+
Framework. After knowing the ground concept of AgileTs, we recommend checking out the [Style Guides](./StyleGuide.md).
209
+
The Style Guides will help you to get some inspiration on structuring a scalable application using AgileTs. Now you
210
+
are ready to use AgileTs wherever you want. If you need some more information about some functionalities of AgileTs,
211
+
use the search bar in the top right corner. And in case you have any further questions, don't hesitate to join our [Community Discord](https://discord.gg/T9GzreAwPH).
212
+
213
213
## 🏢 Structure of Documentation
214
214
215
215
### 📁 AgileTs
@@ -258,6 +258,16 @@ and depend on its functionalities.
0 commit comments