Download the PHP package saeven/circlical-laminas-tailwind-forms without Composer
On this page you can find all versions of the php package saeven/circlical-laminas-tailwind-forms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download saeven/circlical-laminas-tailwind-forms
More information about saeven/circlical-laminas-tailwind-forms
Files in saeven/circlical-laminas-tailwind-forms
Package circlical-laminas-tailwind-forms
Short Description Build forms the Tailwind Way with Laminas
License MIT
Homepage https://github.com/Saeven/circlical-laminas-tailwind-forms
Informations about the package circlical-laminas-tailwind-forms
Themed Forms for Laminas (with optional Tailwind/Alpine Goodies)
I built this rig to create a standardized "theme" approach to skinning Laminas forms. In a large team, people can often do things differently, rolling their own CSS. This puts a stop to this.
Design goals were:
- make the system as transparent as possible (no thick overrides) so that it survives Laminas/Form changes.
- allow you to define the look of a form with a single parameter (theme)
- enforce that themes are created only at the config level, in PHP
- don't interfere when classes are explicitly set, in other words, get out of the way if need be
- smallest footprint possible
Optional, since very opinionated:
- TODO: automate binding reactive models with AlpineJS
- TODO: automate writing XHR fetch scripts for forms, along with error display
Installation
Coming Soon.
Usage
Coming Soon.
Tested Elements
You can see these behaviors in the unit tests. So far, I am happy with the support it offers:
- text fields
- buttons
- checkbox
- toggle (new)
Defining Default Styles
Take a look at config/module.config.php and look at the form_themes/default-form-element
key. Those are the class names that you will want to define in your app's Tailwind configuration (e.g., with @apply). You can also override them at the element level when you define your forms (within init()).
To get you started, here some that I use in a project that leverages this library:
Implementation Notes
- Delegators weren't an option for the forms, since the form names that are seen by FormElementManager::doCreate have varied 'resolvedName' values. Therefore, a delegator was instead used to "steal" FormElementManager out from under the ServiceManager. You will see that the ThemedFormDelegatorFactory does not use the callback provided by the service manager, instead, it returns something of a proxy object. In tests, there is no perceptible or deterministic performance impact.
- Themes are pushed into the Form Elements as they are added to the Forms provided by the library. This was necessary, since there is no link from the Element to the parent. It would have been more efficient to leave the theme data in the Form and have the helpers rely on that, but it is not possible without exhaustive modification to laminas/laminas-forms.
All versions of circlical-laminas-tailwind-forms with dependencies
laminas/laminas-servicemanager Version *
laminas/laminas-form Version *
laminas/laminas-config Version *
laminas/laminas-i18n Version *
laminas/laminas-view Version *
laminas/laminas-modulemanager Version *
laminas/laminas-escaper Version *
laminas/laminas-eventmanager Version *
laminas/laminas-mvc Version *