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

feat!: update standard server #179

Merged
merged 5 commits into from
Feb 28, 2025
Merged

feat!: update standard server #179

merged 5 commits into from
Feb 28, 2025

Conversation

unnoq
Copy link
Owner

@unnoq unnoq commented Feb 28, 2025

Summary by CodeRabbit

  • New Features

    • Introduced a new utility function once for ensuring single execution of a function.
    • Added a new function parseEmptyableJSON for safely parsing JSON strings.
  • Refactor

    • Streamlined dependency imports and updated type definitions across modules.
    • Enhanced type-checking mechanisms with the introduction of isTypescriptObject.
  • Tests

    • Added comprehensive test suites for the new utility functions and existing functionalities.
  • Chores

    • Updated configuration and dependency references to improve integration across packages.

Copy link

coderabbitai bot commented Feb 28, 2025

Walkthrough

The changes primarily refactor import statements across multiple packages by shifting many imports from @orpc/standard-server to @orpc/shared. In addition, several utility functions and type checks have been added or modified. New functions (such as once, isAsyncIteratorObject, parseEmptyableJSON, and isTypescriptObject) and their respective tests have been introduced in the shared package. There are also adjustments in type signatures (switching from JsonValue to unknown), refinements in condition checks (e.g., for content types), and dependency updates in various package.json and tsconfig.json files.

Changes

