-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathToastrBuilder.php
416 lines (338 loc) · 9.47 KB
/
ToastrBuilder.php
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
<?php
declare(strict_types=1);
namespace Flasher\Toastr\Prime;
use Flasher\Prime\Notification\Envelope;
use Flasher\Prime\Notification\NotificationBuilder;
/**
* @phpstan-type NotificationType "success"|"info"|"warning"|"error"
* @phpstan-type OptionsType array{
* closeButton?: bool,
* closeClass?: string,
* closeDuration?: int,
* closeEasing?: string,
* closeHtml?: string,
* closeMethod?: string,
* closeOnHover?: bool,
* containerId?: string,
* debug?: bool,
* escapeHtml?: bool,
* extendedTimeOut?: int,
* hideDuration?: int,
* hideEasing?: string,
* hideMethod?: string,
* iconClass?: string,
* messageClass?: string,
* newestOnTop?: bool,
* onHidden?: string,
* onShown?: string,
* positionClass?: "toast-top-right"|"toast-top-center"|"toast-bottom-center"|"toast-top-full-width"|"toast-bottom-full-width"|"toast-top-left"|"toast-bottom-right"|"toast-bottom-left",
* preventDuplicates?: bool,
* progressBar?: bool,
* progressClass?: string,
* rtl?: bool,
* showDuration?: int,
* showEasing?: string,
* showMethod?: string,
* tapToDismiss?: bool,
* target?: string,
* timeOut?: int,
* titleClass?: string,
* toastClass?: string,
* }
*/
final class ToastrBuilder extends NotificationBuilder
{
/**
* @phpstan-param NotificationType $type
*/
public function type(string $type): static
{
return parent::type($type);
}
/**
* @param OptionsType $options
*/
public function success(string $message, array $options = [], ?string $title = null): Envelope
{
return parent::success($message, $options, $title);
}
/**
* @param OptionsType $options
*/
public function error(string $message, array $options = [], ?string $title = null): Envelope
{
return parent::error($message, $options, $title);
}
/**
* @param OptionsType $options
*/
public function info(string $message, array $options = [], ?string $title = null): Envelope
{
return parent::info($message, $options, $title);
}
/**
* @param OptionsType $options
*/
public function warning(string $message, array $options = [], ?string $title = null): Envelope
{
return parent::warning($message, $options, $title);
}
/**
* @phpstan-param NotificationType $type
* @phpstan-param OptionsType $options
*/
public function flash(?string $type = null, ?string $message = null, array $options = [], ?string $title = null): Envelope
{
return parent::flash($type, $message, $options, $title);
}
/**
* @param OptionsType $options
*/
public function options(array $options, bool $append = true): static
{
return parent::options($options, $append);
}
/**
* @template T of OptionsType
* @template K of key-of<T>
*
* @phpstan-param K $name
* @phpstan-param T[K] $value
*/
public function option(string $name, mixed $value): static
{
return parent::option($name, $value);
}
/**
* Enable a close button.
*/
public function closeButton(bool $closeButton = true): self
{
$this->option('closeButton', $closeButton);
return $this;
}
public function closeClass(string $closeClass): self
{
$this->option('closeClass', $closeClass);
return $this;
}
public function closeDuration(int $closeDuration): self
{
$this->option('closeDuration', $closeDuration);
return $this;
}
public function closeEasing(string $closeEasing): self
{
$this->option('closeEasing', $closeEasing);
return $this;
}
/**
* Override the close button's HTML.
*/
public function closeHtml(string $closeHtml): self
{
$this->option('closeHtml', $closeHtml);
return $this;
}
public function closeMethod(string $closeMethod): self
{
$this->option('closeMethod', $closeMethod);
return $this;
}
public function closeOnHover(bool $closeOnHover = true): self
{
$this->option('closeOnHover', $closeOnHover);
return $this;
}
public function containerId(string $containerId): self
{
$this->option('containerId', $containerId);
return $this;
}
public function debug(bool $debug = true): self
{
$this->option('debug', $debug);
return $this;
}
/**
* In case you want to escape HTML characters in title and message.
*/
public function escapeHtml(bool $escapeHtml = true): self
{
$this->option('escapeHtml', $escapeHtml);
return $this;
}
/**
* How long the toast will display after a user hovers over it.
*/
public function extendedTimeOut(int $extendedTimeOut): self
{
$this->option('extendedTimeOut', $extendedTimeOut);
return $this;
}
/**
* Specifies the time during which the pop-up closes in ms.
*/
public function hideDuration(int $hideDuration): self
{
$this->option('hideDuration', $hideDuration);
return $this;
}
/**
* @param string $hideEasing
*
* Indicates the entry transition of the pop-up
*/
public function hideEasing(string $hideEasing): self
{
$this->option('hideEasing', $hideEasing);
return $this;
}
/**
* @param string $hideMethod
*
* Indicates the opening animation of the pop-up
*/
public function hideMethod(string $hideMethod): self
{
$this->option('hideMethod', $hideMethod);
return $this;
}
public function iconClass(string $iconClass): self
{
$this->option('iconClass', $iconClass);
return $this;
}
public function messageClass(string $messageClass): self
{
$this->option('messageClass', $messageClass);
return $this;
}
/**
* Show newest toast at bottom (top is default).
*/
public function newestOnTop(bool $newestOnTop = true): self
{
$this->option('newestOnTop', $newestOnTop);
return $this;
}
public function onHidden(string $onHidden): self
{
$this->option('onHidden', $onHidden);
return $this;
}
public function onShown(string $onShown): self
{
$this->option('onShown', $onShown);
return $this;
}
/**
* @phpstan-param OptionsType['positionClass'] $positionClass
*/
public function positionClass(string $positionClass): self
{
$this->option('positionClass', $positionClass);
return $this;
}
/**
* Rather than having identical toasts stack, set the preventDuplicates property to true. Duplicates are matched to
* the previous toast based on their message content.
*/
public function preventDuplicates(bool $preventDuplicates = true): self
{
$this->option('preventDuplicates', $preventDuplicates);
return $this;
}
/**
* Visually indicate how long before a toast expires.
*/
public function progressBar(bool $progressBar = true): self
{
$this->option('progressBar', $progressBar);
return $this;
}
public function progressClass(string $progressClass): self
{
$this->option('progressClass', $progressClass);
return $this;
}
/**
* Flip the toastr to be displayed properly for right-to-left languages.
*/
public function rtl(bool $rtl = true): self
{
$this->option('rtl', $rtl);
return $this;
}
/**
* Specifies the time during which the pop-up opens in ms.
*/
public function showDuration(int $showDuration): self
{
$this->option('showDuration', $showDuration);
return $this;
}
/**
* @param string $showEasing
*
* Indicates the entry transition of the pop-up
*/
public function showEasing(string $showEasing): self
{
$this->option('showEasing', $showEasing);
return $this;
}
/**
* @param string $showMethod
*
* Indicates the opening animation of the pop-up
*/
public function showMethod(string $showMethod): self
{
$this->option('showMethod', $showMethod);
return $this;
}
/**
* Forces the user to validate the pop-up before closing.
*/
public function tapToDismiss(bool $tapToDismiss = true): self
{
$this->option('tapToDismiss', $tapToDismiss);
return $this;
}
public function target(string $target): self
{
$this->option('target', $target);
return $this;
}
/**
* How long the toast will display without user interaction.
*/
public function timeOut(int $timeOut, ?int $extendedTimeOut = null): self
{
$this->option('timeOut', $timeOut);
if (null !== $extendedTimeOut) {
$this->extendedTimeOut($extendedTimeOut);
}
return $this;
}
public function titleClass(string $titleClass): self
{
$this->option('titleClass', $titleClass);
return $this;
}
public function toastClass(string $toastClass): self
{
$this->option('toastClass', $toastClass);
return $this;
}
/**
* Prevent from Auto Hiding.
*/
public function persistent(): self
{
$this->timeOut(0);
$this->extendedTimeOut(0);
return $this;
}
}