This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from f068a62 Merge pull request #15879 from [BEAM-13155][Playground]
Update the processing of error during run code
add cb1d5de Merge pull request #15813 from [BEAM-13071] [Playground]
Update run code statuses and add notification system
No new revisions were added by this update.
Summary of changes:
playground/frontend/assets/error_notification.svg | 27 +++++
playground/frontend/assets/info_notification.svg | 27 +++++
.../assets/{reset.svg => success_notification.svg} | 9 +-
.../frontend/assets/warning_notification.svg | 27 +++++
playground/frontend/lib/api/v1/api.pbgrpc.dart | 10 +-
playground/frontend/lib/constants/assets.dart | 6 ++
playground/frontend/lib/constants/colors.dart | 8 ++
.../code_client/grpc_code_client.dart | 16 ++-
.../code_repository/code_repository.dart | 34 +++---
.../code_repository/run_code_result.dart | 9 +-
.../components/base_notification.dart | 102 ++++++++++++++++++
.../notifications/components/notification.dart | 117 +++++++++++++++++++++
.../components/editor_textarea_wrapper.dart | 9 +-
.../code_repository/code_repository_test.dart | 16 ++-
14 files changed, 377 insertions(+), 40 deletions(-)
create mode 100644 playground/frontend/assets/error_notification.svg
create mode 100644 playground/frontend/assets/info_notification.svg
copy playground/frontend/assets/{reset.svg => success_notification.svg} (54%)
create mode 100644 playground/frontend/assets/warning_notification.svg
create mode 100644
playground/frontend/lib/modules/notifications/components/base_notification.dart
create mode 100644
playground/frontend/lib/modules/notifications/components/notification.dart