Last active
February 28, 2020 12:28
-
-
Save okonet/8386a2e6f85b93108acffc389f88cd5d to your computer and use it in GitHub Desktop.
Pattern Journey
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
Pattern Journey | |
Pattern exists in the UI library?* | |
Yes -> Does it fulfill all the requirements? | |
No -> Similar pattern exists in other projects? | |
Does it fulfill all the requirements? | |
Yes -> Just use it | |
No -> Can be modified to fulfill all requirements? | |
Similar pattern exists in other projects? | |
Yes -> Can the existed pattern be used? | |
No -> Can be used by other projects in the future? | |
Can be modified to fulfill all requirements? | |
Yes -> Implement in the UI library | |
No -> Other teams ready to use altered version? | |
Other teams ready to use altered version? | |
Yes -> Implement in the UI library | |
No -> Implement in the project | |
Can be used by other projects in the future? | |
Yes -> Implement in the UI library | |
No -> Implement in the project | |
Can the existed pattern be used? | |
Yes -> Implement in the UI library | |
No -> Other teams ready to use altered version? | |
Implement in the UI library | |
Implement in the project | |
Just use it | |
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