Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Sep 23, 2025

This PR implements TypeScript export functionality that generates TypeScript interface definitions from DTO classes, bringing feature parity with the Laravel Validated DTO package as requested in the issue.

Features Added

New Export Command

A new export:typescript command that scans DTO classes and generates TypeScript interfaces:

# Basic usage
php bin/hyperf.php export:typescript

# With custom options
php bin/hyperf.php export:typescript /custom/dto/path --output=/output/dir --filename=interfaces.ts

Intelligent Type Mapping

Comprehensive mapping from PHP cast types to TypeScript types:

  • StringCaststring
  • IntegerCast, FloatCastnumber
  • BooleanCastboolean
  • EnumCast → Union types (e.g., 'active' | 'inactive')
  • DTOCast → Interface references
  • ArrayCastany[]
  • ModelCastobject
  • And more...

Example Output

Given a DTO like this:

class UserDTO extends ValidatedDTO
{
    protected function rules(): array
    {
        return [
            'name' => ['required', 'string'],
            'email' => ['required', 'email'],
            'age' => ['integer'],
            'is_active' => ['boolean'],
        ];
    }

    protected function casts(): array
    {
        return [
            'name' => new StringCast(),
            'email' => new StringCast(),
            'age' => new IntegerCast(),
            'is_active' => new BooleanCast(),
        ];
    }

    protected function defaults(): array
    {
        return ['is_active' => true];
    }
}

The export generates:

export interface UserInterface {
  name: string;
  email: string;
  age: number;
  is_active?: boolean; // Optional because it has a default value
}

Technical Implementation

  • ExportTypescriptCommand: Console command with flexible path and output options
  • TypescriptExporter: Core logic for scanning DTO classes and generating interfaces
  • Enhanced enum support: Automatically generates TypeScript union types from PHP enum cases
  • Smart optionality: Properties marked optional based on default values and validation rules
  • Configuration integration: Works with existing DTO configuration system

Configuration

Added TypeScript export configuration to the DTO config file:

'typescript' => [
    'output_path' => BASE_PATH . '/resources/typescript',
    'filename' => 'dtos.ts',
],

This implementation provides type safety for frontend applications while maintaining compatibility with the existing Hyperf ecosystem conventions.

Fixes #2.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/hyperf/macroable/zipball/14b0a00d3ab6c768aaa5c34222b84000bb75eb29
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)
  • https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/V3jutc /usr/bin/composer install (http block)
    • Triggering command: /usr/bin/php8.3 -n -c /tmp/FW4YWt /usr/bin/composer install --no-dev (http block)

If you need me to access, download, or install something from one of these locations, you can either:


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copy link
Contributor Author

Copilot AI commented Sep 23, 2025

@huangdijia 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs.

I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review.

@github-actions
Copy link

Thank you for your pull request. However, you have submitted this PR on the friendsofhyperf organization which is a read-only sub split of friendsofhyperf/components. Please submit your PR on the https://github.com/friendsofhyperf/components repository.

Thanks!

@github-actions github-actions bot closed this Sep 23, 2025
@huangdijia huangdijia deleted the copilot/fix-2 branch September 23, 2025 13:58
Copilot AI changed the title [WIP] what kind of a fork is this? soft/hard? do you have plans on updating from Validated DTO for Laravel? Add TypeScript export functionality for DTO classes Sep 23, 2025
Copilot AI requested a review from huangdijia September 23, 2025 14:18
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.

what kind of a fork is this? soft/hard? do you have plans on updating from Validated DTO for Laravel?

2 participants