-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathFormBlock.php
More file actions
229 lines (187 loc) · 5.95 KB
/
FormBlock.php
File metadata and controls
229 lines (187 loc) · 5.95 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?php
namespace App\Models;
use Hashids\Hashids;
use App\Scopes\Sequence;
use Webpatser\Uuid\Uuid;
use App\Enums\FormBlockType;
use App\Models\FormBlockLogic;
use App\Enums\FormBlockInteractionType;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class FormBlock extends BaseModel
{
use HasFactory;
public const TEMPLATE_ATTRIBUTES = [
'type',
'message',
'title',
'options',
'is_required',
'is_disabled',
'parent_block',
'sequence',
];
protected $guarded = [];
protected $with = ['formBlockInteractions', 'formBlockLogics'];
protected $casts = [
'is_required' => 'boolean',
'is_disabled' => 'boolean',
'form_id' => 'integer',
'options' => 'array',
'type' => FormBlockType::class,
];
protected $appends = [
'interactions',
'logics',
];
protected $hidden = [
'formBlockInteractions',
'formBlockLogics',
];
protected static function boot()
{
parent::boot();
self::addGlobalScope(new Sequence());
self::creating(function ($model) {
$model->uuid = (string) Uuid::generate(4);
});
self::created(function ($model) {
$model->update([
'uuid' => (new Hashids())->encode($model->id),
]);
});
}
public function scopeOnlyInteractive($query)
{
return $query->whereNotIn('type', [
FormBlockType::none,
]);
}
public function hasResponseAction()
{
return ! in_array($this->type, [FormBlockType::none]);
}
public function hasInput()
{
return $this->type === 'input';
}
public function formSessionResponses()
{
return $this->hasMany(FormSessionResponse::class);
}
public function form()
{
return $this->belongsTo(Form::class, 'form_id');
}
public function formBlockInteractions()
{
return $this->hasMany(FormBlockInteraction::class, 'form_block_id');
}
public function formBlockLogics()
{
return $this->hasMany(FormBlockLogic::class, 'form_block_id');
}
public function activeInteractions()
{
return $this->hasMany(FormBlockInteraction::class, 'form_block_id')
->where('type', $this->getInteractionType())
->where('is_disabled', false)
->orderBy('name', 'asc');
}
public function getInteractionsAttribute()
{
return $this->formBlockInteractions;
}
public function getLogicsAttribute()
{
return $this->formBlockLogics;
}
public function getSessionCountAttribute()
{
return $this->formSessionResponses()->selectRaw('COUNT(DISTINCT form_session_id) as count')->first()->count;
}
public function getInteractionType(): ?FormBlockInteractionType
{
switch ($this->type) {
case FormBlockType::short:
case FormBlockType::email:
case FormBlockType::phone:
case FormBlockType::link:
case FormBlockType::number:
case FormBlockType::secret:
return FormBlockInteractionType::input;
case FormBlockType::long:
return FormBlockInteractionType::textarea;
case FormBlockType::file:
return FormBlockInteractionType::file;
case FormBlockType::checkbox:
case FormBlockType::radio:
return FormBlockInteractionType::button;
case FormBlockType::consent:
return FormBlockInteractionType::consent;
case FormBlockType::rating:
case FormBlockType::scale:
return FormBlockInteractionType::range;
case FormBlockType::date:
return FormBlockInteractionType::date;
default:
return null;
}
}
public function updateInteractionSequence(array $sequence)
{
foreach ($sequence as $pos => $id) {
$interaction = $this->formBlockInteractions->firstWhere('id', $id);
$interaction->update(['sequence' => $pos]);
}
}
public function toTemplate()
{
$attributes = $this->only(self::TEMPLATE_ATTRIBUTES);
// if the block is a group, we need to add an id attribute
if ($this->type === FormBlockType::group) {
$attributes['id'] = $this->uuid;
}
$interactions = $this->formBlockInteractions->map(function ($interactions) {
return $interactions->toTemplate();
})->toArray();
return array_merge($attributes, [
'formBlockInteractions' => $interactions,
]);
}
public function submit(FormSession $session, array $data)
{
if (! has_string_keys($data)) {
collect($data)->each(fn ($chunk) => $this->submit($session, $chunk));
} else {
$interaction = $this->formBlockInteractions()
->withUuid($data['actionId'])
->firstOrFail();
return $session->formSessionResponses()->updateOrCreate([
'form_block_id' => $this->id,
'form_block_interaction_id' => $interaction->id,
], [
'value' => $data['payload'],
]);
}
}
public function getSubmitPayload(string|array $payload)
{
if (is_array($payload)) {
$action = collect($payload)->map(function ($index) {
$action = $this->formBlockInteractions[$index];
return [
'actionId' => $action->uuid,
'payload' => $action->label,
];
})->toArray();
} elseif (is_string($payload)) {
$action = [
'actionId' => $this->formBlockInteractions[0]->uuid,
'payload' => $payload,
];
}
return [
$this->uuid => $action,
];
}
}