]> Raphaël G. Git Repositories - userbundle/commitdiff
Use register inherited forms
authorRaphaël Gertz <git@rapsys.eu>
Mon, 11 Dec 2023 02:19:40 +0000 (03:19 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Mon, 11 Dec 2023 02:19:40 +0000 (03:19 +0100)
Form/EditType.php [new file with mode: 0644]
Form/LoginType.php
Form/RecoverType.php [new file with mode: 0644]
Form/ResetType.php [new file with mode: 0644]

diff --git a/Form/EditType.php b/Form/EditType.php
new file mode 100644 (file)
index 0000000..24c659c
--- /dev/null
@@ -0,0 +1,38 @@
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys UserBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Rapsys\UserBundle\Form;
+
+use Symfony\Component\Form\FormBuilderInterface;
+use Symfony\Component\OptionsResolver\OptionsResolver;
+
+/**
+ * {@inheritdoc}
+ */
+class EditType extends RegisterType {
+       /**
+        * {@inheritdoc}
+        */
+       public function configureOptions(OptionsResolver $resolver): void {
+               //Call parent configure option
+               parent::configureOptions($resolver);
+
+               //Set defaults
+               $resolver->setDefaults(['mail' => false, 'password' => false]);
+       }
+
+       /**
+        * {@inheritdoc}
+        */
+       public function getName(): string {
+               return 'rapsys_user_edit';
+       }
+}
index d4413ede13ff0a2cbb70620f867958a3d6b7be50..4f82d751e56d0a8c3fd4fbe4d583371b403844ce 100644 (file)
 
 namespace Rapsys\UserBundle\Form;
 
-use Symfony\Component\Form\AbstractType;
-use Symfony\Component\Form\Extension\Core\Type\EmailType;
-use Symfony\Component\Form\Extension\Core\Type\PasswordType;
-use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
-use Symfony\Component\Form\Extension\Core\Type\SubmitType;
-use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\OptionsResolver\OptionsResolver;
-use Symfony\Component\Validator\Constraints\Email;
-use Symfony\Component\Validator\Constraints\NotBlank;
-
-class LoginType extends AbstractType {
-       /**
-        * {@inheritdoc}
-        */
-       public function buildForm(FormBuilderInterface $builder, array $options): FormBuilderInterface {
-               //Create form
-               $form = $builder;
-
-               //Add extra mail field
-               if (!empty($options['mail'])) {
-                       $form->add('mail', EmailType::class, ['attr' => ['placeholder' => 'Your mail'], 'constraints' => [new NotBlank(['message' => 'Please provide your mail']), new Email(['message' => 'Your mail doesn\'t seems to be valid'])], 'required' => true]);
-               }
-
-               //Add extra password field
-               if (!empty($options['password'])) {
-                       //Add password repeated field
-                       if (!empty($options['password_repeated'])) {
-                               $form->add('password', RepeatedType::class, ['type' => PasswordType::class, 'invalid_message' => 'The password and confirmation must match', 'first_options' => ['attr' => ['placeholder' => 'Your password'], 'label' => 'Password'], 'second_options' => ['attr' => ['placeholder' => 'Your password confirmation'], 'label' => 'Confirm password'], 'options' => ['constraints' => [new NotBlank(['message' => 'Please provide your password'])]], 'required' => true]);
-                       //Add password field
-                       } else {
-                               $form->add('password', PasswordType::class, ['attr' => ['placeholder' => 'Your password'], 'constraints' => [new NotBlank(['message' => 'Please provide your password'])], 'required' => true]);
-                       }
-               }
-
-               //Add submit
-               $form->add('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]);
-
-               //Return form
-               return $form;
-       }
 
+/**
+ * {@inheritdoc}
+ */
+class LoginType extends RegisterType {
        /**
         * {@inheritdoc}
         */
        public function configureOptions(OptionsResolver $resolver): void {
-               //Set defaults
-               $resolver->setDefaults(['error_bubbling' => true, 'mail' => true, 'password' => true, 'password_repeated' => true]);
+               //Call parent configure option
+               parent::configureOptions($resolver);
 
-               //Add extra mail option
-               $resolver->setAllowedTypes('mail', 'boolean');
-
-               //Add extra password option
-               $resolver->setAllowedTypes('password', 'boolean');
-
-               //Add extra password repeated option
-               $resolver->setAllowedTypes('password_repeated', 'boolean');
+               //Set defaults
+               $resolver->setDefaults(['civility' => false, 'password' => true, 'password_repeated' => false, 'forename' => false, 'surname' => false]);
        }
 
        /**
diff --git a/Form/RecoverType.php b/Form/RecoverType.php
new file mode 100644 (file)
index 0000000..40be11b
--- /dev/null
@@ -0,0 +1,37 @@
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys UserBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Rapsys\UserBundle\Form;
+
+use Symfony\Component\OptionsResolver\OptionsResolver;
+
+/**
+ * {@inheritdoc}
+ */
+class RecoverType extends RegisterType {
+       /**
+        * {@inheritdoc}
+        */
+       public function configureOptions(OptionsResolver $resolver): void {
+               //Call parent configure option
+               parent::configureOptions($resolver);
+
+               //Set defaults
+               $resolver->setDefaults(['civility' => false, 'mail' => true, 'password' => true, 'forename' => false, 'surname' => false]);
+       }
+
+       /**
+        * {@inheritdoc}
+        */
+       public function getName(): string {
+               return 'rapsys_user_recover';
+       }
+}
diff --git a/Form/ResetType.php b/Form/ResetType.php
new file mode 100644 (file)
index 0000000..3033a43
--- /dev/null
@@ -0,0 +1,37 @@
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys UserBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Rapsys\UserBundle\Form;
+
+use Symfony\Component\OptionsResolver\OptionsResolver;
+
+/**
+ * {@inheritdoc}
+ */
+class ResetType extends RegisterType {
+       /**
+        * {@inheritdoc}
+        */
+       public function configureOptions(OptionsResolver $resolver): void {
+               //Call parent configure option
+               parent::configureOptions($resolver);
+
+               //Set defaults
+               $resolver->setDefaults(['civility' => false, 'mail' => false, 'password' => true, 'forename' => false, 'surname' => false]);
+       }
+
+       /**
+        * {@inheritdoc}
+        */
+       public function getName(): string {
+               return 'rapsys_user_reset';
+       }
+}