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 b3de798 Merge pull request #16735 from [BEAM-13827] - fix medium file
size upload to s3
add 3fed305 Merge pull request #16753 from [BEAM-13837] [Playground] show
graph on the frontend
No new revisions were added by this update.
Summary of changes:
playground/frontend/lib/constants/colors.dart | 2 +
.../code_repository/code_client/code_client.dart | 5 +
.../code_client/grpc_code_client.dart | 18 +-
.../code_repository/code_repository.dart | 21 +-
.../code_repository/run_code_result.dart | 5 +-
.../lib/modules/examples/models/example_model.dart | 6 +
.../example_client/example_client.dart | 2 +
.../example_client/grpc_example_client.dart | 24 +-
.../examples/repositories/example_repository.dart | 7 +
.../modules/graph/graph_builder/canvas_drawer.dart | 128 +++++++++++
.../graph_builder/extractors/edge_extractor.dart | 61 +++++
.../extractors/element_extractor.dart | 63 ++++++
.../graph_builder/extractors/extractor_utils.dart | 20 +-
.../graph_builder/extractors/extractors.dart} | 6 +-
.../graph_builder/extractors/label_extractor.dart} | 23 +-
.../modules/graph/graph_builder/graph_builder.dart | 246 +++++++++++++++++++++
.../graph/graph_builder/painters/edge_painter.dart | 105 +++++++++
.../graph_builder/painters/graph_painter.dart | 86 +++++++
.../graph/graph_builder/painters/node_painter.dart | 91 ++++++++
.../frontend/lib/modules/graph/models/graph.dart | 121 ++++++++++
.../graph/models/table_cell.dart} | 20 +-
.../lib/modules/output/components/graph.dart | 101 +++++++++
.../lib/modules/output/components/output.dart | 17 +-
.../lib/modules/output/components/output_area.dart | 15 +-
.../components/output_header/output_header.dart | 4 +-
.../components/output_header/output_tabs.dart | 19 +-
.../embedded_playground_page.dart | 6 +-
.../components/playground_page_body.dart | 13 +-
.../pages/playground/states/examples_state.dart | 11 +-
.../pages/playground/states/playground_state.dart | 6 +
playground/frontend/pubspec.lock | 9 +-
.../code_repository/code_repository_test.dart | 28 +++
.../code_repository_test.mocks.dart | 8 +
.../states/example_selector_state_test.mocks.dart | 7 +
34 files changed, 1249 insertions(+), 55 deletions(-)
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/canvas_drawer.dart
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/extractors/edge_extractor.dart
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/extractors/element_extractor.dart
copy learning/katas/java/IO/Built-in IOs/Built-in
IOs/test/org/apache/beam/learning/katas/io/builtinios/TaskTest.java =>
playground/frontend/lib/modules/graph/graph_builder/extractors/extractor_utils.dart
(69%)
copy
playground/frontend/lib/modules/{editor/repository/code_repository/code_client/output_response.dart
=> graph/graph_builder/extractors/extractors.dart} (90%)
copy
playground/frontend/lib/modules/{editor/components/pipeline_options_dropdown/pipeline_option_label.dart
=> graph/graph_builder/extractors/label_extractor.dart} (62%)
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/graph_builder.dart
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/painters/edge_painter.dart
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/painters/graph_painter.dart
create mode 100644
playground/frontend/lib/modules/graph/graph_builder/painters/node_painter.dart
create mode 100644 playground/frontend/lib/modules/graph/models/graph.dart
copy
playground/frontend/lib/{pages/playground/components/close_listener_nonweb.dart
=> modules/graph/models/table_cell.dart} (67%)
create mode 100644 playground/frontend/lib/modules/output/components/graph.dart