Via Composer:
$ composer require nepada/birth-number-input
extensions:
- Nepada\Bridges\BirthNumberInputDI\BirthNumberInputExtension
It will register extension method addBirthNumber($name, $label = null): BirthNumberInput
to Nette\Forms\Container
.
You can also use BirthNumberInputMixin
trait in your base form/container class to add method addBirthNumber($name, $label = null): BirthNumberInput
.
Example:
trait FormControls
{
use Nepada\Bridges\BirthNumberInputForms\BirthNumberInputMixin;
public function addContainer($name)
{
$control = new Container;
$control->setCurrentGroup($this->getCurrentGroup());
if ($this->currentGroup !== null) {
$this->currentGroup->add($control);
}
return $this[$name] = $control;
}
}
class Container extends Nette\Forms\Container
{
use FormControls;
}
class Form extends Nette\Forms\Form
{
use FormControls;
}
BirthNumberInput
is form control that uses birth number value object to represent its value (see nepada/birth-number for further details).
It automatically validates the user input and getValue()
method always returns BirthNumber
instance, or null
if the input is not filled.
$birthNumberInput = $form->addBirthNumber('birthNumber');
$birthNumberInput->setValue('invalid'); // \InvalidArgumentException is thrown
$birthNumberInput->setValue('000101 / 0009'); // the value is internally converted to BirthNumber value object
$birthNumberInput->getValue(); // BirthNumber instance for 000101/0009
Using precompiled bundles is the quick'n'dirty way of getting client side validation to work.
<script src="https://unpkg.com/nette-forms@%5E3.0/src/assets/netteForms.min.js"></script>
<script src="https://unpkg.com/@nepada/birth-number-input@%5E1.0/dist/birth-number-input.min.js"></script>
It is highly recommended to install the client side package via nmp and compile your own bundle.
Here is an example script for initialization of birth number input and Nette forms.
import Nette from 'nette-forms';
import initializeBirthNumberInput from '@nepada/birth-number-input';
initializeBirthNumberInput(Nette);
Nette.initOnLoad();