You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by to...@apache.org on 2018/11/13 13:52:58 UTC

[ambari-logsearch] branch master updated (db5fb3d -> f40991f)

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

tobiasistvan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ambari-logsearch.git.


    from db5fb3d  AMBARI-24833. Simplify HDFS client usage + use core-site.xml (#21)
     add d09e5c3  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps
     add dcadc20  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - PR fixes
     add 2c14a70  In progress
     add 30c3157  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - fixing form control implementations
     add 1990a75  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - change history manager with actions/reducers/effects focused solution.
     add 12fc1b7  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - working history manager
     add bc2b995  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - request in progress indicators
     add 5df64b3  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - fixing dropdown with icons, optimize code readibility, changing labels
     add 20c27ea  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - cleaning up the branch, writing tests fixing issues revealed by unit tests.
     add 75c120d  [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps - PR change requests
     new f40991f  Merge pull request #5 from tobias-istvan/AMBARI-24551-master

The 1 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:
 ambari-logsearch-web/src/app/app-routing.module.ts |  19 +-
 ambari-logsearch-web/src/app/app.module.ts         |   8 +-
 ...aph.ts => filter-url-param-change.interface.ts} |   8 +-
 .../src/app/classes/models/store.ts                |   2 +
 .../action-menu/action-menu.component.html         |  14 +-
 .../action-menu/action-menu.component.less         |  72 +---
 .../action-menu/action-menu.component.ts           |  46 +--
 .../src/app/components/app.component.html          |   4 +
 .../src/app/components/app.component.less          |  25 ++
 .../src/app/components/app.component.ts            |   7 +-
 .../cluster-filter/cluster-filter.component.ts     |   4 +-
 .../filter-button/filter-button.component.ts       |  59 +---
 .../filter-history-manager.component.html          |  29 ++
 .../filter-history-manager.component.less          | 114 ++++++
 .../filter-history-manager.component.spec.ts       | 296 ++++++++++++++++
 .../filter-history-manager.component.ts            | 381 +++++++++++++++++++++
 .../filters-panel/filters-panel.component.html     |   2 +-
 .../filters-panel/filters-panel.component.ts       |  20 +-
 .../log-index-filter/log-index-filter.component.ts |   2 +-
 .../components/login-form/login-form.component.ts  |   4 +-
 .../logs-container/logs-container.component.html   |  14 +-
 .../logs-container/logs-container.component.less   |  27 ++
 .../logs-container/logs-container.component.ts     | 129 ++++---
 .../menu-button/menu-button.component.spec.ts      |   4 +-
 .../menu-button/menu-button.component.ts           |  58 +++-
 .../pagination-controls.component.ts               |  24 +-
 .../components/search-box/search-box.component.ts  |  29 +-
 .../service-logs-table.component.ts                |   6 +
 .../time-range-picker.component.ts                 |  11 +-
 .../src/app/modules/app-load/app-load.module.ts    |   4 +-
 .../models/data-availability-state.model.ts        |   1 +
 .../src/app/modules/shared/animations.less         |  31 ++
 .../dropdown-button/dropdown-button.component.ts   |  24 +-
 .../dropdown-list/dropdown-list.component.html     |   2 +-
 .../dropdown-list/dropdown-list.component.less     |   5 +-
 .../dropdown-list/dropdown-list.component.ts       |  12 +-
 .../filter-dropdown/filter-dropdown.component.ts   |  15 +-
 .../modal-dialog/modal-dialog.component.spec.ts    |   2 +
 .../src/app/modules/shared/shared.module.ts        |  34 +-
 .../src/app/modules/shared/variables.less          |   1 +
 .../src/app/services/filter-history.guard.ts       | 128 +++++++
 .../src/app/services/history-manager.service.ts    | 114 ++----
 .../src/app/services/http-client.service.ts        |  10 +-
 .../app/services/log-index-filter.service.spec.ts  |   4 +-
 .../src/app/services/logs-container.service.ts     | 159 +++++----
 .../app/services/logs-filtering-utils.service.ts   | 158 ++++++---
 .../src/app/services/storage/reducers.service.ts   |   4 +-
 .../app/store/actions/filter-history.actions.ts    |  56 +++
 .../app/store/reducers/filter-history.reducers.ts  | 111 ++++++
 .../{auth.selectors.ts => app-state.selectors.ts}  |  34 +-
 .../store/selectors/audit-logs-fields.selectors.ts |  51 +++
 .../src/app/store/selectors/auth.selectors.ts      |  14 +-
 .../selectors/components.selectors.ts}             |  29 +-
 .../store/selectors/data-availability.selectors.ts |  49 +++
 .../store/selectors/filter-history.selectors.ts    |  94 +++++
 .../selectors/service-logs-fields.selectors.ts}    |  22 +-
 ambari-logsearch-web/src/app/test-config.spec.ts   |   2 +-
 ambari-logsearch-web/src/assets/i18n/en.json       |  96 +++++-
 58 files changed, 2091 insertions(+), 593 deletions(-)
 copy ambari-logsearch-web/src/app/classes/models/{graph.ts => filter-url-param-change.interface.ts} (88%)
 create mode 100644 ambari-logsearch-web/src/app/components/filter-history-manager/filter-history-manager.component.html
 create mode 100644 ambari-logsearch-web/src/app/components/filter-history-manager/filter-history-manager.component.less
 create mode 100644 ambari-logsearch-web/src/app/components/filter-history-manager/filter-history-manager.component.spec.ts
 create mode 100644 ambari-logsearch-web/src/app/components/filter-history-manager/filter-history-manager.component.ts
 create mode 100644 ambari-logsearch-web/src/app/services/filter-history.guard.ts
 create mode 100644 ambari-logsearch-web/src/app/store/actions/filter-history.actions.ts
 create mode 100644 ambari-logsearch-web/src/app/store/reducers/filter-history.reducers.ts
 copy ambari-logsearch-web/src/app/store/selectors/{auth.selectors.ts => app-state.selectors.ts} (52%)
 create mode 100644 ambari-logsearch-web/src/app/store/selectors/audit-logs-fields.selectors.ts
 copy ambari-logsearch-web/src/app/{components/node-bar/node-bar.component.less => store/selectors/components.selectors.ts} (60%)
 create mode 100644 ambari-logsearch-web/src/app/store/selectors/data-availability.selectors.ts
 create mode 100644 ambari-logsearch-web/src/app/store/selectors/filter-history.selectors.ts
 copy ambari-logsearch-web/src/app/{services/storage/app-state.service.ts => store/selectors/service-logs-fields.selectors.ts} (58%)


