Skip to content

Commit

Permalink
Migrate Query pages to React (#4429)
Browse files Browse the repository at this point in the history
* Migrate Query Source View page to React: skeleton

* Sync QueryView and QuerySource (#4430)

* Migrate schema browser to react (#4432)

* Restyle code with Prettier

* Migrate Query page to React: Save changes (#4452)

* Migrate query source to React: Set of updates (#4457)

* Migrate Query page to React: Visualization Tabs (#4453)

Co-Authored-By: Levko Kravets <[email protected]>

* Migrate Query Source page to React: Visualizations area (#4463)

* Migrate Query page to React: Delete visualization button (#4461)

* Migrate Query Source page to React: Visualization actions (#4467)

* Migrate Query pages to React: Execute query hook (#4470)

* Migrate Query Source page to React: Editor area (#4468)

* Migrate Query Source page to React: metadata, schedule and description blocks (#4476)

* Migrate Query page to React: Cancel query execution (#4496)

* Migrate Query Source page to React: refine code (#4499)

* Migrate Query Source page to React: alerts (#4504)

* Migrate Query Source page to React: unsaved changes alert (#4505)

* Migrate Query Source to React: resizable areas (v2) (#4503)

* Migrate Query page to React: Query View (#4455)

Co-authored-by: Levko Kravets <[email protected]>

* Switch React and Angular versions of pages (until Angular version removed)

* Migrate Query pages to React: fix permissions (#4506)

* Migrate Query Source page to React: don't reload when saving new query (#4507)

* Migrate Query pages to React: fix tests (#4509)

* Use skipParametersDirtyFlag in executeQuery

* Fix: cannot fork query from Query View page

* Optimize query editor: handle query text changes faster

* Revert "Optimize query editor: handle query text changes faster"

This reverts commit 2934e53.

* Reduce debounced time to 100

* Migrate Query pages to React: cleanup (#4512)

* Migrate Query pages to React: cleanup

* Further cleanup

* Remove unused dependencies

* Fix embed pages

* Attempt to fix flaky test

* Cleanup: explicitly register the last Angular component

* Move contents of /filters folder to /lib

* Remove unnecessary import

* Remove cy.wait from Parameters spec

Co-authored-by: Gabriel Dutra <[email protected]>

Co-authored-by: Levko Kravets <[email protected]>
  • Loading branch information
gabrieldutra and kravets-levko committed Jan 6, 2020
1 parent fc9e8fe commit 99c276f
Show file tree
Hide file tree
Showing 149 changed files with 3,919 additions and 3,124 deletions.
295 changes: 162 additions & 133 deletions client/app/assets/less/inc/base.less

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions client/app/assets/less/inc/schema-browser.less
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ div.table-name {
overflow-x: hidden;
border: none;
margin-top: 10px;
position: relative;
height: 100%;

.collapse.in {
background: transparent;
Expand Down Expand Up @@ -72,8 +74,14 @@ div.table-name {

.schema-control {
display: flex;
flex-wrap: nowrap;
padding: 0;

.ant-btn {
height: auto;
}

// ANGULAR_REMOVE_ME
.form-control {
margin-right: 5px;
}
Expand Down
146 changes: 0 additions & 146 deletions client/app/assets/less/inc/tab.less

This file was deleted.

3 changes: 0 additions & 3 deletions client/app/assets/less/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

/** Load Vendors Dependencies **/
@import '~font-awesome/less/font-awesome';
@import '~ui-select/dist/select.css';
@import '~angular-resizable/src/angular-resizable.css';
@import '~material-design-iconic-font/dist/css/material-design-iconic-font.css';
@import '~pace-progress/themes/blue/pace-theme-minimal.css';

Expand Down Expand Up @@ -35,7 +33,6 @@
@import 'inc/alert';
@import 'inc/media';
@import 'inc/modal';
@import 'inc/tab';
@import 'inc/panel';
@import 'inc/tooltips';
@import 'inc/popover';
Expand Down
Loading

0 comments on commit 99c276f

Please sign in to comment.