Last active
April 13, 2020 11:18
-
-
Save 0xtmphey/ce6f118694795e8e950011ee86372831 to your computer and use it in GitHub Desktop.
Open App
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
Open App | |
from home screen -> Is user authorized? | |
from email or deep link -> Email link type | |
Root | |
Logged Out | |
Is user authorized? | |
Yes -> Logged In | |
No -> Splash | |
Email link type | |
Reservation link -> LoggedOut-KYC | |
Reset password link -> -Set Password | |
Splash | |
tap find appointment -> Find Appointment | |
tap login -> Log in | |
tap sign up -> Sign up | |
Log in | |
sucessfully logged in -> Home | |
forgot password -> Recover Password | |
Sign up | |
sucessfully singed up -> Home | |
Phone Verification | |
Fill Personal Info | |
Upload Picture | |
Find Appointment | |
found an appointment -> LoggedOut-KYC | |
Recover Password | |
email sent -> Log in | |
-Set Password | |
Logged In | |
SideMenu | |
Home | |
Profile | |
Payment Methods | |
Appointments | |
Appointment List | |
Appointment Details | |
Edit Appointment | |
Support | |
Book Appointment | |
Select Barbershop | |
select -> Select Barber | |
Select Barber | |
select -> Select Services | |
Select Services | |
select -> Select Time | |
Select Time | |
select -> Set Tip | |
Set Tip | |
set tip -> Apply Promo Code | |
Apply Promo Code | |
confirm -> Appointment Details | |
LoggedOut-KYC |
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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment