-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: javascript and angular docs refactor with integration-interface…
… docs (#6)
- Loading branch information
Showing
7 changed files
with
479 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
* xref:angular:general/index.adoc[General] | ||
** xref:angular:general/guidelines.adoc[Guidelines] | ||
* Cookbook | ||
* xref:angular:ngrx/ngrx.adoc[NgRx] | ||
* Libraries | ||
** xref:angular:libraries/symlink.adoc[How to create a SymLink] | ||
** xref:angular:libraries/angular-integration-interface.adoc[@onecx/angular-integration-interface] | ||
** xref:angular:libraries/workingWithSharedLibraries.adoc[] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
* Javascript | ||
** xref:general/index.adoc[General] | ||
*** Libraries | ||
**** xref:libraries/integration-interface.adoc[@onecx/integration-interface] | ||
** Angular | ||
+ | ||
-- | ||
include::angular:partial$nav.adoc[] | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
= Javascript | ||
|
||
== Resources | ||
|
||
* Javascript | ||
** xref:general/index.adoc[General] | ||
*** Libraries | ||
**** xref:libraries/integration-interface.adoc[@onecx/integration-interface] | ||
** Angular | ||
+ | ||
-- | ||
include::angular:partial$nav.adoc[] | ||
-- |
438 changes: 438 additions & 0 deletions
438
docs/modules/javascript/pages/libraries/integration-interface.adoc
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NOTE: For Angular based applications xref:angular-integration-interface.adoc#app_state_service[`@onecx/angular-integration-interface` offers an Injectable AppStateService service] exposing functions usefull when dealing with application state management. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
A Topic is a similar concept to an Observable. They operate on messages passed between UI Apps using browser memory. Each topic: | ||
|
||
* has unique name | ||
* has version | ||
* can publish new message | ||
* can be subscribed to and piped for handling new messages | ||
* can be destroyed to prevent listening to new messages | ||
With multiple UI Apps having the same Topic instantiated (with the same name), they can communicate with each other based on the publisher-subscriber model. Whenever any Topic instance publishes new message, subscribers for all instances will read the message eventually allowing them to react on new information. |