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

[ObjectMapper] Add component #20347

Open
wants to merge 1 commit into
base: 7.3
Choose a base branch
from
Open

Conversation

soyuka
Copy link
Contributor

@soyuka soyuka commented Oct 24, 2024

Documents the object mapper component from

@carsonbot carsonbot added this to the 7.2 milestone Oct 24, 2024
@OskarStark OskarStark changed the title [Object Mapper] component introduction [Object Mapper] Add component Oct 24, 2024
@OskarStark OskarStark added the Waiting Code Merge Docs for features pending to be merged label Oct 24, 2024
@carsonbot carsonbot modified the milestones: 7.2, next Oct 24, 2024
Comment on lines 108 to 165
/**
* @implements CallableInterface<Source>
*/
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this necessary in a documentation example ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think that its best to have a copy/paste that doesn't trigger phpstan errors

// src/Dto/Source.php
namespace App\Dto;

use App\ObjectMapper\TransformNameCallable;
Copy link
Contributor

Choose a reason for hiding this comment

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

This use statement doesn't seem used in this example

Using the ObjectMapper Service
------------------------------

Once enabled, the object mapper service can be injected in any service where
Copy link
Contributor

Choose a reason for hiding this comment

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

Once installed ?

because writing enabled can mean that it is not enabled:usable by default after installation

$mapper->map(source: new Source(), target: Target::class);


If you alread have a target object, you can use its instance directly::
Copy link

Choose a reason for hiding this comment

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

Suggested change
If you alread have a target object, you can use its instance directly::
If you already have a target object, you can use its instance directly::

Small typo. Not related question, can we expect APP with ObjectMapper DTO support or it's just works now?

Also, this probably needs to target 7.3.

Thanks!

Copy link
Member

@javiereguiluz javiereguiluz left a comment

Choose a reason for hiding this comment

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

Antoine, thanks for contributing the docs for this new component.

I left some minor comments.

#[Map(target: C::class, if: [Source::class, 'shouldMapToC'])]
class Source
{
public static function shouldMapToB(mixed $value, object $object): bool
Copy link
Member

Choose a reason for hiding this comment

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

Which are the mixed $value, object $object arguments passed to this method?

use Symfony\Component\ObjectMapper\Attributes\Map;

class Source {
#[Map(target: 'fullName', transform: TransformNameCallable::class)]
Copy link
Member

Choose a reason for hiding this comment

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

Can I use a transform for the entire object instead of for each of its properties?

#[Map(target: 'fullName')]
public string $firstName;

#[Map(if: false)]
Copy link
Member

Choose a reason for hiding this comment

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

What does #[Map(if: false)] mean here? To me, "map if false" means "copy this value to the other object only if it's false". Not sure if that's what we want to do here.

Copy link
Contributor

Choose a reason for hiding this comment

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

The if property could have a dedicated section.
It is mentioned below that it can be a boolean, a class-string a callable or a closure.
IMHO all the cases could be explained.

@javiereguiluz javiereguiluz modified the milestones: next, 7.3 Mar 24, 2025
@OskarStark OskarStark changed the title [Object Mapper] Add component [ObjectMapper] Add component Mar 24, 2025
@OskarStark OskarStark removed the Waiting Code Merge Docs for features pending to be merged label Mar 24, 2025
@OskarStark
Copy link
Contributor

CI should be green after a rebase on 7.3

@xabbuh xabbuh linked an issue Mar 24, 2025 that may be closed by this pull request
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\ObjectMapper\ObjectMapperInterface;

class DefaultController extends AbstractController
Copy link
Contributor

Choose a reason for hiding this comment

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

As this is a demo code, wdyt using invokable controller? Make code more straight forward to me


To map an object to another one use ``map``::

use App\Dto\Source;
Copy link
Contributor

Choose a reason for hiding this comment

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

Genuine question : Dto\ or \Model ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Dto is in my opinion more generic, or what about ValueObject?


$target = new Target();
$mapper = new ObjectMapper();
$mapper->map(source: new Source(), target: $target);
Copy link
Contributor

Choose a reason for hiding this comment

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

Named param must be remove from doc

Copy link
Contributor

Choose a reason for hiding this comment

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

Instead of objA objB
wdyt using « real » code example?
there are plenty sf doc code with such example one can write/understand to avoid brainswitch

Copy link
Contributor

Choose a reason for hiding this comment

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

yes please use real world use cases


Symfony provides a mapper to transform a given object to another one.

.. _activating_the_serializer:
Copy link
Contributor

Choose a reason for hiding this comment

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

copy paste error?

Copy link
Contributor

@OskarStark OskarStark left a comment

Choose a reason for hiding this comment

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

A rebase on 7.3 branch would be helpful @soyuka, thanks

@soyuka soyuka requested a review from xabbuh as a code owner March 27, 2025 11:41
@soyuka
Copy link
Contributor Author

soyuka commented Mar 27, 2025

I've rebased, this also documents symfony/symfony#60028 as it's quite mandatory for many real world use cases.

Interfaces are now matching the merged code. At the beginning I've used real word examples @94noni could you let me know your thoughts and if you think I should apply the same logic accross the whole documentation?

@soyuka soyuka changed the base branch from 7.2 to 7.3 March 27, 2025 11:43
Comment on lines +126 to +128
}

// src/Dto/Source.php
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
}
// src/Dto/Source.php
}
::
// src/Dto/Source.php

this should fix the Please reorder the use statements alphabetically error

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

Successfully merging this pull request may close these issues.

[ObjectMapper] Object to Object mapper component
10 participants