This is an automated email from the ASF dual-hosted git repository.
arvid pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.
from 76fdff9 [FLINK-24724][build] Update japicmp jaxb dependencies
new 1ccf8c4 [FLINK-23990][runtime-web] Replace custom monaco editor with
nz-code-editor
new 21caabc [FLINK-23990][runtime-web] Lazy load exception editors and
add strong typed
The 2 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:
flink-runtime-web/web-dashboard/angular.json | 2 +-
.../web-dashboard/src/app/app.component.ts | 5 +-
.../pages/job-manager/job-manager.component.less | 6 +-
.../app/pages/job-manager/job-manager.module.ts | 6 +-
.../job-manager-log-detail.component.html | 9 +-
.../job-manager-log-detail.component.less | 48 +++---
.../log-detail/job-manager-log-detail.component.ts | 28 ++--
.../log-list/job-manager-log-list.component.html | 24 ++-
.../log-list/job-manager-log-list.component.ts | 3 +
.../logs/job-manager-logs.component.html | 7 +-
.../logs/job-manager-logs.component.less | 15 +-
.../job-manager/logs/job-manager-logs.component.ts | 33 +++-
.../stdout/job-manager-stdout.component.html | 7 +-
.../stdout/job-manager-stdout.component.less | 15 +-
.../stdout/job-manager-stdout.component.ts | 33 +++-
.../job/exceptions/job-exceptions.component.html | 183 +++++++++++----------
.../job/exceptions/job-exceptions.component.less | 42 +++--
.../job/exceptions/job-exceptions.component.ts | 22 ++-
.../src/app/pages/job/job.component.less | 37 +++--
.../web-dashboard/src/app/pages/job/job.module.ts | 4 +-
.../pages/job/overview/job-overview.component.less | 8 +-
.../overview/list/job-overview-list.component.less | 3 +-
.../task-manager-log-detail.component.html | 9 +-
.../task-manager-log-detail.component.less | 55 +++----
.../task-manager-log-detail.component.ts | 54 +++---
.../log-list/task-manager-log-list.component.html | 24 ++-
.../log-list/task-manager-log-list.component.ts | 3 +
.../logs/task-manager-logs.component.html | 7 +-
.../logs/task-manager-logs.component.less | 14 +-
.../logs/task-manager-logs.component.ts | 46 ++++--
.../metrics/task-manager-metrics.component.less | 1 +
.../stdout/task-manager-stdout.component.html | 7 +-
.../stdout/task-manager-stdout.component.less | 14 +-
.../stdout/task-manager-stdout.component.ts | 46 ++++--
.../pages/task-manager/task-manager.component.html | 2 +-
.../pages/task-manager/task-manager.component.less | 24 ++-
.../app/pages/task-manager/task-manager.module.ts | 6 +-
.../task-manager-thread-dump.component.html | 7 +-
.../task-manager-thread-dump.component.less | 14 +-
.../task-manager-thread-dump.component.ts | 46 ++++--
.../share/common/editor/auto-resize.directive.ts | 61 +++++++
.../src/app/share/common/editor/editor-config.ts | 12 ++
.../monaco-editor/monaco-editor.component.less | 25 ---
.../monaco-editor/monaco-editor.component.ts | 112 -------------
.../common/monaco-editor/monaco-editor.service.ts | 34 ----
.../web-dashboard/src/app/share/share.module.ts | 10 +-
.../web-dashboard/src/app/utils/strong-type.ts | 3 +
.../web-dashboard/src/styles/index.less | 1 +
48 files changed, 656 insertions(+), 521 deletions(-)
create mode 100644
flink-runtime-web/web-dashboard/src/app/share/common/editor/auto-resize.directive.ts
create mode 100644
flink-runtime-web/web-dashboard/src/app/share/common/editor/editor-config.ts
delete mode 100644
flink-runtime-web/web-dashboard/src/app/share/common/monaco-editor/monaco-editor.component.less
delete mode 100644
flink-runtime-web/web-dashboard/src/app/share/common/monaco-editor/monaco-editor.component.ts
delete mode 100644
flink-runtime-web/web-dashboard/src/app/share/common/monaco-editor/monaco-editor.service.ts
create mode 100644 flink-runtime-web/web-dashboard/src/app/utils/strong-type.ts