Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support serializing/deserializing empty arrays #1850

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

PaulBGD
Copy link

@PaulBGD PaulBGD commented Mar 29, 2025

Closes #1174

✅ Checklist

  • I have followed every step in the contributing guide
  • The PR title follows the convention.
  • I ran and tested the code works

Testing

Struggling to get re2 to build to properly test this, will try on another setup. I added unit testing for the serializing portion.


Changelog

This allows empty arrays to be serialized and deserialized. This is important for debugging, to properly show the difference between no value and an empty array.


Screenshots

N/a

💯

Follow ups: probably the same behavior for empty objects?

Summary by CodeRabbit

  • New Features

    • Enhanced data handling to ensure that empty arrays are consistently processed and represented, improving data accuracy and rendering within the application.
  • Tests

    • Added comprehensive tests to verify the correct treatment of empty array scenarios, bolstering overall data reliability and quality assurance.

Copy link
Contributor

coderabbitai bot commented Mar 29, 2025

Walkthrough

The changes introduce a new constant, EMPTY_ARRAY_SENTINEL, across multiple modules to improve handling of empty arrays. Both the rehydrateJson function in the webapp and the flattening/unflattening logic in the core have been updated to use this sentinel. Additionally, the export set has been augmented to include the new constant, and new test cases have been added to validate the handling of empty arrays. Existing checks for null and NULL_SENTINEL remain unchanged.

Changes

File(s) Change Summary
apps/.../taskEvent.ts
apps/.../eventRepository.server.ts
Added EMPTY_ARRAY_SENTINEL and updated rehydrateJson with a conditional check to return an empty array when the sentinel value is encountered.
packages/core/src/v3/index.ts Added a new export for EMPTY_ARRAY_SENTINEL from ./utils/flattenAttributes.js.
packages/core/src/v3/utils/flattenAttributes.ts Introduced EMPTY_ARRAY_SENTINEL; updated flattenAttributes to set the sentinel for empty arrays; renamed rehydrateNull to rehydrateEmptyValues to properly rehydrate empty arrays.
packages/core/test/flattenAttributes.test.ts Added new test cases to validate the flattening and unflattening of empty arrays, with minor formatting updates.

Sequence Diagram(s)

sequenceDiagram
    participant Caller
    participant Flattener
    participant Unflattener
    Caller->>Flattener: Send data containing an empty array
    Note right of Flattener: Detect empty array and use EMPTY_ARRAY_SENTINEL
    Flattener-->>Caller: Return flattened data with sentinel
    Caller->>Unflattener: Send flattened data
    Note left of Unflattener: Convert EMPTY_ARRAY_SENTINEL back to an empty array
    Unflattener-->>Caller: Return original data with empty array
Loading

Assessment against linked issues

