You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by je...@apache.org on 2021/08/26 14:14:38 UTC

[tez] branch master updated (e2c4ee0 -> 0ccf440)

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

jeagles pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tez.git.


    from e2c4ee0  TEZ-4328. Import external tez component em-helpers (#145)
     add 0ccf440  TEZ-4329. Import external tez component em-table (#146)

No new revisions were added by this update.

Summary of changes:
 tez-ui/src/main/resources/META-INF/LICENSE.txt     |   1 -
 .../main/webapp/app/components/em-table-cell.js    | 124 ++++++++
 .../main/webapp/app/components/em-table-column.js  | 109 +++++++
 .../app/components/em-table-facet-panel-values.js  | 199 ++++++++++++
 .../webapp/app/components/em-table-facet-panel.js  |  86 ++++++
 .../webapp/app/components/em-table-header-cell.js  |  64 ++++
 ...p-download-modal.js => em-table-linked-cell.js} |  53 +++-
 ...{pagination-ui.js => em-table-pagination-ui.js} |  42 +--
 ...date-formatter.js => em-table-progress-cell.js} |  26 +-
 .../webapp/app/components/em-table-search-ui.js    |  95 ++++++
 .../webapp/app/components/em-table-status-cell.js  |   2 +
 tez-ui/src/main/webapp/app/components/em-table.js  | 281 +++++++++++++++++
 .../src/main/webapp/app/controllers/app/configs.js |   2 +-
 tez-ui/src/main/webapp/app/controllers/app/dags.js |   2 +-
 .../main/webapp/app/controllers/counters-table.js  |   2 +-
 .../main/webapp/app/controllers/dag/attempts.js    |   2 +-
 .../main/webapp/app/controllers/dag/graphical.js   |   2 +-
 .../main/webapp/app/controllers/dag/index/index.js |   2 +-
 .../main/webapp/app/controllers/dag/swimlane.js    |   2 +-
 .../src/main/webapp/app/controllers/dag/tasks.js   |   2 +-
 .../main/webapp/app/controllers/dag/vertices.js    |   2 +-
 .../src/main/webapp/app/controllers/home/index.js  |   4 +-
 .../main/webapp/app/controllers/home/queries.js    |   4 +-
 .../main/webapp/app/controllers/query/configs.js   |   2 +-
 .../main/webapp/app/controllers/query/timeline.js  |   2 +-
 tez-ui/src/main/webapp/app/controllers/table.js    |   2 +-
 .../main/webapp/app/controllers/task/attempts.js   |   2 +-
 .../main/webapp/app/controllers/vertex/attempts.js |   2 +-
 .../main/webapp/app/controllers/vertex/configs.js  |   2 +-
 .../main/webapp/app/controllers/vertex/tasks.js    |   2 +-
 tez-ui/src/main/webapp/app/styles/app.less         |   1 +
 .../webapp/app/styles/em-table-facet-panel.less    | 218 +++++++++++++
 tez-ui/src/main/webapp/app/styles/em-table.less    | 344 +++++++++++++++++++++
 .../{swimlane-page.less => pagination-ui.less}     |  99 +++---
 .../{caller-info.less => progress-cell.less}       |  12 +-
 .../src/main/webapp/app/styles/search-ui.less      |  17 +-
 tez-ui/src/main/webapp/app/styles/shared.less      | 115 +++++++
 .../dag/index.js => styles/variables.less}         |  13 +-
 .../graphical.hbs => components/em-table-cell.hbs} |  35 ++-
 .../{app.hbs => components/em-table-column.hbs}    |   6 +-
 .../components/em-table-facet-panel-values.hbs     |  50 +++
 .../templates/components/em-table-facet-panel.hbs  |  34 +-
 .../{caller-info.hbs => em-table-header-cell.hbs}  |  18 +-
 ...-log-link-cell.hbs => em-table-linked-cell.hbs} |  24 +-
 ...agination-ui.hbs => em-table-pagination-ui.hbs} |  15 +-
 .../em-table-progress-cell.hbs}                    |  23 +-
 .../templates/components/em-table-search-ui.hbs    |  52 ++++
 .../webapp/app/templates/components/em-table.hbs   | 106 +++++++
 .../src/main/webapp/app/utils/column-definition.js | 125 ++++++++
 .../webapp/app/utils/counter-column-definition.js  |   2 +-
 tez-ui/src/main/webapp/app/utils/data-processor.js | 275 ++++++++++++++++
 tez-ui/src/main/webapp/app/utils/facet-types.js    |  85 +++++
 tez-ui/src/main/webapp/app/utils/sql.js            |  94 ++++++
 .../{models/timed.js => utils/table-definition.js} |  48 ++-
 tez-ui/src/main/webapp/bower.json                  |   1 +
 tez-ui/src/main/webapp/ember-cli-build.js          |   1 +
 tez-ui/src/main/webapp/package.json                |   1 -
 .../{caller-info-test.js => em-table-cell-test.js} |  33 +-
 .../components/em-table-column-test.js}            |  15 +-
 ...search-test.js => em-table-facet-panel-test.js} |  16 +-
 ...test.js => em-table-facet-panel-values-test.js} |  17 +-
 ...s-link-test.js => em-table-header-cell-test.js} |  16 +-
 ...s-link-test.js => em-table-linked-cell-test.js} |  14 +-
 .../components/em-table-pagination-ui-test.js      | 204 ++++++++++++
 ...rols-test.js => em-table-progress-cell-test.js} |  12 +-
 ...ats-link-test.js => em-table-search-ui-test.js} |  16 +-
 ...mlane-process-name-test.js => em-table-test.js} |  33 +-
 ...s-link-test.js => em-table-status-cell-test.js} |  10 +-
 .../tests/unit/utils/column-definition-test.js     | 104 +++++++
 .../webapp/tests/unit/utils/data-processor-test.js | 137 ++++++++
 ...ownload-dag-zip-test.js => facet-types-test.js} |   8 +-
 .../src/main/webapp/tests/unit/utils/sql-test.js   |  90 ++++++
 ...definition-test.js => table-definition-test.js} |  31 +-
 tez-ui/src/main/webapp/yarn.lock                   |  10 -
 74 files changed, 3359 insertions(+), 343 deletions(-)
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table-cell.js
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table-column.js
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table-facet-panel-values.js
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table-facet-panel.js
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table-header-cell.js
 copy tez-ui/src/main/webapp/app/components/{zip-download-modal.js => em-table-linked-cell.js} (50%)
 copy tez-ui/src/main/webapp/app/components/{pagination-ui.js => em-table-pagination-ui.js} (75%)
 copy tez-ui/src/main/webapp/app/components/{date-formatter.js => em-table-progress-cell.js} (65%)
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table-search-ui.js
 create mode 100644 tez-ui/src/main/webapp/app/components/em-table.js
 create mode 100644 tez-ui/src/main/webapp/app/styles/em-table-facet-panel.less
 create mode 100644 tez-ui/src/main/webapp/app/styles/em-table.less
 copy tez-ui/src/main/webapp/app/styles/{swimlane-page.less => pagination-ui.less} (50%)
 copy tez-ui/src/main/webapp/app/styles/{caller-info.less => progress-cell.less} (89%)
 copy tez-runtime-internals/src/main/java/org/apache/tez/runtime/api/events/TaskAttemptCompletedEvent.java => tez-ui/src/main/webapp/app/styles/search-ui.less (78%)
 copy tez-ui/src/main/webapp/app/{controllers/dag/index.js => styles/variables.less} (84%)
 copy tez-ui/src/main/webapp/app/templates/{dag/graphical.hbs => components/em-table-cell.hbs} (52%)
 copy tez-ui/src/main/webapp/app/templates/{app.hbs => components/em-table-column.hbs} (76%)
 create mode 100644 tez-ui/src/main/webapp/app/templates/components/em-table-facet-panel-values.hbs
 copy tez-runtime-internals/src/main/java/org/apache/tez/runtime/api/impl/EventType.java => tez-ui/src/main/webapp/app/templates/components/em-table-facet-panel.hbs (56%)
 copy tez-ui/src/main/webapp/app/templates/components/{caller-info.hbs => em-table-header-cell.hbs} (60%)
 copy tez-ui/src/main/webapp/app/templates/components/{em-table-tasks-log-link-cell.hbs => em-table-linked-cell.hbs} (60%)
 copy tez-ui/src/main/webapp/app/templates/components/{pagination-ui.hbs => em-table-pagination-ui.hbs} (84%)
 copy tez-ui/src/main/webapp/app/templates/{dag/counters.hbs => components/em-table-progress-cell.hbs} (78%)
 create mode 100644 tez-ui/src/main/webapp/app/templates/components/em-table-search-ui.hbs
 create mode 100644 tez-ui/src/main/webapp/app/templates/components/em-table.hbs
 create mode 100644 tez-ui/src/main/webapp/app/utils/column-definition.js
 create mode 100644 tez-ui/src/main/webapp/app/utils/data-processor.js
 create mode 100644 tez-ui/src/main/webapp/app/utils/facet-types.js
 create mode 100644 tez-ui/src/main/webapp/app/utils/sql.js
 copy tez-ui/src/main/webapp/app/{models/timed.js => utils/table-definition.js} (51%)
 copy tez-ui/src/main/webapp/tests/integration/components/{caller-info-test.js => em-table-cell-test.js} (60%)
 copy tez-ui/src/main/webapp/tests/{unit/adapters/dag-am-test.js => integration/components/em-table-column-test.js} (70%)
 copy tez-ui/src/main/webapp/tests/integration/components/{dags-page-search-test.js => em-table-facet-panel-test.js} (74%)
 copy tez-ui/src/main/webapp/tests/integration/components/{dags-page-search-test.js => em-table-facet-panel-values-test.js} (71%)
 copy tez-ui/src/main/webapp/tests/integration/components/{stats-link-test.js => em-table-header-cell-test.js} (70%)
 copy tez-ui/src/main/webapp/tests/integration/components/{stats-link-test.js => em-table-linked-cell-test.js} (74%)
 create mode 100644 tez-ui/src/main/webapp/tests/integration/components/em-table-pagination-ui-test.js
 copy tez-ui/src/main/webapp/tests/integration/components/{table-controls-test.js => em-table-progress-cell-test.js} (78%)
 copy tez-ui/src/main/webapp/tests/integration/components/{stats-link-test.js => em-table-search-ui-test.js} (70%)
 copy tez-ui/src/main/webapp/tests/integration/components/{em-swimlane-process-name-test.js => em-table-test.js} (52%)
 copy tez-ui/src/main/webapp/tests/integration/{components/stats-link-test.js => em-table-status-cell-test.js} (85%)
 create mode 100644 tez-ui/src/main/webapp/tests/unit/utils/column-definition-test.js
 create mode 100644 tez-ui/src/main/webapp/tests/unit/utils/data-processor-test.js
 copy tez-ui/src/main/webapp/tests/unit/utils/{download-dag-zip-test.js => facet-types-test.js} (85%)
 create mode 100644 tez-ui/src/main/webapp/tests/unit/utils/sql-test.js
 copy tez-ui/src/main/webapp/tests/unit/utils/{process-definition-test.js => table-definition-test.js} (52%)