Last active
April 17, 2019 11:39
-
-
Save edgerunner/3a6c7e052a0b6b2d2fdecfa1819f6565 to your computer and use it in GitHub Desktop.
Analysis
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
Analysis | |
Coming from? | |
from cow preview? -> Onion | |
from cowlist? -> Heatmaps | |
Heatmaps& | |
View | |
Empty | |
Maps | |
close all columns -> Empty | |
Just viewing | |
start selection -> Selecting range | |
Selecting range | |
complete selection -> Onion | |
focus search box -> Just viewing | |
Search | |
Idle | |
Focused | |
input search -> Searching | |
Unfocused* | |
focus search box -> Focused | |
Searching | |
select result -> Maps | |
Onion | |
close onion page -> Maps | |
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 fullname = (s) => s.parent ? `${fullname(s.parent)}:${s.name}` : `${s.name}`; | |
let current_state_names = model.active_states.map(fullname); | |
return current_state_names.map(sn => <h1>{sn}</h1>); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment