mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
22 lines
1.1 KiB
Text
22 lines
1.1 KiB
Text
|
flowchart TB
|
||
|
%% Documentation: https://mermaid-js.github.io/mermaid/#/flowchart
|
||
|
A(("/start")):::entryPoint -->|Hi! My name is Professor Bot...| B((GENDER)):::state
|
||
|
B --> |"- Boy <br /> - Girl <br /> - Other"|C("(choice)"):::userInput
|
||
|
C --> |I see! Please send me a photo...| D((PHOTO)):::state
|
||
|
D --> E("/skip"):::userInput
|
||
|
D --> F("(photo)"):::userInput
|
||
|
E --> |I bet you look great!| G[\ /]:::userInput
|
||
|
F --> |Gorgeous!| G[\ /]
|
||
|
G --> |"Now, send me your location .."| H((LOCATION)):::state
|
||
|
H --> I("/skip"):::userInput
|
||
|
H --> J("(location)"):::userInput
|
||
|
I --> |You seem a bit paranoid!| K[\" "/]:::userInput
|
||
|
J --> |Maybe I can visit...| K
|
||
|
K --> |"Tell me about yourself..."| L(("BIO")):::state
|
||
|
L --> M("(text)"):::userInput
|
||
|
M --> |"Thanks and bye!"| End(("END")):::termination
|
||
|
classDef userInput fill:#2a5279, color:#ffffff, stroke:#ffffff
|
||
|
classDef state fill:#222222, color:#ffffff, stroke:#ffffff
|
||
|
classDef entryPoint fill:#009c11, stroke:#42FF57, color:#ffffff
|
||
|
classDef termination fill:#bb0007, stroke:#E60109, color:#ffffff
|