Skip to content

Commit bdc02a3

Browse files
authored
chore: add flow diagram
1 parent 71e8c0d commit bdc02a3

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

README.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,55 @@ Descripción de la aplicación móvil operativa del transporte público compatib
1111
- [Figma](https://www.figma.com/proto/ycNjVgCw07pfJcLdXdWEeK/bUCR?node-id=91-1859&t=x2cUCvlbCoUTnBEd-1): Prototipo de la aplicación móvil
1212
- [Google Sheets](https://docs.google.com/spreadsheets/d/1fmHEGEc7xYAvA4p_RRfGVPQrZNYWkDINNFxcZWkvaqI/edit?usp=sharing): Acciones y _endpoints_ de la API
1313
- [Databús API](https://databus.bucr.digital/api/docs/): Documentación de la API de Databús
14+
15+
## Algo aquí
16+
17+
```mermaid
18+
flowchart TD
19+
Splash
20+
IsLoggedIn
21+
Login
22+
subgraph TABS
23+
Home
24+
Runs
25+
Alerts
26+
Profile
27+
end
28+
subgraph HOME
29+
subgraph HOME-SEGMENTS
30+
Info
31+
History
32+
end
33+
end
34+
subgraph RUNS
35+
subgraph MODAL
36+
RunSetup
37+
end
38+
RunProgress
39+
end
40+
subgraph ALERTS
41+
subgraph ALERTS-SEGMENTS
42+
ActiveAlerts
43+
Messages
44+
end
45+
end
46+
subgraph PROFILE
47+
ProfileInfo
48+
subgraph PM[MODAL]
49+
EditProfile
50+
end
51+
end
52+
53+
Splash --> IsLoggedIn
54+
IsLoggedIn --"yes"--> TABS
55+
IsLoggedIn --"no"--> Login
56+
Login --> TABS
57+
58+
Home --> HOME
59+
Runs --> RUNS
60+
Alerts --> ALERTS
61+
Profile --> PROFILE
62+
63+
RunSetup --> RunProgress
64+
ProfileInfo --> EditProfile
65+
```

0 commit comments

Comments
 (0)