-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStyle.php
390 lines (337 loc) · 9.91 KB
/
Style.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
<?php declare(strict_types=1);
/**
* This file is part of toolkit/cli-utils.
*
* @link https://github.com/php-toolkit/cli-utils
* @author https://github.com/inhere
* @license MIT
*/
namespace Toolkit\Cli;
use InvalidArgumentException;
use Toolkit\Cli\Color\ColorCode;
use Toolkit\Cli\Color\ColorTag;
use function array_key_exists;
use function array_keys;
use function array_merge;
use function array_values;
use function is_array;
use function sprintf;
use function strpos;
/**
* Class Style
*
* @package Inhere\Console\Component\Style
* @link https://github.com/ventoviro/windwalker-IO
*
* @method string info(string $message)
* @method string comment(string $message)
* @method string success(string $message)
* @method string warning(string $message)
* @method string danger(string $message)
* @method string error(string $message)
*/
class Style
{
/**
* there are some default style tags
*/
public const NORMAL = 'normal';
public const FAINTLY = 'faintly';
public const BOLD = 'bold';
public const NOTICE = 'notice';
public const PRIMARY = 'primary';
public const SUCCESS = 'success';
public const INFO = 'info';
public const NOTE = 'note';
public const WARNING = 'warning';
public const COMMENT = 'comment';
public const QUESTION = 'question';
public const DANGER = 'danger';
public const ERROR = 'error';
/**
* Regex to match tags
*
* @var string
* @deprecated please use ColorTag::MATCH_TAG
*/
public const COLOR_TAG = '/<([a-zA-Z0-9=;]+)>(.*?)<\/\\1>/s';
/**
* @var self|null
*/
private static ?Style $instance = null;
/**
* Array of Color objects
*
* @var ColorCode[]
*/
private array $styles = [];
/**
* @return Style
*/
public static function instance(): self
{
return self::global();
}
/**
* @return Style
*/
public static function global(): self
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Constructor
*
* @param string $fg 前景色(字体颜色)
* @param string $bg 背景色
* @param array $options 其它选项
*/
public function __construct(string $fg = '', string $bg = '', array $options = [])
{
if ($fg || $bg || $options) {
$this->add('base', $fg, $bg, $options);
}
$this->loadDefaultStyles();
}
/**
* @param string $method
* @param array $args
*
* @return string
*/
public function __call(string $method, array $args): string
{
if (isset($args[0]) && $this->hasStyle($method)) {
return $this->format(sprintf('<%s>%s</%s>', $method, $args[0], $method));
}
throw new InvalidArgumentException("You called method is not exists: $method");
}
/**
* Adds predefined color styles to the Color styles
* default primary success info warning danger
*/
protected function loadDefaultStyles(): void
{
$this->addByArray(self::NORMAL, ['fg' => 'normal'])
// 不明显的 浅灰色的
->addByArray(self::FAINTLY, ['fg' => 'normal', 'options' => ['italic']])
->addByArray(self::BOLD, ['options' => ['bold']])
->addByArray(self::INFO, ['fg' => 'green',])//'options' => ['bold']
->addByArray(self::NOTE, ['fg' => 'cyan', 'options' => ['bold']])//'options' => ['bold']
->addByArray(self::PRIMARY, ['fg' => 'yellow', 'options' => ['bold']])//
->addByArray(self::SUCCESS, ['fg' => 'green', 'options' => ['bold']])
->addByArray(self::NOTICE, ['options' => ['bold', 'underscore'],])
->addByArray(self::WARNING, ['fg' => 'black', 'bg' => 'yellow',])//'options' => ['bold']
->addByArray(self::COMMENT, ['fg' => 'yellow',])//'options' => ['bold']
->addByArray(self::QUESTION, ['fg' => 'black', 'bg' => 'cyan'])
->addByArray(self::DANGER, ['fg' => 'red',])// 'bg' => 'magenta', 'options' => ['bold']
->add(self::ERROR, 'white', 'red', [], true)->add('underline', 'normal', '', ['underscore'])
->add('blue', 'blue')->add('cyan', 'cyan')->add('magenta', 'magenta')->add('mga', 'magenta')
->add('red', 'red')->addByArray('yellow', ['fg' => 'yellow'])
->addByArray('darkGray', ['fg' => 'black', 'extra' => true]);
}
/**
* Process a string use style
*
* @param string $style
* @param string $text
*
* @return string
*/
public function apply(string $style, string $text): string
{
return $this->format(self::wrap($text, $style));
}
/**
* Process a string.
*
* @param string $text
*
* @return string
*/
public function t(string $text): string
{
return $this->format($text);
}
/**
* Process a string.
*
* @param string $text
*
* @return string
*/
public function render(string $text): string
{
return $this->format($text);
}
/**
* @param string $text
*
* @return string
*/
public function format(string $text): string
{
if (!$text || !str_contains($text, '</')) {
return $text;
}
// if don't support output color text, clear color tag.
if (!Color::isShouldRenderColor()) {
return self::stripColor($text);
}
if (!$matches = ColorTag::matchAll($text)) {
return $text;
}
foreach ((array)$matches[0] as $i => $m) {
$key = $matches[1][$i];
if (array_key_exists($key, $this->styles)) {
$text = ColorTag::replaceColor($text, $key, $matches[2][$i], (string)$this->styles[$key]);
} elseif (isset(Color::STYLES[$key])) {
$text = ColorTag::replaceColor($text, $key, $matches[2][$i], Color::STYLES[$key]);
/** Custom style format @see ColorCode::fromString() */
} elseif (strpos($key, '=')) {
$text = ColorTag::replaceColor($text, $key, $matches[2][$i], (string)ColorCode::fromString($key));
}
}
return $text;
}
/**
* Strip color tags from a string.
*
* @param string $string
*
* @return string
*/
public static function stripColor(string $string): string
{
return ColorTag::strip($string);
}
/****************************************************************************
* Attr Color Style
****************************************************************************/
/**
* Add a style.
*
* @param string $name
* @param array|string|ColorCode $fg 前景色|Color对象|也可以是style配置数组(@see self::addByArray())
* 当它为Color对象或配置数组时,后面两个参数无效
* @param string $bg 背景色
* @param array $options 其它选项
* @param bool $extra
*
* @return $this
*/
public function add(string $name, array|string|ColorCode $fg = '', string $bg = '', array $options = [], bool $extra = false): self
{
if (is_array($fg)) {
return $this->addByArray($name, $fg);
}
if ($fg instanceof ColorCode) {
$this->styles[$name] = $fg;
} else {
$this->styles[$name] = ColorCode::make($fg, $bg, $options, $extra);
}
return $this;
}
/**
* Add a style by an array config
*
* @param string $name
* @param array $styleConfig 样式设置信息
* e.g
* [
* 'fg' => 'white',
* 'bg' => 'black',
* 'extra' => true,
* 'options' => ['bold', 'underscore']
* ]
*
* @return $this
*/
public function addByArray(string $name, array $styleConfig): self
{
$style = [
'fg' => '',
'bg' => '',
'extra' => false,
'options' => []
];
$config = array_merge($style, $styleConfig);
// expand
[$fg, $bg, $extra, $options] = array_values($config);
$this->styles[$name] = ColorCode::make($fg, $bg, $options, (bool)$extra);
return $this;
}
/**
* @return array
*/
public function getStyleNames(): array
{
return array_keys($this->styles);
}
/**
* @return array
*/
public function getNames(): array
{
return array_keys($this->styles);
}
/**
* @return array
*/
public function getStyles(): array
{
return $this->styles;
}
/**
* @param $name
*
* @return ColorCode|null
*/
public function getStyle($name): ?ColorCode
{
return $this->styles[$name] ?? null;
}
/**
* @param $name
*
* @return bool
*/
public function hasStyle($name): bool
{
return isset($this->styles[$name]);
}
/**
* wrap a color style tag
*
* @param string $text
* @param string $tag
*
* @return string
*/
public static function wrap(string $text, string $tag): string
{
if (!$text || !$tag) {
return $text;
}
return "<$tag>$text</$tag>";
}
/**
* Method to get property NoColor
*/
public static function isNoColor(): bool
{
return Color::isNoColor();
}
/**
* Method to set property noColor
*
* @param bool $noColor
*/
public static function setNoColor(bool $noColor = true): void
{
Color::setNoColor($noColor);
}
}