using jquery timepicker for duration with symfony

1.3k Views Asked by At

I am trying to make the jquery timepicker work with symfony.

In my form I have :

    ->add('workingDuration', 'datetime', array(
            'label'=>'Temps de travail',
            'required' => false,
            'widget' => 'single_text',
            'attr'=>array
            (
                'class'=>'timepicker'
            )))

and in my javascript a simple $('.timpicker').timepicker().

But I have the following issues : - if my database field type is of type 'time', I get

 'Error: Call to a member function format() on a non-object'
public function convertToDatabaseValue($value, AbstractPlatform $platform)
    {
        return ($value !== null)
            ? $value->format($platform->getTimeFormatString()) : null;
    }
  • if my form field is of type 'time', the timepicker just does not launch
  • if the database field is of type datetime, as well as the form type, I have a full date stored to the database and when reading back this element, the timepicker addon does not recognize the format and does not initiate properly.

How can I do to make it work. Actually I'm looking forward to only store a short duration, hence the need for the timepicker.

2

There are 2 best solutions below

0
On BEST ANSWER

Well, I finally figured out of to answer the dilemna.

Basically, I needed to convert a time / a string to a datetime object and vice versa so as to make the jquery addon time picker work to store a duration.

The answer is :

  1. use time in the database : * @ORM\Column(type="time", nullable=true)
  2. create a data Transformer which transforms a datetime object to time string and vice-versa :

    namespace AppBundle\Form\DataTransformer;

    use Symfony\Component\Form\DataTransformerInterface;

    class DateTimeToDurationTransformer implements DataTransformerInterface

    { /** * @param mixed $dateTime * @internal param mixed $value * @return string */ public function transform($dateTime) { if (null === $dateTime) { return ""; }

        $time = $dateTime->format('H:i:s');
    
        return $time;
    }
    
    /**
     * Transforms a string (number) to an object (issue).
     *
     * @param  string $duration
     * @return mixed|object
     */
    public function reverseTransform($duration)
    {
        if (!$duration) {
            return null;
        }
    
        $dateTime = new \DateTime($duration);
    
        return $dateTime;
    }
    

    }

  3. create a custom TimePicker type to add to your forms

    namespace AppBundle\Form\Type;

    use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use AppBundle\Form\DataTransformer\DateTimeToDurationTransformer; use Symfony\Component\OptionsResolver\OptionsResolverInterface;

    class TimePickerType extends AbstractType {

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $transformer = new DateTimeToDurationTransformer();
        $builder->addModelTransformer($transformer);
    }
    
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
                'invalid_message' => "La durée indiquée n'est pas au bon format",
                'attr' => array(
                    'class'=>'timepicker',
                )));
    }
    
    public function getParent()
    {
        return 'text';
    }
    
    public function getName()
    {
        return 'timepicker';
    }
    

    }

  4. register the TimePicker type in your services

    services: timepicker.type: class: %timepicker.type.class% tags: - { name: form.type, alias: timepicker }

  5. use the newly created type in your form:

    $builder
                ->add('workingDuration', 'timepicker', array(
                            'label'=>'Temps total de travail',
                            'required' => false,
                            'attr'=>array
                            (
                                'class' => 'timepicker',
                                'data-toggle'=>"tooltip",
                                'data-placement'=>"top",
                                'title'=>"Indiquez le temps total de travail consacré à la recette si il diffère du temps de travail cumulé des étapes de production.",
                            )))
    

That's what it takes but it's working now!!

Also don't forget to use the timepicker with timeFormat HH:mm:ss

11
On

http://www.sql.org/sql-database/postgresql/manual/datatype-datetime.html

time [ (p) ] [ without time zone ]  times of day only   8 bytes     00:00:00.00     23:59:59.99     1 microsecond
time [ (p) ]     with time zone     times of day only   12 bytes    00:00:00.00+12  23:59:59.99-12  1 microsecond

Method ->format() is for DateTime object. (see. http://php.net/manual/en/datetime.format.php)

Change in Entity / document type of workingDuration field from "time" to "datetime" (http://symfony.com/doc/current/reference/forms/types/datetime.html)