pgAdmin 4 commit: Replace Alertify alert and confirm with React-based m - Mailing list pgadmin-hackers

From Akshay Joshi
Subject pgAdmin 4 commit: Replace Alertify alert and confirm with React-based m
Date
Msg-id E1muaQh-0004G1-Kg@gothos.postgresql.org
Whole thread Raw
List pgadmin-hackers
Replace Alertify alert and confirm with React-based model dialog. Fixes #7053

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=fd53e4f5f902bf406dbebbed6cd3acc247eeb663

Modified Files
--------------
docs/en_US/release_notes_6_3.rst                   |  1 +
.../static/js/exclusion_constraint.ui.js           |  4 +-
.../schemas/tables/indexes/static/js/index.ui.js   |  4 +-
.../tables/partitions/static/js/partition.js       |  6 +-
.../databases/schemas/tables/static/js/table.js    |  4 +-
.../databases/schemas/tables/static/js/table.ui.js |  6 +-
.../databases/schemas/views/static/js/mview.js     |  8 +-
.../servers/databases/static/js/database.js        |  4 +-
.../subscriptions/static/js/subscription.js        |  6 +-
.../server_groups/servers/roles/static/js/role.js  |  4 +-
.../server_groups/servers/static/js/server.js      | 21 +++--
.../servers/tablespaces/static/js/tablespace.js    |  2 +-
web/pgadmin/browser/static/js/browser.js           | 23 ++----
web/pgadmin/browser/static/js/collection.js        |  4 +-
web/pgadmin/browser/static/js/error.js             |  8 +-
web/pgadmin/browser/static/js/node.js              | 28 +++----
web/pgadmin/browser/static/js/node_view.jsx        | 10 +--
web/pgadmin/dashboard/static/js/dashboard.js       |  2 +-
web/pgadmin/feature_tests/query_tool_tests.py      |  5 +-
.../xss_checks_pgadmin_debugger_test.py            | 12 ++-
web/pgadmin/preferences/static/js/preferences.js   | 24 +++---
web/pgadmin/settings/static/js/settings.js         |  8 +-
web/pgadmin/static/js/SchemaView/index.jsx         | 33 +++++---
web/pgadmin/static/js/backgrid.pgadmin.js          | 12 +--
web/pgadmin/static/js/helpers/ModalProvider.jsx    |  5 +-
web/pgadmin/static/js/helpers/Notifier.jsx         | 62 +++++++-------
web/pgadmin/static/js/helpers/legacyConnector.js   |  9 +--
web/pgadmin/static/js/selection/clipboard.js       |  6 +-
web/pgadmin/static/js/sqleditor/filter_dialog.js   |  2 +-
web/pgadmin/static/js/sqleditor/macro.js           |  2 +-
web/pgadmin/static/js/sqleditor/macro_model.js     |  4 +-
.../static/js/sqleditor/new_connection_dialog.js   |  2 +-
web/pgadmin/static/js/tree/tree_utils.js           | 11 +--
web/pgadmin/static/js/utils.js                     |  7 +-
web/pgadmin/tools/backup/static/js/backup.js       |  8 +-
web/pgadmin/tools/datagrid/static/js/datagrid.js   |  2 +-
.../datagrid/static/js/datagrid_panel_title.js     |  4 +-
web/pgadmin/tools/datagrid/static/js/show_data.js  | 21 +++--
.../tools/datagrid/static/js/show_query_tool.js    | 19 ++---
web/pgadmin/tools/debugger/static/js/debugger.js   | 12 +--
.../tools/debugger/static/js/debugger_ui.js        | 14 ++--
web/pgadmin/tools/debugger/static/js/direct.js     | 74 ++++++++---------
web/pgadmin/tools/erd/static/js/erd_module.js      |  6 +-
.../js/erd_tool/ui_components/BodyWidget.jsx       | 21 ++---
.../tools/import_export/static/js/import_export.js | 10 +--
.../tools/maintenance/static/js/maintenance.js     | 12 +--
web/pgadmin/tools/psql/static/js/psql_module.js    | 12 +--
.../tools/restore/static/js/restore_dialog.js      |  9 ++-
.../restore/static/js/restore_dialog_wrapper.js    |  7 +-
.../tools/schema_diff/static/js/schema_diff_ui.js  |  8 +-
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 94 +++++++++-------------
.../user_management/static/js/user_management.js   | 14 ++--
web/regression/feature_utils/pgadmin_page.py       | 23 ++++--
.../javascript/SchemaView/SchemaView.spec.js       | 16 ++--
.../javascript/datagrid/show_data_spec.js          |  5 +-
.../javascript/datagrid/show_query_tool_spec.js    | 16 ++--
.../erd/ui_components/body_widget_spec.js          |  4 +-
.../javascript/restore/restore_dialog_spec.js      | 12 +--
.../restore/restore_dialog_wrapper_spec.js         |  7 +-
.../exclusion_constraint.ui.spec.js                |  4 +-
.../javascript/schema_ui_files/table.ui.spec.js    |  4 +-
.../search_objects/search_objects_dialog_spec.js   |  4 +-
62 files changed, 393 insertions(+), 398 deletions(-)


pgadmin-hackers by date:

Previous
From: Rahul Shirsat
Date:
Subject: [patch][pgAdmin] RM7029 The PGv14 SQL FUNCTION syntax of RETURN or BEGIN ATOMIC is not recognized nor displayed
Next
From: Akshay Joshi
Date:
Subject: pgAdmin 4 commit: Correct the SQL definition for function/procedure wit