-
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
Add landing page with table to Visualize app. #9605
Merged
cjcenizal
merged 31 commits into
elastic:master
from
cjcenizal:feature/visualize-landing-page-table
Feb 6, 2017
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
5778951
Refactor Visualize Wizard to use explicit controller names, instead o…
cjcenizal 5a5eecb
Add landing page with table to Visualize app.
cjcenizal 1dbffd1
Add kuiIcon--basic and support icons in Table component. Display icon…
cjcenizal f69df4c
Fix bug with vertical alignment in Table cells.
cjcenizal 8ca2faf
Change Visualize menu items: New goes to landing page, Open goes to w…
cjcenizal e674f6c
Move visualize/landing route to live at visualize/ instead.
cjcenizal b129af5
Refactor Visualize Wizard templates to use import syntax.
cjcenizal 94afb6f
Set kuiViewContent width to 100% to avoid it shrink wrapping its cont…
cjcenizal 6a66f6f
Move ToolBar buttons to the right side. Remove labels and add tooltips.
cjcenizal 5a720c9
Fix functional tests for Visualize, to work with new landing page.
cjcenizal b010488
Remove unused Visualize load menu template.
cjcenizal a1f737f
Remove Edit link from Visualization listing.
cjcenizal ca4adc3
Disable timepicker in Visualization listing.
cjcenizal 50e2da7
Add basic Icon example. Fix Visualize Wizard titles and layout.
cjcenizal 5625264
Remove icon cells from Table component. Fix Visualize landing table h…
cjcenizal 93c9533
Change Visualize route names. Add omitPages attribute to breadcrumbs …
cjcenizal f243762
Remove Open and New menu buttons from Visualize.
cjcenizal d0325ba
Add ConfirmationModal for deleting visualizations.
cjcenizal 39ed424
Implement sorting for name and type columns in Visualize listing.
cjcenizal 43ceb6e
Refactor Visualize routes into VisualizeConstants file. Fix functiona…
cjcenizal d1d3da7
Add pager_controls directive and pager service. Add pagination to Das…
cjcenizal 880b7b4
Add Basic Icon example.
cjcenizal 668d598
Use ng-if instead of ng-hide to hide/reveal Table action buttons in D…
cjcenizal 99525ac
Redirect from old Visualize wizard routes to new ones.
cjcenizal 734c85b
Use ViewContent and Title components in Visualize wizard.
cjcenizal de4f7b4
Fix Visualize and Dashboard listing table logic so that selection onl…
cjcenizal 10dbff6
- Fix Visualize wizard breadcrumbs.
cjcenizal 6eeeab6
Rename pagerService factory to pagerFactory.
cjcenizal 438f5c4
Minor code style improvements.
cjcenizal 794b18c
Use inject dependencies in Visualize and Dashboard listing.
cjcenizal af07fa7
Update Dashboard and Visualize constants to use PATH suffix instead o…
cjcenizal 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
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
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.
Awesome! Only one issue is that if you select all, looks like it selects everything, not just the first page, so if you do select all and delete, it'll delete everything. I don't think this is what we want.
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.
I agree with @stacey-gammon. The way I see it, you shouldn't be able to select items that are not visible. This would also mean that changing the page would clear previously selected items.
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.
Great catch! Thanks, will update.