codeintellify icon indicating copy to clipboard operation
codeintellify copied to clipboard

Add mermaid diagram to README

Open felixfbecker opened this issue 7 years ago • 0 comments
trafficstars

I took a stab at modelling the current and desired state so we can include it in the README:

graph LR
  State --> CodeView[Code view]
  CodeView --renders with state--> HoverOverlay
  CodeView --passes events--> locateTarget
  subgraph Hoverifier
  locateTarget --> fetching[Hover and Definition Fetching]
  fetching --> State
  end
graph LR
  State --> CodeView[Code view]
  CodeView --renders with state--> HoverOverlay
  HoverOverlay --> Highlight[Highlight box]
  CodeView --passes events--> PositionLogic[Position logic]
  PositionLogic --returns positions--> CodeView
  CodeView --passes positions--> fetching[Hover and Definition Fetching]
  subgraph State Management
  fetching --> State
  end

@ijsnow are these accurate?

felixfbecker avatar Jul 04 '18 02:07 felixfbecker