pgAdmin 4 commit: 1) Port Grant Wizard to react. Fixes #6687

From: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
To: pgadmin-hackers(at)lists(dot)postgresql(dot)org
Subject: pgAdmin 4 commit: 1) Port Grant Wizard to react. Fixes #6687
Date: 2021-09-20 07:36:05
Message-ID: E1mSDqP-0002Ax-BJ@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

1) Port Grant Wizard to react. Fixes #6687
2) Fixed an issue where grant wizard is unresponsive if the database size is huge. Fixes #2097

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=7aa213a5cef9a4442f037e832635953997973835
Author: Nikhil Mohite <nikhil(dot)mohite(at)enterprisedb(dot)com>

Modified Files
--------------
docs/en_US/grant_wizard.rst | 10 +-
docs/en_US/images/grant_wizard_step1.png | Bin 43337 -> 61164 bytes
docs/en_US/images/grant_wizard_step2.png | Bin 49232 -> 67159 bytes
docs/en_US/images/grant_wizard_step3.png | Bin 54810 -> 81523 bytes
docs/en_US/release_notes_6_0.rst | 2 +
web/package.json | 2 +
.../servers/static/js/privilege.ui.js | 6 +-
web/pgadmin/browser/static/css/wizard.css | 15 +
web/pgadmin/browser/static/js/PgTable.jsx | 285 +++++
web/pgadmin/browser/static/js/WizardStep.jsx | 44 +
web/pgadmin/browser/static/js/WizardView.jsx | 196 ++++
web/pgadmin/browser/static/js/table.jsx | 0
.../tools/grant_wizard/static/js/grantWizard.jsx | 383 +++++++
.../tools/grant_wizard/static/js/grant_wizard.js | 1140 +-------------------
.../grant_wizard/static/js/privilege_schema.ui.js | 34 +
.../grant_wizard/static/scss/_grant_wizard.scss | 14 +
.../javascript/grant_wizard/wizard_spec.js | 58 +
.../schema_ui_files/grant_wizard.ui.spec.js | 64 ++
web/yarn.lock | 22 +-
19 files changed, 1176 insertions(+), 1099 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Rahul Shirsat 2021-09-20 07:36:16 Re: [patch][pgAdmin] RM6744 Unable to delete rows for Enum type in Create Type dialogue
Previous Message Nikhil Mohite 2021-09-20 06:07:25 [pgAdmin][patch]: Password field issue.