<?php
namespace App\Form;
use App\Entity\Gender;
use App\Entity\User;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Translation\TranslatableMessage;
use Symfony\Component\Validator\Constraints\IsTrue;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Contracts\Translation\TranslatorInterface;
class RegistrationFormType extends AbstractType
{
private TranslatorInterface $translator;
public function __construct(TranslatorInterface $translator){
$this->translator = $translator;
}
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('email', EmailType::class, [
'attr' => [
'class' => 'form-control'
]
])
->add('username', TextType::class, [
'attr' => [
'class' => 'form-control'
]
])
->add('firstName', TextType::class, [
'required' => false,
'attr' => [
'class' => 'form-control'
]
])
->add('lastName', TextType::class, [
'required' => false,
'attr' => [
'class' => 'form-control'
]
])
->add('mobile', TextType::class, [
'required' => false,
'attr' => [
'class' => 'form-control'
]
])
->add('agreeTerms', CheckboxType::class, [
'mapped' => false,
'attr' => [
'class' => 'form-check-input'
],
'constraints' => [
new IsTrue([
'message' => 'You should agree to our terms.',
]),
],
])
->add('plainPassword', PasswordType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'attr' => ['autocomplete' => 'new-password', 'class' => 'form-control' ],
'constraints' => [
new NotBlank([
'message' => 'Please enter a password',
]),
// new Length([
// 'min' => 4,
// 'minMessage' => 'Your password should be at least {{ limit }} characters',
// // max length allowed by Symfony for security reasons
// 'max' => 4096,
// ]),
],
])->add('gender', EntityType::class, [
'class' => Gender::class,
'choice_label' => function($choice){
return $this->translator->trans($choice->getType());
},
'attr' => [
'class' => 'form-select'
],
])
;
}
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => User::class,
]);
}
}