summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/FormElement/ScheduleElement/Recurrence.php
blob: 8693b20be06362033f63b8cd1064e1c7d173b91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php

namespace ipl\Web\FormElement\ScheduleElement;

use DateTime;
use ipl\Html\Attributes;
use ipl\Html\FormElement\BaseFormElement;
use ipl\Html\HtmlElement;
use ipl\Html\Text;
use ipl\I18n\Translation;
use ipl\Scheduler\Contract\Frequency;
use ipl\Scheduler\RRule;

class Recurrence extends BaseFormElement
{
    use Translation;

    protected $tag = 'div';

    protected $defaultAttributes = ['class' => 'schedule-recurrences'];

    /** @var callable A callable that generates a frequency instance */
    protected $frequencyCallback;

    /** @var callable A validation callback for the schedule element */
    protected $validateCallback;

    /**
     * Set a validation callback that will be called when assembling this element
     *
     * @param callable $callback
     *
     * @return $this
     */
    public function setValid(callable $callback): self
    {
        $this->validateCallback = $callback;

        return $this;
    }

    /**
     * Set a callback that generates an {@see Frequency} instance
     *
     * @param callable $callback
     *
     * @return $this
     */
    public function setFrequency(callable $callback): self
    {
        $this->frequencyCallback = $callback;

        return $this;
    }

    protected function assemble()
    {
        list($isValid, $reason) = ($this->validateCallback)();
        if (! $isValid) {
            // Render why we can't generate the recurrences
            $this->addHtml(Text::create($reason));

            return;
        }

        /** @var RRule $frequency */
        $frequency = ($this->frequencyCallback)();
        $recurrences = $frequency->getNextRecurrences(new DateTime(), 3);
        if (! $recurrences->valid()) {
            // Such a situation can be caused by setting an invalid end time
            $this->addHtml(HtmlElement::create('p', null, Text::create($this->translate('Never'))));

            return;
        }

        foreach ($recurrences as $recurrence) {
            $this->addHtml(HtmlElement::create('p', null, $recurrence->format($this->translate('D, Y/m/d, H:i:s'))));
        }
    }

    protected function registerAttributeCallbacks(Attributes $attributes)
    {
        parent::registerAttributeCallbacks($attributes);

        $attributes
            ->registerAttributeCallback('frequency', null, [$this, 'setFrequency'])
            ->registerAttributeCallback('validate', null, [$this, 'setValid']);
    }
}