Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dashboard] Rebuild State Management #97941

Merged
merged 39 commits into from
Jun 7, 2021
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
6c3df10
Rebuilding dashboard state with RTK. Most features complete
ThomThomson Apr 19, 2021
a5fe8fb
Fixed clone code to avoid read only. Changed DashboardState to use a …
ThomThomson Apr 21, 2021
4cef541
Removed unused translations. Fixed attribute service getInputAsRefSta…
ThomThomson Apr 22, 2021
156f8af
type fixes & Test fixed before merge upstream
ThomThomson Apr 26, 2021
6a22890
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson Apr 26, 2021
a5d47d7
Better diffing for options and panels
ThomThomson Apr 27, 2021
bb5bb67
moved onQuerySubmit into dashboard top nav, fixed types, fixed query …
ThomThomson Apr 28, 2021
6f33fba
removed unused savedQueryUpdated code
ThomThomson Apr 28, 2021
7ef39f0
enable stay in edit mode on save as
ThomThomson Apr 28, 2021
6585e65
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson Apr 28, 2021
46dbda5
update yarn lock
ThomThomson Apr 28, 2021
e996de8
Wrote Jest tests for use dashboard app state. Used replace to prevent…
ThomThomson Apr 30, 2021
7d06010
renamed load_dashboard_url_state. fixes for functional test failures
ThomThomson Apr 30, 2021
0714506
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 4, 2021
c18a976
always restore panels in session. Fix maps test
ThomThomson May 4, 2021
bb36b7e
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 6, 2021
fdde609
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 10, 2021
2eeef0a
undo small change to save_and_return.js
ThomThomson May 11, 2021
997c6b0
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 11, 2021
f5f0aac
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 14, 2021
02d19ef
Merge branch 'master' into feature/dashboardRedux
kibanamachine May 17, 2021
127e143
workaround for flaky map test
ThomThomson May 17, 2021
2358381
wrap initial dashboard state in function to prevent recreation of Sub…
ThomThomson May 17, 2021
0ea212e
Save dashboard before saving session to avoid cache miss
ThomThomson May 18, 2021
e177a96
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 18, 2021
5dc8329
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 19, 2021
17b7de9
Fix missing provider from merge
ThomThomson May 19, 2021
bd62d72
Merge branch 'master' into feature/dashboardRedux
kibanamachine May 19, 2021
6c23f35
Merge branch 'master' into feature/dashboardRedux
kibanamachine May 25, 2021
b7449b4
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson May 27, 2021
0f801a9
More comments and restructuring
ThomThomson May 28, 2021
60fd0b2
Move buildContext inside use effect
ThomThomson May 28, 2021
8e57524
More comments
ThomThomson May 28, 2021
d365721
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson Jun 2, 2021
d684de5
eslint fix
ThomThomson Jun 2, 2021
3f18fba
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson Jun 3, 2021
d9b2367
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson Jun 3, 2021
f9b828a
update dashboard_state test
ThomThomson Jun 4, 2021
769d65a
Merge branch 'master' of github.com:elastic/kibana into feature/dashb…
ThomThomson Jun 7, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
"@mapbox/mapbox-gl-draw": "^1.2.0",
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
"@mapbox/vector-tile": "1.3.1",
"@reduxjs/toolkit": "^1.5.1",
"@scant/router": "^0.1.1",
"@slack/webhook": "^5.0.4",
"@turf/along": "6.0.1",
Expand Down Expand Up @@ -739,6 +740,7 @@
"jest-cli": "^26.6.3",
"jest-diff": "^26.6.2",
"jest-environment-jsdom": "^26.6.2",
"jest-environment-jsdom-thirteen": "^1.0.1",
"jest-raw-loader": "^1.0.1",
"jest-silent-reporter": "^0.5.0",
"jest-snapshot": "^26.6.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@
* Side Public License, v 1.
*/

import { dashboardExpandPanelAction } from '../../dashboard_strings';
import { DashboardContainerInput } from '../..';
import { IEmbeddable } from '../../services/embeddable';
import { dashboardExpandPanelAction } from '../../dashboard_strings';
import { Action, IncompatibleActionError } from '../../services/ui_actions';
import {
DASHBOARD_CONTAINER_TYPE,
DashboardContainer,
DashboardContainerInput,
} from '../embeddable';
import { DASHBOARD_CONTAINER_TYPE, DashboardContainer } from '../embeddable';

export const ACTION_EXPAND_PANEL = 'togglePanel';

Expand Down
Loading