pgAdmin 4 commit: Remove the large and unnecessary dependency on React

From: Dave Page <dpage(at)pgadmin(dot)org>
To: pgadmin-hackers(at)lists(dot)postgresql(dot)org
Subject: pgAdmin 4 commit: Remove the large and unnecessary dependency on React
Date: 2019-03-07 10:52:05
Message-ID: E1h1qdB-0001o9-Og@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Remove the large and unnecessary dependency on React and 87 other related libraries. Fixes #4018

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=4b895941b337925e95d32cef39a44d80c232cc0e
Author: Aditya Toshniwal <aditya(dot)toshniwal(at)enterprisedb(dot)com>

Modified Files
--------------
docs/en_US/release_notes_4_4.rst | 1 +
libraries.txt | 360 ++--
web/.eslintrc.js | 3 -
web/karma.conf.js | 6 +-
web/package.json | 13 +-
.../{ => sqleditor}/history/history_collection.js | 14 +-
.../static/js/sqleditor/history/query_history.js | 81 +
.../js/sqleditor/history/query_history_details.js | 177 ++
.../js/sqleditor/history/query_history_entries.js | 230 ++
.../static/js/sqleditor/query_tool_preferences.js | 4 +-
.../static/jsx/history/detail/code_mirror.jsx | 66 -
.../jsx/history/detail/history_detail_message.jsx | 33 -
.../jsx/history/detail/history_detail_metadata.jsx | 42 -
.../jsx/history/detail/history_detail_query.jsx | 76 -
.../jsx/history/detail/history_error_message.jsx | 32 -
web/pgadmin/static/jsx/history/query_history.jsx | 121 --
.../static/jsx/history/query_history_detail.jsx | 52 -
.../static/jsx/history/query_history_entries.jsx | 157 --
.../static/jsx/history/query_history_entry.jsx | 59 -
.../jsx/history/query_history_entry_date_group.jsx | 47 -
web/pgadmin/static/jsx/react_shapes.jsx | 37 -
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 37 +-
.../tools/sqleditor/static/scss/_history.scss | 35 +-
web/regression/javascript/code_mirror_spec.jsx | 68 -
web/regression/javascript/helper/enzyme.helper.js | 13 -
.../javascript/history/history_collection_spec.js | 16 +-
...uery_history_spec.jsx => query_history_spec.js} | 271 +--
web/webpack.config.js | 6 +-
web/webpack.shim.js | 1 -
web/webpack.test.config.js | 8 +-
web/yarn.lock | 2187 +-------------------
31 files changed, 790 insertions(+), 3463 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2019-03-07 10:53:37 Re: [pgAdmin4][RM4018] Technical debt: Rewrite the Query Tool history and related tests to remove dependency on React
Previous Message Aditya Toshniwal 2019-03-07 09:45:50 [pgAdmin4][RM4018] Technical debt: Rewrite the Query Tool history and related tests to remove dependency on React