You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by im...@apache.org on 2021/07/09 16:37:15 UTC

[oodt] branch development updated (f62d845 -> 14a315d)

This is an automated email from the ASF dual-hosted git repository.

imesha pushed a change to branch development
in repository https://gitbox.apache.org/repos/asf/oodt.git.


    from f62d845  Merge branch 'development' of https://github.com/apache/oodt into development
     new 24f05fc  create a single connection store and add jsconfig
     new c40b591  remove additonal components folder in filemanager folder
     new e78011e  remove additional components folder in workflowmanager folder
     new ef5a0a5  update dependencies
     new a8abff7  improve UI and product searching UX
     new 18719c3  search products on click of the search icon
     new 53ff077  remove passing API base URLs as props
     new b9e3954  remove unused files
     new 561373a  Create .env.development
     new 9410b49  use environment variables as base URLs
     new 97d26db  Update connection.js
     new 14a315d  Merge pull request #121 from pavinduLakshan/oodt-1035

The 2128 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../oodt_opsui_sample_app/.env.development         |     2 +-
 .../oodt_opsui_sample_app/jsconfig.json            |     8 +
 .../oodt_opsui_sample_app/package-lock.json        | 27463 ++++++++++---------
 .../oodt_opsui_sample_app/package.json             |    12 +-
 react-components/oodt_opsui_sample_app/src/App.js  |    32 +-
 .../src/components/ComponentStatus.js              |    19 +-
 .../src/components/SearchBar.js                    |     8 +-
 .../src/components/fileManager/Product/Product.js  |   267 +
 .../fileManager/{components => }/Product/index.js  |     2 +-
 .../ProductIngest/ProductIngest.js                 |     2 +-
 .../{components => }/ProductIngest/index.js        |     2 +-
 .../ProductIngestWithMetaFile.js                   |     2 +-
 .../ProductIngestWithMetaFile/index.js             |     2 +-
 .../{components => }/ProductList/ProductList.js    |     2 +-
 .../{components => }/ProductList/SearchBar.js      |     0
 .../{components => }/ProductList/SimpleSnackBar.js |     0
 .../{components => }/ProductList/index.js          |     2 +-
 .../fileManager/components/Product/Product.js      |   327 -
 .../src/components/fileManager/components/index.js |    23 -
 .../src/components/fileManager/index.js            |     8 +-
 .../{components => }/WorkflowList/WorkflowList.js  |     2 +-
 .../{components => }/WorkflowList/index.js         |     2 +-
 .../components/workflowManager/components/index.js |    18 -
 .../workflowManager/constants/wmconnection.js      |    22 -
 .../src/components/workflowManager/index.js        |     2 +-
 .../fmconnection.js => constants/connection.js}    |     5 +-
 .../oodt_opsui_sample_app/src/index.css            |    13 -
 27 files changed, 14167 insertions(+), 14080 deletions(-)
 create mode 100644 react-components/oodt_opsui_sample_app/jsconfig.json
 create mode 100644 react-components/oodt_opsui_sample_app/src/components/fileManager/Product/Product.js
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/Product/index.js (97%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductIngest/ProductIngest.js (99%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductIngest/index.js (96%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductIngestWithMetaFile/ProductIngestWithMetaFile.js (98%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductIngestWithMetaFile/index.js (95%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductList/ProductList.js (99%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductList/SearchBar.js (100%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductList/SimpleSnackBar.js (100%)
 rename react-components/oodt_opsui_sample_app/src/components/fileManager/{components => }/ProductList/index.js (97%)
 delete mode 100644 react-components/oodt_opsui_sample_app/src/components/fileManager/components/Product/Product.js
 delete mode 100644 react-components/oodt_opsui_sample_app/src/components/fileManager/components/index.js
 rename react-components/oodt_opsui_sample_app/src/components/workflowManager/{components => }/WorkflowList/WorkflowList.js (99%)
 rename react-components/oodt_opsui_sample_app/src/components/workflowManager/{components => }/WorkflowList/index.js (97%)
 delete mode 100644 react-components/oodt_opsui_sample_app/src/components/workflowManager/components/index.js
 delete mode 100644 react-components/oodt_opsui_sample_app/src/components/workflowManager/constants/wmconnection.js
 rename react-components/oodt_opsui_sample_app/src/{components/fileManager/constants/fmconnection.js => constants/connection.js} (90%)
 delete mode 100644 react-components/oodt_opsui_sample_app/src/index.css