Livewire Best Practices Save

Laravel Livewire Best Practices

Project README

Livewire Logo

Livewire Best Practices

StandWithUkraine

This repository is a curated list of general recommendations on how to use Laravel Livewire framework to meet enterprise concerns regarding security, performance, and maintenance of Livewire components.

Short Introduction

My name is Michael RubΓ©l and I started using the Livewire framework in 2019 when it was new and barely stable. Back in the day, I was impressed with how fast dynamic UIs can be shipped without even using JavaScript. But like any software solution, it had its pitfalls, and I had to deal with them. The main goal of this repository is to collect the most important experiences you need to consider when working with Livewire.

Let's begin...


🌳 Always set up the root element

Livewire requires a root element (div) in each component. You should always write code inside <div>Your Code Here</div>. Omitting this structure will lead to a lot of problems with updating components.

Example


✨ The Golden rule of performant Livewire

Don't pass large objects to Livewire components!

Avoid passing objects to the component's public properties if possible. Use primitive types: strings, integers, arrays, etc. That's because Livewire serializes/deserializes your component's payload with each request to the server to share the state between the frontend & backend. If you need to work on objects, you can create them inside a method or computed property, and then return the result of the processing.

What to consider a large object?

  • Any instance as large as the Eloquent model is big enough already for Livewire to slow down the component lifecycle, which may lead to poor performance on live updates. For example, if you have a component representing the user profile (email and username), pass these parameters to properties as strings.

Note: if you use full-page components, it's recommended to fetch objects in the full-page component itself, and then pass them downstairs to the nested ones as primitive types.


🧡 Keep component nesting level at 1

If you had a Livewire component (0) that includes another Livewire component (1), then you shouldn't nest it deeper (2+). Too much nesting can make a headache when dealing with DOM diffing issues.

Also, prefer the usage of Blade components when you use nesting, they will be able to communicate with the parent's Livewire component but won't have the overhead the Livewire adds.

Example


πŸ“ Utilize the form objects

Livewire v3 introduced a new abstraction layer called Form Objects. Always use them because that makes your components more maintainable in the long run.

Docs


πŸ•΅οΈ Don't pass sensitive data to the components

Avoid situations that may lead to passing sensitive data to the Livewire components, because it can be easily accessed from the client-side by default. You can hide the properties from the frontend using #[Locked] attribute starting from Livewire version 3.


β˜” Prefer to use event listeners over polling

Instead of constantly polling the page to refresh your data, you may use event listeners to perform the component update only after a specific task was initiated from another component.

Example


πŸ“¦ Use computed properties to access the database

You can use computed properties to avoid unnecessary database queries. Computed properties are cached within the component's lifecycle and do not run multiple times in the component class or the blade view. Starting from Livewire v3, the result of computed properties can also be cached in the generic application-level cache (for example Redis), see.

Example


πŸ—ΊοΈ Use Route Model Binding to fetch the model

Pass only an ID or UUID to the mount method, then map the model attributes to component properties. Remember: don't assign a whole model, but its attributes only. To avoid manually mapping model attributes, you can use the fill method.

Example


πŸ’‘ Avoid using live wire:model modifier where possible

Avoid using live wire:model modifier. This dramatically reduces unnecessary requests to the server. In Livewire version 3, all the models are deferred by default (old: defer modifier), which is good.

Examples


πŸ‘¨β€πŸ’» Use Artisan commands to create, move, and rename components

Livewire has built-in Artisan commands to create, move, rename components, etc. For example, instead of manually renaming files, which could be error-prone, you can use the following command:

  • php artisan livewire:move Old/Path/To/Component New/Path/To/Component

πŸ’± Always use loading states for better UX

You can use loading states to make UX better. It will indicate to the user that something is happening in the background if your process is running longer than expected. To avoid flickering, you can use the delay modifier.

Example


πŸ“ˆ Use lazy loading

Instead of blocking the page render until your data is ready, you can create a placeholder using the lazy loading technique to make your UI more responsive.

Example


πŸ”— Entangle

Sync your data with the backend using $wire.entangle directive. This way the model will be updated instantly on the frontend, and the data will persist server-side after the network request reaches the server. It dramatically improves the user experience on slow devices. This approach is called "Optimistic Response" or "Optimistic UI" in other frontend communities.

Example


🌎 Use Form Request rules for validation

Livewire doesn't support Form Requests internally, but instead of hardcoding the array of validation rules in the component, you may get it directly from Form Request. This way you can reuse the same validation rules in different application layers, for example in API endpoints.

Example


πŸ§ͺ Always write feature tests

Even simple tests can greatly help when you change something in the component. Livewire has a straightforward yet powerful testing API.


πŸ”¨ Are you working with Livewire daily?
Suggest your best practices if you don't see them on the list.
If you aren't sure if it's a good practice, you can start a discussion.

Contributors

GitHub Contributors Image

Open Source Agenda is not affiliated with "Livewire Best Practices" Project. README Source: michael-rubel/livewire-best-practices

Open Source Agenda Badge

Open Source Agenda Rating