Skip to content

Instantly share code, notes, and snippets.

@edgerunner
Last active April 17, 2019 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edgerunner/3a6c7e052a0b6b2d2fdecfa1819f6565 to your computer and use it in GitHub Desktop.
Save edgerunner/3a6c7e052a0b6b2d2fdecfa1819f6565 to your computer and use it in GitHub Desktop.
Analysis
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
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