kreemer / ux-autocomplete-js
Installs: 70
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.4
- ext-json: *
- symfony/config: ^4.4.17|^5.0
- symfony/dependency-injection: ^4.4.17|^5.0
- symfony/doctrine-bridge: ^5.3
- symfony/form: ^5.3
- symfony/http-kernel: ^4.4.17|^5.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.1
- phpstan/phpstan: ^0.12.99
- phpunit/phpunit: ^9
- symfony/framework-bundle: ^4.4.17|^5.0
- symfony/phpunit-bridge: ^5.2
- symfony/twig-bundle: ^4.4.17|^5.0
- symfony/var-dumper: ^4.4.17|^5.0
Conflicts
- symfony/flex: <1.13
README
UX autoComplete.js is a Symfony bundle integrating the autoComplete.js library in Symfony applications. It is part of the Symfony UX initiative.
Installation
UX autoComplete.js requires PHP 7.4+ and Symfony 4.4+.
Install this bundle using Composer and Symfony Flex:
composer require kreemer/ux-autocomplete-js
# Don't forget to install the JavaScript dependencies as well and compile
yarn install --force
yarn encore dev
Also make sure you have at least version 2.0 of @symfony/stimulus-bridge in your package.json
file.
Usage
To use this UX Package, inject the AutoCompleteBuilderInterface
service and create an autoComplete model in PHP:
// ... use Kreemer\UX\AutoCompleteJS\Builder\AutoCompleteBuilderInterface; class IndexController extends AbstractController { /** * @Route("/", name="homepage") */ public function index(AutoCompleteBuilderInterface $autoCompleteBuilder): Response { $autoComplete = $autoCompleteBuilder->createAutocomplete(); $autoComplete->getDataModel()->setSrc([ 'here', 'are', 'the', 'options']); return $this->render('index/index.html.twig', [ 'autoComplete' => $autoComplete, ]); } }
All options and data are provided as-is to autoComplete.js. You can read autoComplete.js documentation to discover them all.
Once created in PHP, a autoComplete model can be displayed using Twig:
{{ render_autocomplete(autoComplete) }} {# You can pass HTML attributes as a second argument to add them on the <div> tag #} {{ render_autocomplete(autoComplete, {'class': 'my-class'}) }}
Form type
The bundle provides a custom form type which can be used like an EntityType.
$form = $this->createFormBuilder($array) ->add('user', AutoCompleteType::class, [ 'class' => User::class, 'choice_label' => 'name', ]) ->add('save', SubmitType::class, ['label' => 'Submit']) ->getForm();
The form itself will be rendered automatically with an input box which the entity class can be selected.
Extend the default behavior
The controller allows you to extend its default behavior using a custom Stimulus controller:
// custom_controller.js import { Controller } from 'stimulus'; export default class extends Controller { connect() { this.element.addEventListener('autocomplete:pre-connect', this._onPreConnect); this.element.addEventListener('autocomplete:connect', this._onConnect); this.element.addEventListener('autocomplete:bound', this._onBound); } disconnect() { // You should always remove listeners when the controller is disconnected to avoid side effects this.element.removeEventListener('autocomplete:pre-connect', this._onPreConnect); this.element.removeEventListener('autocomplete:connect', this._onConnect); this.element.removeEventListener('autocomplete:bound', this._onBound); } _onPreConnect(event) { console.log(event.detail.config); } _onConnect(event) { console.log(event.detail.autoCompleteJS); // You can access the instance here } _onBound(event) { console.log(event.detail.dataTarget); // You can access data holder here } }
Then in your render call, add your controller as an HTML attribute:
{{ render_autocomplete(autoComplete, {'data-controller': 'custom'}) }}
This is the preferred method to extend the default functionality. Note that with the preConnect event it is possible to attach handlers and callback functions.
Run tests
PHP tests
php vendor/bin/phpunit
JavaScript tests
cd Resources/assets yarn test