Objective Addressed Explanation
Ensure run log outputs display empty arrays correctly (#1174 [TRI-2755])

Possibly related PRs

Poem

I'm just a rabbit hopping through the code,
Found a little sentinel lightening my load.
Empty arrays now show up crystal clear,
With rehydration magic, they appear!
Carrots and clean code, a joyful blend,
Hopping in celebration until the very end! 🥕


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between db03d25 and ded7c4a.

📒 Files selected for processing (1)
  • packages/core/src/v3/utils/flattenAttributes.ts (6 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/core/src/v3/utils/flattenAttributes.ts

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
packages/core/src/v3/utils/flattenAttributes.ts (1)

2-2: Remove unused import

The debug import from "node:util" is added but not used anywhere in the code.

-import { debug } from "node:util";
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8977d25 and db03d25.

📒 Files selected for processing (5)
  • apps/webapp/app/utils/taskEvent.ts (2 hunks)
  • apps/webapp/app/v3/eventRepository.server.ts (2 hunks)
  • packages/core/src/v3/index.ts (1 hunks)
  • packages/core/src/v3/utils/flattenAttributes.ts (6 hunks)
  • packages/core/test/flattenAttributes.test.ts (4 hunks)
🧰 Additional context used
🧬 Code Definitions (4)
apps/webapp/app/v3/eventRepository.server.ts (2)
packages/core/src/v3/utils/flattenAttributes.ts (1)
  • EMPTY_ARRAY_SENTINEL (5-5)
packages/core/src/v3/index.ts (1)
  • EMPTY_ARRAY_SENTINEL (47-47)
apps/webapp/app/utils/taskEvent.ts (2)
packages/core/src/v3/index.ts (1)
  • EMPTY_ARRAY_SENTINEL (47-47)
packages/core/src/v3/utils/flattenAttributes.ts (1)
  • EMPTY_ARRAY_SENTINEL (5-5)
packages/core/test/flattenAttributes.test.ts (1)
packages/core/src/v3/utils/flattenAttributes.ts (2)
  • flattenAttributes (8-93)
  • unflattenAttributes (99-179)
packages/core/src/v3/utils/flattenAttributes.ts (1)
packages/core/src/v3/index.ts (2)
  • NULL_SENTINEL (46-46)
  • EMPTY_ARRAY_SENTINEL (47-47)
🔇 Additional comments (16)
packages/core/src/v3/index.ts (1)

47-47: LGTM: Clean addition of the empty array sentinel export

The new EMPTY_ARRAY_SENTINEL export has been properly added to the existing exports from the flattenAttributes.js module, keeping consistent grouping with the related NULL_SENTINEL export.

apps/webapp/app/v3/eventRepository.server.ts (2)

8-8: LGTM: Properly imported the empty array sentinel constant

The EMPTY_ARRAY_SENTINEL import has been added in the appropriate location alongside the related NULL_SENTINEL constant.


1597-1599: LGTM: Correctly implemented empty array deserialization

The conditional check for EMPTY_ARRAY_SENTINEL has been properly added to the rehydrateJson function, maintaining consistent structure with the existing null value handling. This addition enables the function to correctly deserialize empty arrays.

apps/webapp/app/utils/taskEvent.ts (2)

8-8: LGTM: Properly imported the empty array sentinel constant

The EMPTY_ARRAY_SENTINEL import has been added in the appropriate location alongside the related NULL_SENTINEL constant.


450-452: LGTM: Correctly implemented empty array deserialization

The conditional check for EMPTY_ARRAY_SENTINEL has been properly added to the rehydrateJson function, maintaining consistent structure with the existing null value handling. This implementation ensures empty arrays are properly deserialized, matching the implementation in the eventRepository.server.ts file.

packages/core/test/flattenAttributes.test.ts (5)

64-70: LGTM: Good test coverage for empty array serialization

This test case properly verifies that an empty array is correctly flattened to the EMPTY_ARRAY_SENTINEL value and then successfully unflattened back to an empty array.


72-78: LGTM: Good test coverage for nested empty array serialization

This test case properly verifies that an object containing an empty array property is correctly flattened and unflattened, maintaining the empty array structure.


176-186: LGTM: Improved formatting in circular reference test

The quotation marks have been removed from object keys in the expected result, which aligns with the standard JavaScript object literal syntax and improves readability.


193-196: LGTM: Improved formatting in nested circular reference test

Similar to the previous test, quotation marks have been removed from object keys in the expected result for better readability and consistency.


266-278: LGTM: Great test coverage for empty array deserialization cases

This test thoroughly validates the unflattening of empty arrays in various contexts:

  1. A root-level empty array
  2. An object property that is an empty array
  3. A nested empty array within another array

All cases are correctly deserialized from their sentinel representations.

packages/core/src/v3/utils/flattenAttributes.ts (6)

5-5: LGTM!

Good addition of a constant to represent empty arrays during serialization, consistent with the existing pattern for NULL_SENTINEL.


112-112: LGTM!

Updated to use the renamed function consistently.


164-164: LGTM!

Updated to use the renamed function consistently.


215-215: LGTM!

Good rename to better describe the expanded role of this function in handling both null values and empty arrays.


220-222: LGTM!

Properly implements the "rehydration" of empty arrays from their sentinel value, following the same pattern as the null handling.


77-79:

❓ Verification inconclusive

LGTM!

This correctly handles empty arrays encountered during iteration. However, due to the issue with the early return for all arrays, this code would never execute for empty arrays.


🏁 Script executed:

#!/bin/bash
# Check if there are any tests demonstrating arrays with elements being properly preserved
rg -A 15 -B 15 "flattenAttributes.*\[\]" packages/core/test

Length of output: 61


Action Required: Confirm Early Return Behavior for Empty Arrays

The block below correctly assigns EMPTY_ARRAY_SENTINEL when encountering an empty array:

      if (!value.length) {
        result[newPrefix] = EMPTY_ARRAY_SENTINEL;
      }

However, it appears that an earlier return for all arrays prevents this code from ever executing—even for empty arrays. Additionally, a search for tests confirming that non-empty arrays are preserved (and that empty arrays are handled as intended) produced no output, making the actual impact of this logic unclear.

  • File & Location: packages/core/src/v3/utils/flattenAttributes.ts, Lines 77–79
  • Issue: The empty array handling code is unreachable because of an early return logic for arrays.
  • Next Steps: Please manually verify whether the current control flow is intended. If not, consider refactoring the logic or adding tests to validate array behaviors.

Copy link

changeset-bot bot commented Mar 29, 2025

⚠️ No Changeset found

Latest commit: ded7c4a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@ericallam
Copy link
Member

This is great! Can you try and do the same for empty objects in this PR too?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[TRI-2755] v3 run log outputs with empty array inside objects aren't shown
2 participants