Last active
March 1, 2019 07:27
-
-
Save osdiab/3d5f1ac8bf817bb16fa4154520a4c092 to your computer and use it in GitHub Desktop.
Email Task App
This file contains hidden or 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
Email Task App | |
Splash Page* | |
login -> Inbox | |
Inbox& | |
Thread List | |
Inbox Instance* | |
Drafts | |
select draft -> Go To Message? | |
Inbox has messages | |
select thread -> Thread | |
compose thread -> New Thread | |
Thread* | |
archive -> Inbox Empty? | |
dismiss -> Inbox Empty? | |
View Message | |
compose reply -> New Reply or Forward | |
New Reply or Forward | |
send -> Thread | |
discard -> Thread | |
dismiss -> Thread | |
Inbox Zero | |
Inbox Empty?* | |
messages remaining? -> Thread | |
no messages remaining? -> Inbox Zero | |
Go To Message? | |
is new thread -> New Thread | |
is new reply -> New Reply or Forward | |
New Thread | |
send -> Inbox | |
discard -> Inbox | |
save draft -> Drafts | |
Sidebar | |
select inbox -> Inbox Instance | |
create bundle -> Create Bundle | |
Create Bundle | |
submit new bundle data -> Inbox Empty? | |
This file contains hidden or 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