File(s) Change Summary
packages/client/src/adapters/fetch/rpc-link.test.ts,
packages/client/src/adapters/fetch/rpc-link.ts,
packages/client/src/event-iterator.ts,
packages/client/src/openapi/serializer.ts,
packages/client/src/rpc/serializer.test.ts,
packages/client/src/rpc/serializer.ts
Updated import sources to retrieve utilities from @orpc/shared instead of @orpc/standard-server, reorganized imports, and removed redundant type assertions in error handling.
packages/contract/src/event-iterator.ts Changed the import for isAsyncIteratorObject to come from @orpc/shared.
packages/server/src/adapters/standard/rpc-codec.ts Reorganized type imports (e.g., StandardBody, StandardRequest, StandardResponse) and updated the import for parseEmptyableJSON to use @orpc/shared.
packages/shared/src/function.ts,
packages/shared/src/function.test.ts,
packages/shared/src/index.ts
Added a new function once with its unit tests and updated module exports accordingly.
packages/shared/src/iterator.ts,
packages/shared/src/iterator.test.ts,
packages/shared/src/json.ts,
packages/shared/src/json.test.ts,
packages/shared/src/object.ts,
packages/shared/src/object.test.ts
Introduced new utility functions: isAsyncIteratorObject, parseEmptyableJSON, and isTypescriptObject with comprehensive testing and corresponding exports.
packages/standard-server-fetch/** (multiple files: package.json, playground, src files, tsconfig.json) Updated import statements to use utilities from @orpc/shared, refined content type checks (from text/ to text/plain), updated type signatures from JsonValue to unknown, and added a new TypeScript reference to the shared module.
packages/standard-server-node/** (multiple files: package.json, playground, src files) Mirrored similar changes as in server-fetch by updating imports to @orpc/shared, adjusting type signatures, refining generator return calls by passing undefined, and modifying helper function imports.
packages/standard-server/** (including package.json, src/event-source/*, src/types.ts, src/utils.ts, and tsconfig.json) Removed the "type-fest" dependency, added @orpc/shared as a dependency, updated type definitions (replacing JsonValue with unknown), refactored event meta handling (eliminating isEventMetaContainer in favor of isTypescriptObject), and removed redundant utility functions and their tests.

Sequence Diagram(s)

sequenceDiagram
    participant Caller
    participant OnceWrapper
    participant OriginalFn

    Caller->>OnceWrapper: Call once-wrapped function
    alt First Call
        OnceWrapper->>OriginalFn: Execute Original Function
        OriginalFn-->>OnceWrapper: Return result
        OnceWrapper-->>Caller: Return and cache result
    else Subsequent Call
        OnceWrapper-->>Caller: Return cached result
    end
Loading

Poem

I'm a rabbit with a hopper so spry,
Skipping through refactors under the code sky.
Imports now bound to a shared domain,
Once functions cache results without any strain.
With clean conditions and types so bright,
I celebrate these changes with pure delight!
🥕🐇 Happy coding, day and night!


📜 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 acaa448 and ee0b439.

📒 Files selected for processing (2)
  • packages/shared/tsconfig.json (1 hunks)
  • packages/standard-server-node/tsconfig.json (1 hunks)
🔇 Additional comments (2)
packages/shared/tsconfig.json (1)

3-5: Add ECMAScript 2022 Library Definitions
The addition of "lib": ["ES2022"] in the compilerOptions ensures that the compiler uses the latest ECMAScript standard definitions. This change aligns the shared package with modern JavaScript features.

packages/standard-server-node/tsconfig.json (1)

7-9: Include Shared Package References
Adding the "references": [{ "path": "../shared" }] block facilitates proper type checking and integration with the shared package. This improves the consistency across the packages by ensuring that the shared code is correctly recognized by the TypeScript compiler.


🪧 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 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

vercel bot commented Feb 28, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
orpc ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 28, 2025 7:46am

Copy link

pkg-pr-new bot commented Feb 28, 2025

Open in Stackblitz

More templates

@orpc/client

npm i https://pkg.pr.new/@orpc/client@179

@orpc/contract

npm i https://pkg.pr.new/@orpc/contract@179

@orpc/react-query

npm i https://pkg.pr.new/@orpc/react-query@179

@orpc/openapi

npm i https://pkg.pr.new/@orpc/openapi@179

@orpc/server

npm i https://pkg.pr.new/@orpc/server@179

@orpc/shared

npm i https://pkg.pr.new/@orpc/shared@179

@orpc/standard-server

npm i https://pkg.pr.new/@orpc/standard-server@179

@orpc/standard-server-fetch

npm i https://pkg.pr.new/@orpc/standard-server-fetch@179

@orpc/standard-server-node

npm i https://pkg.pr.new/@orpc/standard-server-node@179

@orpc/vue-colada

npm i https://pkg.pr.new/@orpc/vue-colada@179

@orpc/vue-query

npm i https://pkg.pr.new/@orpc/vue-query@179

@orpc/zod

npm i https://pkg.pr.new/@orpc/zod@179

commit: ee0b439

Copy link

codecov bot commented Feb 28, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

📢 Thoughts on this report? Let us know!

Copy link

@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 (4)
packages/shared/src/iterator.ts (1)

1-7: Well-implemented async iterator type check

The isAsyncIteratorObject function follows the ECMAScript specification for identifying async iterators. It correctly checks for both the presence of the Symbol.asyncIterator property and verifies that it's a function.

Consider whether the generic type parameters in AsyncIteratorObject<any, any, any> could be more strictly typed for better type safety, depending on how this function is used throughout the codebase.

packages/standard-server/src/types.ts (1)

11-11: Consider addressing the void in union type static analysis warning.

The static analyzer flags the use of void in a union type as potentially confusing. While this is pre-existing code, consider replacing void with undefined for clarity since the analyzer suggests this would be safer.

-  | AsyncIterator<unknown | void, unknown | void, undefined>
+  | AsyncIterator<unknown | undefined, unknown | undefined, undefined>
🧰 Tools
🪛 Biome (1.9.4)

[error] 11-11: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 11-11: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

packages/standard-server-node/src/event-source.ts (1)

13-14: Consider addressing static analysis warnings about void in union types.

The static analyzer flags void in union types as potentially confusing. Consider using undefined instead if semantically appropriate.

-): AsyncGenerator<unknown | void, unknown | void, void> {
+): AsyncGenerator<unknown | undefined, unknown | undefined, void> {

And for the toEventStream parameter:

-  iterator: AsyncIterator<unknown | void, unknown | void, void>,
+  iterator: AsyncIterator<unknown | undefined, unknown | undefined, void>,

Also applies to: 84-85

🧰 Tools
🪛 Biome (1.9.4)

[error] 14-14: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 14-14: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

packages/standard-server-fetch/src/event-source.ts (1)

13-13: Consider addressing static analysis warnings about void in union types.

The static analyzer flags void in union types as potentially confusing. Consider using undefined instead if semantically appropriate, similar to the suggestion for the Node implementation.

-): AsyncGenerator<unknown | void, unknown | void, void> {
+): AsyncGenerator<unknown | undefined, unknown | undefined, void> {

And for the toEventStream parameter:

-  iterator: AsyncIterator<unknown | void, unknown | void, void>,
+  iterator: AsyncIterator<unknown | undefined, unknown | undefined, void>,

Also applies to: 83-84

🧰 Tools
🪛 Biome (1.9.4)

[error] 13-13: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 13-13: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 370978b and acaa448.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (41)
  • packages/client/src/adapters/fetch/rpc-link.test.ts (1 hunks)
  • packages/client/src/adapters/fetch/rpc-link.ts (1 hunks)
  • packages/client/src/event-iterator.ts (3 hunks)
  • packages/client/src/openapi/serializer.ts (2 hunks)
  • packages/client/src/rpc/serializer.test.ts (1 hunks)
  • packages/client/src/rpc/serializer.ts (3 hunks)
  • packages/contract/src/event-iterator.ts (1 hunks)
  • packages/server/src/adapters/standard/rpc-codec.ts (1 hunks)
  • packages/shared/src/function.test.ts (1 hunks)
  • packages/shared/src/function.ts (1 hunks)
  • packages/shared/src/index.ts (1 hunks)
  • packages/shared/src/iterator.test.ts (1 hunks)
  • packages/shared/src/iterator.ts (1 hunks)
  • packages/shared/src/json.test.ts (1 hunks)
  • packages/shared/src/json.ts (1 hunks)
  • packages/shared/src/object.test.ts (1 hunks)
  • packages/shared/src/object.ts (1 hunks)
  • packages/standard-server-fetch/package.json (1 hunks)
  • packages/standard-server-fetch/playground/event-source.ts (1 hunks)
  • packages/standard-server-fetch/src/body.test.ts (1 hunks)
  • packages/standard-server-fetch/src/body.ts (2 hunks)
  • packages/standard-server-fetch/src/event-source.test.ts (2 hunks)
  • packages/standard-server-fetch/src/event-source.ts (4 hunks)
  • packages/standard-server-fetch/src/request.test.ts (1 hunks)
  • packages/standard-server-fetch/src/request.ts (1 hunks)
  • packages/standard-server-fetch/tsconfig.json (1 hunks)
  • packages/standard-server-node/package.json (1 hunks)
  • packages/standard-server-node/playground/event-source.ts (1 hunks)
  • packages/standard-server-node/src/body.test.ts (1 hunks)
  • packages/standard-server-node/src/body.ts (2 hunks)
  • packages/standard-server-node/src/event-source.test.ts (2 hunks)
  • packages/standard-server-node/src/event-source.ts (4 hunks)
  • packages/standard-server-node/src/request.ts (1 hunks)
  • packages/standard-server/package.json (1 hunks)
  • packages/standard-server/src/event-source/errors.ts (1 hunks)
  • packages/standard-server/src/event-source/meta.test.ts (1 hunks)
  • packages/standard-server/src/event-source/meta.ts (2 hunks)
  • packages/standard-server/src/types.ts (1 hunks)
  • packages/standard-server/src/utils.test.ts (0 hunks)
  • packages/standard-server/src/utils.ts (0 hunks)
  • packages/standard-server/tsconfig.json (1 hunks)
💤 Files with no reviewable changes (2)
  • packages/standard-server/src/utils.ts
  • packages/standard-server/src/utils.test.ts
✅ Files skipped from review due to trivial changes (11)
  • packages/standard-server-node/src/request.ts
  • packages/standard-server-node/playground/event-source.ts
  • packages/standard-server-fetch/src/request.ts
  • packages/client/src/rpc/serializer.test.ts
  • packages/standard-server-node/src/body.test.ts
  • packages/client/src/adapters/fetch/rpc-link.test.ts
  • packages/client/src/adapters/fetch/rpc-link.ts
  • packages/standard-server-fetch/src/request.test.ts
  • packages/server/src/adapters/standard/rpc-codec.ts
  • packages/standard-server-fetch/src/body.test.ts
  • packages/standard-server-fetch/playground/event-source.ts
🧰 Additional context used
🪛 Biome (1.9.4)
packages/standard-server/src/types.ts

[error] 11-11: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 11-11: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

packages/standard-server-node/src/event-source.ts

[error] 14-14: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 14-14: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 84-84: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 84-84: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

packages/standard-server-fetch/src/event-source.ts

[error] 13-13: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 13-13: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 83-83: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 83-83: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

🔇 Additional comments (43)
packages/contract/src/event-iterator.ts (1)

4-4: Import source updated correctly.

The import for isAsyncIteratorObject has been updated from @orpc/standard-server to @orpc/shared as part of the refactoring effort to centralize shared utilities.

packages/standard-server/tsconfig.json (1)

6-8: TypeScript project reference correctly added.

Adding a reference to the shared package in the tsconfig.json is appropriate since functionality is being moved there, maintaining proper project dependencies.

packages/standard-server-fetch/tsconfig.json (1)

7-8: References array correctly updated.

The references array now properly includes both ../standard-server and ../shared, reflecting the package's dependencies after the refactoring.

packages/standard-server-fetch/package.json (1)

44-44: Added dependency on @orpc/shared

This addition aligns with the PR objective to update the standard server, where functionality is being moved from @orpc/standard-server to @orpc/shared.

packages/shared/src/index.ts (1)

5-6: New exports from shared modules

The additional exports make functionality from the iterator and json modules available through the main entry point, which is a good practice for module organization. This change supports the PR's goal of moving functionality to the shared package.

packages/shared/src/json.test.ts (1)

1-7: Good test coverage for parseEmptyableJSON

The test cases are comprehensive, covering:

  1. Empty string handling (returns undefined)
  2. Empty object parsing
  3. Valid JSON string parsing

This ensures the function behaves correctly for all expected input types.

packages/shared/src/function.test.ts (1)

1-14: Well-structured test for the 'once' memoization function

The test properly verifies that:

  1. The wrapped function returns the same result on multiple calls (using toBe for reference equality)
  2. The underlying function is only called once

This confirms that the once function correctly caches results and prevents redundant executions.

packages/standard-server-node/package.json (1)

44-44: Adding dependency on shared package

Adding @orpc/shared as a dependency aligns with the PR objective of refactoring imports by moving utilities from @orpc/standard-server to @orpc/shared, which centralizes shared code and improves maintainability.

packages/standard-server/package.json (1)

44-45: Dependency changes align with code refactoring

The addition of @orpc/shared and removal of type-fest aligns with the refactoring effort mentioned in the PR summary, where utilities are being centralized in the shared package and JsonValue types are being replaced with unknown.

packages/shared/src/object.ts (1)

92-97: Well-implemented TypeScript type guard

The new isTypescriptObject function is a good addition that correctly implements a type guard for TypeScript's object type (which includes both objects and functions). The function correctly handles null values and uses appropriate type narrowing.

packages/shared/src/object.test.ts (1)

3-13: Excellent test coverage for isTypescriptObject function.

The test cases comprehensively cover both positive and negative scenarios, verifying the function correctly identifies TypeScript object types versus primitive values.

packages/shared/src/iterator.test.ts (1)

3-16: Well-structured test coverage for isAsyncIteratorObject function.

The test suite thoroughly verifies the function's behavior with both positive and negative cases, including correct handling of async vs sync generators and malformed iterator objects.

packages/client/src/event-iterator.ts (3)

2-2: Import statement correctly updated to use shared package.

The import of isTypescriptObject from @orpc/shared aligns with the PR objective of shifting imports from @orpc/standard-server to @orpc/shared.


22-22: Type check updated to use isTypescriptObject.

The condition has been properly updated to use the new shared type-checking utility.


39-39: Type check updated to use isTypescriptObject.

The condition has been properly updated to use the new shared type-checking utility, maintaining consistency with the earlier change.

packages/shared/src/function.ts (1)

3-16: Clean implementation of the once utility function.

The function correctly implements a memoization pattern to ensure a function is executed only once, with subsequent calls returning the cached result.

For future consideration:

  • This implementation only works for parameterless functions
  • It doesn't handle exceptions in the original function
  • There's no mechanism to reset the cache
packages/standard-server-node/src/body.ts (2)

5-6: Module imports reorganization looks good

The reallocation of utility functions (isAsyncIteratorObject and parseEmptyableJSON) to @orpc/shared is a good practice for centralizing common utilities.


44-44:

❓ Verification inconclusive

Verify content type handling change

This change narrows content type handling from all text/* types to only text/plain, which could impact how other text formats (HTML, CSS, etc.) are processed.


🏁 Script executed:

#!/bin/bash
# Check for any other code that might be relying on handling other text/* content types
rg "text/(?!plain|event-stream)" --type ts --glob !packages/standard-server-node/src/body.ts

Length of output: 332


Below is a new verification command using the PCRE2 flag. It searches for references to other text/* content types (excluding text/plain and text/event-stream) in the repository. Please run it and manually verify that no critical parts of the codebase rely on other text formats (e.g., HTML, CSS, etc.).

Once you have the output, please review it to ensure that narrowing the content type handling to text/plain is safe.


🏁 Script executed:

[run_scripts]
#!/bin/bash
rg "text/(?!(plain|event-stream))" --pcre2 --type ts --glob '!packages/standard-server-node/src/body.ts'

Length of output: 623


Action: Confirm Intended Content Type Processing Behavior

The change in packages/standard-server-node/src/body.ts now exclusively processes content types starting with text/plain. However, our repository search identified several instances in the playground examples where text/html is explicitly used:

  • playgrounds/contract-openapi/src/main.ts: Sets Content-Type to text/html
  • playgrounds/expressjs/src/main.ts: Sets Content-Type to text/html
  • playgrounds/nuxt/server/routes/scalar.ts: Sets Content-Type to text/html
  • playgrounds/openapi/src/main.ts: Sets Content-Type to text/html
  • playgrounds/nextjs/src/app/scalar/route.ts: Sets Content-Type to text/html

Please verify that narrowing the check to only text/plain in the standard server logic is intentional. Confirm whether content types like text/html are expected to be processed differently (or elsewhere) without causing regressions for clients relying on broader text/* handling.

packages/client/src/rpc/serializer.ts (2)

1-2: Module imports reorganization looks good

The relocation of isAsyncIteratorObject to @orpc/shared aligns with the broader refactoring efforts seen across the project.


19-20: Type assertions removal improves type safety

Removing the explicit type casting to JsonValue is a good change that aligns with using unknown in ErrorEvent. This makes the code more type-safe by not assuming the data structure prematurely.

Also applies to: 25-26, 81-82

packages/standard-server/src/event-source/errors.ts (1)

6-6: Improved type flexibility with unknown

Changing from undefined | JsonValue to unknown improves flexibility while maintaining type safety. The unknown type requires explicit type checking before use, which helps prevent type-related errors.

Also applies to: 10-10

packages/standard-server/src/event-source/meta.ts (1)

2-2: Good standardization of type checking

Using the shared isTypescriptObject utility instead of a local implementation promotes consistency across the codebase. This is a good practice for maintainability and reduces the chance of subtle type-checking inconsistencies.

Also applies to: 30-31

packages/standard-server/src/types.ts (1)

7-7: Type migration from JsonValue to unknown.

The change from JsonValue to unknown makes the type more permissive, which increases flexibility but requires more explicit type checking at consumption sites. This aligns with the overall refactoring effort in the PR to shift imports and types to @orpc/shared.

Also applies to: 11-11

packages/standard-server-fetch/src/body.ts (2)

2-3: Reorganized imports to use shared package.

The reorganization of imports aligns well with the overall refactoring effort, moving utility functions to @orpc/shared. This promotes better code sharing and follows the PR's objectives.


44-44: Narrowed text content type handling to only plain text.

The condition has been changed from handling all text types (text/) to only handling plain text (text/plain). This is a significant behavioral change that could affect how other text subtypes are processed.

Does your application expect to handle other text subtypes (like text/html, text/csv, etc.) that would now be processed differently? With this change, such content types will fall through to the blob handler on lines 48-51 instead.

packages/standard-server-fetch/src/event-source.test.ts (2)

1-2: Moved isAsyncIteratorObject import to shared package.

Moving the utility function to the shared package is consistent with the broader refactoring effort and improves modularity.


186-186: Explicitly passing undefined to generator.return().

Making the parameter explicit improves code clarity by showing the intent, although functionally it's equivalent to the previous implementation where the parameter was implicitly undefined.

packages/standard-server-node/src/event-source.test.ts (2)

2-3: Moved isAsyncIteratorObject import to shared package.

Moving the utility function to the shared package is consistent with the broader refactoring effort and improves modularity.


187-187: Explicitly passing undefined to generator.return().

Making the parameter explicit improves code clarity by showing the intent, although functionally it's equivalent to the previous implementation where the parameter was implicitly undefined.

packages/standard-server/src/event-source/meta.test.ts (2)

1-1: Imports aligned with implementation changes.

The removal of isEventMetaContainer from imports reflects the architectural change where this function has been replaced by isTypescriptObject from @orpc/shared. Good job keeping imports minimal.


3-16: Well-structured tests for get/withEventMeta.

The tests are comprehensive, checking both positive cases (applying and retrieving metadata) and error scenarios (invalid inputs). Error checks verify proper validation for newline characters in ID and invalid retry values.

packages/client/src/openapi/serializer.ts (3)

1-2: Import realignment is consistent with the architecture changes.

Moving the import of isAsyncIteratorObject from @orpc/standard-server to @orpc/shared matches the broader refactoring pattern described in the PR.


22-23: Proper removal of JsonValue type assertion.

Removing the type assertion improves type safety by letting the TypeScript compiler infer the appropriate type.


28-29: Type assertion cleanup is consistent.

Similar to the previous change, this improves type safety by removing unnecessary type assertions.

packages/standard-server-node/src/event-source.ts (5)

2-2: Import alignment with architectural changes.

Adding isTypescriptObject from @orpc/shared and moving parseEmptyableJSON import keeps code in line with the refactoring pattern seen across the PR.


34-36: Implementation aligned with type system changes.

Replacing isEventMetaContainer with isTypescriptObject aligns with the architectural changes while maintaining the same logical flow.


55-57: Consistent implementation of type checking.

The implementation maintains consistency with the earlier change, using isTypescriptObject for type checking.


84-85: Type signature broadened consistently.

The parameter type change from JsonValue | void to unknown | void maintains consistency with the return type change in toEventIterator.

🧰 Tools
🪛 Biome (1.9.4)

[error] 84-84: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 84-84: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


13-14:

✅ Verification successful

Type signature broadened from JsonValue to unknown.

Changing the return type from JsonValue | void to unknown | void makes the function more flexible but could potentially allow more runtime type errors if consumers aren't careful.


🏁 Script executed:

#!/bin/bash
# Check for usages of toEventIterator to identify potential issues with type changes
rg -A 3 "toEventIterator\(" --type ts

Length of output: 5226


Revisiting the Type Signature Change in toEventIterator

After verifying the usages of toEventIterator across both the standard-server-node and standard-server-fetch packages (including their respective tests), the change in return type—from a more restrictive JsonValue | void to a broader unknown | void—appears to be applied consistently. While this broadening increases flexibility, it also shifts the responsibility for type validation onto the consumer. There are no immediate runtime type issues evident from the usage patterns, but please ensure that any consumers performing operations on yielded values include necessary type checks.

  • Affected Location:

    • packages/standard-server-node/src/event-source.ts (Lines 13-14)
  • Observations:

    • Both node and fetch implementations now return AsyncGenerator<unknown | void, unknown | void, void>.
    • Test suites (e.g., in event-source.test.ts) validate that the returned generators conform to the required async iterator interface, without relying on the previously specific type.

Overall, the change looks intentional and consistent. However, please remain mindful of any runtime type assumptions in consumer code.

🧰 Tools
🪛 Biome (1.9.4)

[error] 14-14: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 14-14: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

packages/standard-server-fetch/src/event-source.ts (4)

1-1: Import alignment with architectural changes.

Importing both isTypescriptObject and parseEmptyableJSON from @orpc/shared aligns with the refactoring to consolidate utility functions in the shared package.


13-13: Type signature broadened from JsonValue to unknown.

Similar to the changes in packages/standard-server-node/src/event-source.ts, broadening the type makes the function more flexible but requires careful type checking by consumers.

🧰 Tools
🪛 Biome (1.9.4)

[error] 13-13: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 13-13: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


33-35: Implementation aligned with type system changes.

Both instances of replacing isEventMetaContainer with isTypescriptObject maintain the same logical flow while aligning with the architectural changes.

Also applies to: 54-56


83-84: Type signature broadened consistently.

The parameter type change maintains consistency with the return type change in toEventIterator and the parallel changes in the Node implementation.

🧰 Tools
🪛 Biome (1.9.4)

[error] 83-83: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)


[error] 83-83: void is confusing inside a union type.

Unsafe fix: Use undefined instead.

(lint/suspicious/noConfusingVoidType)

Comment on lines +1 to +7
export function parseEmptyableJSON(text: string): unknown {
if (!text) {
return undefined
}

return JSON.parse(text)
}
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Add error handling for JSON parsing.

The current implementation of parseEmptyableJSON doesn't handle JSON parsing errors, which could lead to uncaught exceptions when parsing invalid JSON strings.

Consider adding error handling:

export function parseEmptyableJSON(text: string): unknown {
  if (!text) {
    return undefined
  }

- return JSON.parse(text)
+ try {
+   return JSON.parse(text)
+ } catch (error) {
+   console.error('Failed to parse JSON:', error)
+   return undefined
+ }
}

Additionally, consider documenting the function's behavior when receiving empty strings or invalid JSON.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
export function parseEmptyableJSON(text: string): unknown {
if (!text) {
return undefined
}
return JSON.parse(text)
}
export function parseEmptyableJSON(text: string): unknown {
if (!text) {
return undefined
}
try {
return JSON.parse(text)
} catch (error) {
console.error('Failed to parse JSON:', error)
return undefined
}
}

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.

1 participant