Download the PHP package tanthammar/livewire-window-size without Composer
On this page you can find all versions of the php package tanthammar/livewire-window-size. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tanthammar/livewire-window-size
More information about tanthammar/livewire-window-size
Files in tanthammar/livewire-window-size
Package livewire-window-size
Short Description Laravel blade directives and php helpers for serverside rendered content, based on browser window size WITHOUT css. Requires Livewire and AlpineJS
License MIT
Informations about the package livewire-window-size
Laravel Livewire Window Size and Breakpoints
Laravel blade
directives and php helpers
for server side rendered content, based on browser window size WITHOUT css. Requires Livewire and AlpineJS
An example to show the purpose of this package:
Requirements
- php 8
- Laravel 8
- Livewire
- AlpineJS
Do you want a pure Javascript version instead?
There is a Laravel/VanillaJS version of this package. Link >>>
Description
The main purpose of this package is not to avoid duplicated html, but to avoid unnecessary server side code execution, just to render content that will never be seen.
- AlpineJS syncs the browsers inner
width
andheight
, in realtime (debounced 750ms), when the browser window is resized. - The corresponding Livewire component will store the values to the Laravel
Session
. - The package has a
config/breakpoints
file where you set your breakpoints - The package provides multiple
@blade
directives and Laravelhelpers()
- You have access to the browser window width/height via
session('windowW')
andsession('windowH')
- There is also a
HasBreakpoints
trait toset
andget
dynamic breakpoints to override config. - You can change the config dynamically with Laravel
Config::set(...)
Important note
It's important to understand the difference between the server side rendered breakpoints, that this package provides, and css media queries.
When using css, the content of the page will update in realtime as the user resizes the window, whereas this package debounces a network request.
If you are using a Livewire, the component will update on its next request, otherwise the page will update on the next page request.
It's important that you place the <livewire:breakpoints />
at first point of contact with the user, for your application to look its best. I have it in my app.blade.php
and on the login
/register
pages.
Installation
Publish config
The default settings are based on TailwindCSS breakpoints
Add the component to your layout
- Add this to all layouts where you want to keep track of the browser window size.
- You will have access to the browser window width/height via
session('windowW')
andsession('windowH')
Example: app.blade.php
Blade directives
@elsif..., @else..., @end..., @unless... and @endif works with all the directives. Explanation in Laravel docs.
Example
Helpers
Same name as Blade directives
Example php
HasBreakpoints trait
Add the trait to a component to import config values and get/set custom breakpoints dynamically.
Blade directives test component
Add this to any blade view to test the blade directives
💬 Let's connect
Discuss with other tall-form users on the official Livewire Discord channel. You'll find me in the "partners/tall-forms" channel.
- 🔗 Discord
- 🔗 Youtube
- 🔗 Devdojo
- 🔗 Please 💗 sponsor me if you like my work.
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.
All versions of livewire-window-size with dependencies
illuminate/support Version ^8.0|^9.0|^10.0|^11.0
livewire/livewire Version ^3.0