-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Lens] Basic save / load #39257
Merged
chrisdavies
merged 25 commits into
elastic:feature/lens
from
chrisdavies:lens/basic-save-load
Jun 28, 2019
Merged
[Lens] Basic save / load #39257
Changes from 10 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
315da75
Add basic routing, save and load to lens
chrisdavies 4a27cb5
Move title editing to editor frame
chrisdavies 5e88843
Allow undefined documents in Lens initialize
chrisdavies 7027fbd
Add file lost in rebase
chrisdavies 8e05f3f
Remove accidental leftover file
chrisdavies f78e9d0
Rename lensState to state
chrisdavies be86b07
Address PR feedback, remove Lens
chrisdavies df3967b
Merge branch 'feature/lens' of github.com:elastic/kibana into lens/ba…
chrisdavies 4a9280e
Add lens documents to the saved object management system
chrisdavies 7d4eb89
Merge branch 'lens/basic-save-load' of github.com:chrisdavies/kibana …
chrisdavies 043bf65
Merge branch 'feature/lens' of github.com:elastic/kibana into lens/ba…
chrisdavies 467efba
Fix chart title localization key
chrisdavies a80d2d1
Ensure datasource and visualization are always
chrisdavies 6a89956
Add error handling, more tests, tweaked names
chrisdavies e8c3fb0
Merge branch 'feature/lens' of github.com:elastic/kibana into lens/ba…
chrisdavies 1433675
Fix TypeScript errors
chrisdavies 0a58e2d
Remove commented code
chrisdavies 9a286dc
Remove randomization from tests
chrisdavies bba3d80
Use global toast notification system
chrisdavies 8d7741c
Change saving status actions
chrisdavies 90ce425
Merge upstream
chrisdavies 3a68367
Fix typescript errors
chrisdavies 6ba71ab
Merge upstream
chrisdavies 0007bd1
Improve styling a bit
chrisdavies e4351de
Fix typescript errors
chrisdavies File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"lens": { | ||
"properties": { | ||
"title": { | ||
"type": "text" | ||
}, | ||
"visualizationType": { | ||
"type": "keyword" | ||
}, | ||
"datasourceType": { | ||
"type": "keyword" | ||
}, | ||
"state": { | ||
"type": "text" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like you're trying to prevent a race condition here, right?