Coder Social home page Coder Social logo

Comments (7)

rubenvanassche avatar rubenvanassche commented on August 29, 2024 2

I would create a new Lazy class underneath the package Lazy class, extend HtmlAble which has a render method if I'm not mistaken and then use the code you've provided above.

Then in your data classes you would use your own implemented Lazy class instead of the default laravel-data one.

from laravel-data.

rubenvanassche avatar rubenvanassche commented on August 29, 2024 1

Hi @francoism90,

This is correct behavior, calling include on a property will only affect when you're transforming a data class (toArray, toResponse, toJson, ....).

Inertia works a bit different then LiveWire since it will internally call toArray on the data object, that's a possible solution to this problem but you'll lose typing within your views.

Another solution could be to make lazy HtmlAble and then render the content, and also catch any property fetch or method on the lazyily incuded variable. In such case we could resolve the lazy object and pass on the call. This is a lot of magic, at this point I'm not certain if we want such a thing. But you could always implement it yourself by extending Lazy within your project.

from laravel-data.

rubenvanassche avatar rubenvanassche commented on August 29, 2024 1

Would you recommend to use $user->email->resolve() as an alternative?

Yeah!

I didn't test , does this work fine on lazy attributes?

I would expect not, since the lazy prop will be used.

from laravel-data.

francoism90 avatar francoism90 commented on August 29, 2024

This works:

$user->email->resolve()

However I don't think this is correct?

Maybe a loader for Livewire should be added: https://github.com/spatie/laravel-data/blob/main/docs/advanced-usage/use-with-inertia.md

from laravel-data.

francoism90 avatar francoism90 commented on August 29, 2024

@rubenvanassche Thanks for your reply! I don't fully understand the HtmlAble, but I'll look into it.

Would you recommend to use $user->email->resolve() as an alternative?

I didn't test <input type="text" wire:model="user.email" />, does this work fine on lazy attributes?

Thanks!

from laravel-data.

francoism90 avatar francoism90 commented on August 29, 2024

@rubenvanassche Sorry for bumping this, but could you please tell me how it should work with Htmlable?

I've found this post: https://itnext.io/laravel-the-fantastic-4-interfaces-renderable-6dbdd3c5e539

If I understand correctly, I need to check if the property is a Lazy instance and use resolve(), or when it's already resolved, return without this method.

This is what I'm doing now:

return $data->somelazy instanceof Lazy ? $data->somelazy->resolve() : $data->somelazy;

from laravel-data.

francoism90 avatar francoism90 commented on August 29, 2024

@rubenvanassche Thanks for your input! I'll try to extend the Lazy class with HtmlAble and see how this works out for us. :)

from laravel-data.

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.