[ambari-logsearch] 01/01: Merge pull request #5 from tobias-istvan/AMBARI-24551-master

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tobiasistvan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ambari-logsearch.git

commit f40991f57caccf7abd79049ca469b1b5006c51e9
Merge: db5fb3d 75c120d
Author: Istvan Tobias <to...@gmail.com>
AuthorDate: Tue Nov 13 14:52:54 2018 +0100

    Merge pull request #5 from tobias-istvan/AMBARI-24551-master
    
    [AMBARI-24551] [Log Search UI] get rid of redundant requests after undoing or redoing several history steps

 ambari-logsearch-web/src/app/app-routing.module.ts |  19 +-
 ambari-logsearch-web/src/app/app.module.ts         |   8 +-
 .../models/filter-url-param-change.interface.ts}   |  18 +-
 .../src/app/classes/models/store.ts                |   2 +
 .../action-menu/action-menu.component.html         |  14 +-
 .../action-menu/action-menu.component.less         |  72 +---
 .../action-menu/action-menu.component.ts           |  46 +--
 .../src/app/components/app.component.html          |   4 +
 .../src/app/components/app.component.less          |  25 ++
 .../src/app/components/app.component.ts            |   7 +-
 .../cluster-filter/cluster-filter.component.ts     |   4 +-
 .../filter-button/filter-button.component.ts       |  59 +---
 .../filter-history-manager.component.html          |  29 ++
 .../filter-history-manager.component.less          | 114 ++++++
 .../filter-history-manager.component.spec.ts       | 296 ++++++++++++++++
 .../filter-history-manager.component.ts            | 381 +++++++++++++++++++++
 .../filters-panel/filters-panel.component.html     |   2 +-
 .../filters-panel/filters-panel.component.ts       |  20 +-
 .../log-index-filter/log-index-filter.component.ts |   2 +-
 .../components/login-form/login-form.component.ts  |   4 +-
 .../logs-container/logs-container.component.html   |  14 +-
 .../logs-container/logs-container.component.less   |  27 ++
 .../logs-container/logs-container.component.ts     | 129 ++++---
 .../menu-button/menu-button.component.spec.ts      |   4 +-
 .../menu-button/menu-button.component.ts           |  58 +++-
 .../pagination-controls.component.ts               |  24 +-
 .../components/search-box/search-box.component.ts  |  29 +-
 .../service-logs-table.component.ts                |   6 +
 .../time-range-picker.component.ts                 |  11 +-
 .../src/app/modules/app-load/app-load.module.ts    |   4 +-
 .../models/data-availability-state.model.ts        |   1 +
 .../src/app/modules/shared/animations.less         |  31 ++
 .../dropdown-button/dropdown-button.component.ts   |  24 +-
 .../dropdown-list/dropdown-list.component.html     |   2 +-
 .../dropdown-list/dropdown-list.component.less     |   5 +-
 .../dropdown-list/dropdown-list.component.ts       |  12 +-
 .../filter-dropdown/filter-dropdown.component.ts   |  15 +-
 .../modal-dialog/modal-dialog.component.spec.ts    |   2 +
 .../src/app/modules/shared/shared.module.ts        |  34 +-
 .../src/app/modules/shared/variables.less          |   1 +
 .../src/app/services/filter-history.guard.ts       | 128 +++++++
 .../src/app/services/history-manager.service.ts    | 114 ++----
 .../src/app/services/http-client.service.ts        |  10 +-
 .../app/services/log-index-filter.service.spec.ts  |   4 +-
 .../src/app/services/logs-container.service.ts     | 159 +++++----
 .../app/services/logs-filtering-utils.service.ts   | 158 ++++++---
 .../src/app/services/storage/reducers.service.ts   |   4 +-
 .../app/store/actions/filter-history.actions.ts    |  56 +++
 .../app/store/reducers/filter-history.reducers.ts  | 111 ++++++
 .../{auth.selectors.ts => app-state.selectors.ts}  |  34 +-
 .../store/selectors/audit-logs-fields.selectors.ts |  51 +++
 .../src/app/store/selectors/auth.selectors.ts      |  14 +-
 .../selectors/components.selectors.ts}             |  31 +-
 .../store/selectors/data-availability.selectors.ts |  49 +++
 .../store/selectors/filter-history.selectors.ts    |  94 +++++
 .../selectors/service-logs-fields.selectors.ts}    |  28 +-
 ambari-logsearch-web/src/app/test-config.spec.ts   |   2 +-
 ambari-logsearch-web/src/assets/i18n/en.json       |  96 +++++-
 58 files changed, 2098 insertions(+), 604 deletions(-)