Git Product home page Git Product logo

Comments (4)

mark-gerarts avatar mark-gerarts commented on June 15, 2024 1

Hey, are you in control of how your source data looks? The $source data doesn't resemble the structure of the parent-child relation you are trying to map. This makes the mapping a bit difficult. I'd expect the input data to look like this:

$source = [
    "id" => 1,
    'child' => ["name" => "Super name"]
];

This way you could just define your mapping like this:

$config = new AutoMapperConfig();
$config->registerMapping(DataType::ARRAY, ChildClass::class);
$config->registerMapping(DataType::ARRAY, ParentClass::class)
    ->forMember('child', Operation::mapTo(ChildClass::class, true));

(You need the true in your mapTo, see the comment just below here in the docs).

So if you can change the source structure, that would be the easiest solution. Otherwise you can try the following config. This is assuming your child class has a setter for the name property, or maybe a constructor:

$config->registerMapping(DataType::ARRAY, ParentClass::class)
    ->forMember('child', function ($source) {
        // Just manually map the name string to an instance of the child class.
        $child = new ChildClass();
        $child->setName($source['name']);
        return $child;
    });

If your child class doesn't provide any way to set the private name property, you can abuse the fact that the mapper has no problems with setting private properties. The mapper itself is passed as the second parameter of the mapping function, so you could construct an array and map that, basically recreating the first solution on the fly. Something like this:

$config->registerMapping(DataType::ARRAY, ParentClass::class)
    ->forMember('child', function ($source, AutoMapperInterface $mapper) {
        $child = ['name' => $source['name']];
        return $mapper->map($child, ChildClass::class);
    });

Let me know if this helped you, or if you have any other problems!

from automapper-plus.

VitaliiIsaenko avatar VitaliiIsaenko commented on June 15, 2024

That's an amazing explanation. I was thinking about these ways and you are right that they are perfectly valid and my example is too unintuitive.
Thank you again for the explanation!

from automapper-plus.

fd6130 avatar fd6130 commented on June 15, 2024

@mark-gerarts Sorry for bump this old issue. For the solution above it is great for mapping a new object for the destination class.

How about mapping an existing entity object to destination class?

$source = [
    'child' => ["id" => "1"]
];
$config->registerMapping(DataType::ARRAY, ParentClass::class)
    ->forMember('child', function ($source) {
         // fetch entity from doctrine by "id" and return the child?
        return $child;
    });

from automapper-plus.

mark-gerarts avatar mark-gerarts commented on June 15, 2024

No problem! You should be able to just fetch your entity from the repository where you indicate it. Unless I'm missing something, then please explain the issue some more.

The code could look something like this:

$config->registerMapping(DataType::ARRAY, ParentClass::class)
    ->forMember('child', function ($source) use ($repository) {
        return $repository->find($source['child']['id']);
    });

from automapper-plus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.