Skip to content

Instantly share code, notes, and snippets.

@sulram
Last active March 1, 2020 20:46
Show Gist options
  • Save sulram/092b52c610953bae9b58618356f31731 to your computer and use it in GitHub Desktop.
Save sulram/092b52c610953bae9b58618356f31731 to your computer and use it in GitHub Desktop.
FLOWING EDITOR&
FLOWING EDITOR&
Navigation
Idle
nodeMouseDown -> Node Wait
canvasMouseDown -> Canvas Wait
choiceMouseDown -> Choice Wait
Node Wait
moved? -> Drag Node
stay? -> Idle
Canvas Wait
moved? -> Drag Node
stay? -> Idle
Choice Wait
moved? -> Drag Node
stay? -> Idle
Drag Node
nodeMouseUp -> Idle
Drag Canvas
canvasMouseUp -> Idle
Drag Connection
choiceMouseUpCanvas -> Idle
choiceMouseUpOtherNode -> Idle
Inspector
Null Selection
nodeClick -> Node Info
choiceClick -> Choice Info
Node Info
canvasClick -> Null Selection
Null Choice*
choiceClick -> Choice Info
Choice Info
close -> Null Choice
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