1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Yiisoft\Yii\Bootstrap5; |
6
|
|
|
|
7
|
|
|
use Yiisoft\Widget\Widget as YiiWidget; |
8
|
|
|
|
9
|
|
|
abstract class Widget extends YiiWidget |
10
|
|
|
{ |
11
|
|
|
public const THEME_DARK = 'dark'; |
12
|
|
|
public const THEME_LIGHT = 'light'; |
13
|
|
|
|
14
|
|
|
private ?string $id = null; |
15
|
|
|
private bool $autoGenerate = true; |
16
|
|
|
private string $autoIdPrefix = 'w'; |
17
|
|
|
private static int $counter = 0; |
18
|
|
|
protected ?string $theme = null; |
19
|
|
|
|
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Returns the ID of the widget. |
23
|
|
|
* |
24
|
|
|
* $param string|null $suffix |
25
|
|
|
* |
26
|
|
|
* @return string|null ID of the widget. |
27
|
|
|
*/ |
28
|
177 |
|
public function getId(?string $suffix = null): ?string |
29
|
|
|
{ |
30
|
177 |
|
if ($this->autoGenerate && $this->id === null) { |
31
|
176 |
|
$this->id = $this->autoIdPrefix . static::$counter++ . $suffix; |
|
|
|
|
32
|
|
|
} |
33
|
|
|
|
34
|
177 |
|
return $this->id; |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* Set the ID of the widget. |
39
|
|
|
* |
40
|
|
|
* @return static |
41
|
|
|
*/ |
42
|
1 |
|
public function id(string $value): static |
43
|
|
|
{ |
44
|
1 |
|
$new = clone $this; |
45
|
1 |
|
$new->id = $value; |
46
|
|
|
|
47
|
1 |
|
return $new; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* Counter used to generate {@see id} for widgets. |
52
|
|
|
*/ |
53
|
166 |
|
public static function counter(int $value): void |
54
|
|
|
{ |
55
|
166 |
|
self::$counter = $value; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* The prefix to the automatically generated widget IDs. |
60
|
|
|
* |
61
|
|
|
* @return static |
62
|
|
|
* {@see getId()} |
63
|
|
|
*/ |
64
|
1 |
|
public function autoIdPrefix(string $value): static |
65
|
|
|
{ |
66
|
1 |
|
$new = clone $this; |
67
|
1 |
|
$new->autoIdPrefix = $value; |
68
|
|
|
|
69
|
1 |
|
return $new; |
70
|
|
|
} |
71
|
|
|
|
72
|
16 |
|
public function withTheme(?string $theme): static |
73
|
|
|
{ |
74
|
16 |
|
$new = clone $this; |
75
|
16 |
|
$new->theme = $theme; |
76
|
|
|
|
77
|
16 |
|
return $new; |
78
|
|
|
} |
79
|
|
|
|
80
|
3 |
|
public function withDarkTheme(): static |
81
|
|
|
{ |
82
|
3 |
|
return $this->withTheme(self::THEME_DARK); |
83
|
|
|
} |
84
|
|
|
|
85
|
2 |
|
public function withLightTheme(): static |
86
|
|
|
{ |
87
|
2 |
|
return $this->withTheme(self::THEME_LIGHT); |
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|