Skip to content

Commit

Permalink
[Graph] App state management (#46133)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored Oct 4, 2019
1 parent 7e77e0b commit 9cf13c9
Show file tree
Hide file tree
Showing 36 changed files with 1,527 additions and 787 deletions.
10 changes: 5 additions & 5 deletions x-pack/legacy/plugins/graph/public/angular/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@

<graph-app
current-index-pattern="selectedIndex"
on-index-pattern-selected="uiSelectIndex"
on-query-submit="submit"
index-pattern-provider="indexPatternProvider"
redux-store="reduxStore"
confirm-wipe-workspace="confirmWipeWorkspace"
is-loading="loading"
is-initialized="!!workspace || savedWorkspace.id"
is-initialized="workspaceInitialized || savedWorkspace.id"
initial-query="initialQuery"
state="reduxState"
dispatch="reduxDispatch"
on-fill-workspace="fillWorkspace"
autocomplete-start="autocompleteStart"
core-start="coreStart"
store="store"
></graph-app>

<div class="gphGraph__container" id="GraphSvgContainer" ng-if="workspace">
<div class="gphGraph__container" id="GraphSvgContainer" ng-if="workspaceInitialized || savedWorkspace.id">
<graph-visualization
nodes="workspace.nodes"
edges="workspace.edges"
Expand Down
Loading

0 comments on commit 9cf13c9

Please sign in to comment.