forked from openMF/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
272 additions
and
34 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
# :core:analytics module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_analytics.svg) |
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
# :core:common module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_common.svg) |
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 |
---|---|---|
@@ -1,3 +1,24 @@ | ||
# :core:data module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_data.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:data["data"] | ||
:core:common["common"] | ||
:core:datastore["datastore"] | ||
:core:model["model"] | ||
:core:network["network"] | ||
:core:analytics["analytics"] | ||
end | ||
:core:data --> :core:common | ||
:core:data --> :core:datastore | ||
:core:data --> :core:model | ||
:core:data --> :core:network | ||
:core:data --> :core:analytics | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# :core:datastore module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_datastore.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:datastore["datastore"] | ||
:core:model["model"] | ||
:core:common["common"] | ||
end | ||
:core:datastore --> :core:model | ||
:core:datastore --> :core:common | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,16 @@ | ||
# :core:designsystem module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_designsystem.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:designsystem["designsystem"] | ||
:core:model["model"] | ||
end | ||
:core:designsystem --> :core:model | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# :core:data module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_data.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:domain["domain"] | ||
:core:common["common"] | ||
:core:data["data"] | ||
:core:model["model"] | ||
end | ||
:core:domain --> :core:common | ||
:core:domain --> :core:data | ||
:core:domain --> :core:model | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,16 @@ | ||
# :core:model module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_model.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:model["model"] | ||
:core:common["common"] | ||
end | ||
:core:model --> :core:common | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# :core:network module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_network.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:network["network"] | ||
:core:common["common"] | ||
:core:model["model"] | ||
:core:datastore["datastore"] | ||
end | ||
:core:network --> :core:common | ||
:core:network --> :core:model | ||
:core:network --> :core:datastore | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,22 @@ | ||
# :core:ui module | ||
## Dependency graph | ||
![Dependency graph](../../docs/images/graphs/dep_graph_core_ui.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:ui["ui"] | ||
:core:analytics["analytics"] | ||
:core:designsystem["designsystem"] | ||
:core:model["model"] | ||
:core:common["common"] | ||
end | ||
:core:ui --> :core:analytics | ||
:core:ui --> :core:designsystem | ||
:core:ui --> :core:model | ||
:core:ui --> :core:common | ||
``` |
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
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 |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# :mifospay module | ||
## Dependency graph | ||
![Dependency graph](../docs/images/graphs/dep_graph_mifospay.svg) | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:data["data"] | ||
:core:ui["ui"] | ||
end | ||
:mifospay-android --> :mifospay-shared | ||
:mifospay-android --> :core:data | ||
:mifospay-android --> :core:ui | ||
``` |
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 |
---|---|---|
@@ -1 +1,22 @@ | ||
To run in desktop mode, choose the `mifospay-desktop` profile and click run. | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:common["common"] | ||
:core:data["data"] | ||
:core:model["model"] | ||
:core:datastore["datastore"] | ||
end | ||
:mifospay-desktop --> :core:common | ||
:mifospay-desktop --> :core:data | ||
:mifospay-desktop --> :core:model | ||
:mifospay-desktop --> :core:datastore | ||
:mifospay-desktop --> :mifospay-shared | ||
``` |
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,73 @@ | ||
### Module Graph | ||
|
||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:data["data"] | ||
:core:network["network"] | ||
:core:ui["ui"] | ||
:core:designsystem["designsystem"] | ||
:core:domain["domain"] | ||
end | ||
subgraph :feature | ||
:feature:auth["auth"] | ||
:feature:home["home"] | ||
:feature:settings["settings"] | ||
:feature:faq["faq"] | ||
:feature:editpassword["editpassword"] | ||
:feature:profile["profile"] | ||
:feature:history["history"] | ||
:feature:payments["payments"] | ||
:feature:finance["finance"] | ||
:feature:accounts["accounts"] | ||
:feature:invoices["invoices"] | ||
:feature:kyc["kyc"] | ||
:feature:notification["notification"] | ||
:feature:savedcards["savedcards"] | ||
:feature:receipt["receipt"] | ||
:feature:standing-instruction["standing-instruction"] | ||
:feature:request-money["request-money"] | ||
:feature:send-money["send-money"] | ||
:feature:make-transfer["make-transfer"] | ||
:feature:qr["qr"] | ||
:feature:merchants["merchants"] | ||
:feature:upi-setup["upi-setup"] | ||
end | ||
subgraph :libs | ||
:libs:mifos-passcode["mifos-passcode"] | ||
end | ||
:mifospay-shared --> :core:data | ||
:mifospay-shared --> :core:network | ||
:mifospay-shared --> :core:ui | ||
:mifospay-shared --> :core:designsystem | ||
:mifospay-shared --> :core:domain | ||
:mifospay-shared --> :feature:auth | ||
:mifospay-shared --> :libs:mifos-passcode | ||
:mifospay-shared --> :feature:home | ||
:mifospay-shared --> :feature:settings | ||
:mifospay-shared --> :feature:faq | ||
:mifospay-shared --> :feature:editpassword | ||
:mifospay-shared --> :feature:profile | ||
:mifospay-shared --> :feature:history | ||
:mifospay-shared --> :feature:payments | ||
:mifospay-shared --> :feature:finance | ||
:mifospay-shared --> :feature:accounts | ||
:mifospay-shared --> :feature:invoices | ||
:mifospay-shared --> :feature:kyc | ||
:mifospay-shared --> :feature:notification | ||
:mifospay-shared --> :feature:savedcards | ||
:mifospay-shared --> :feature:receipt | ||
:mifospay-shared --> :feature:standing-instruction | ||
:mifospay-shared --> :feature:request-money | ||
:mifospay-shared --> :feature:send-money | ||
:mifospay-shared --> :feature:make-transfer | ||
:mifospay-shared --> :feature:qr | ||
:mifospay-shared --> :feature:merchants | ||
:mifospay-shared --> :feature:upi-setup | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,22 @@ | ||
To run in web mode, choose the `mifospay-web-js` or `mifospay-web-wasm` profile and click run. | ||
### Module Graph | ||
|
||
_When running as WasmJs it will take some time to compile the webpack, so be patient._ | ||
```mermaid | ||
%%{ | ||
init: { | ||
'theme': 'neutral' | ||
} | ||
}%% | ||
graph LR | ||
subgraph :core | ||
:core:common["common"] | ||
:core:data["data"] | ||
:core:model["model"] | ||
:core:datastore["datastore"] | ||
end | ||
:mifospay-web --> :mifospay-shared | ||
:mifospay-web --> :core:common | ||
:mifospay-web --> :core:data | ||
:mifospay-web --> :core:model | ||
:mifospay-web --> :core:datastore | ||
``` |