-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathShowController.php
321 lines (274 loc) · 8.01 KB
/
ShowController.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
<?php declare(strict_types=1);
/**
* The file is part of inhere/console
*
* @author https://github.com/inhere
* @homepage https://github.com/inhere/php-console
* @license https://github.com/inhere/php-console/blob/master/LICENSE
*/
namespace Inhere\Console\Examples\Controller;
use Inhere\Console\Component\Formatter\HelpPanel;
use Inhere\Console\Component\Formatter\Panel;
use Inhere\Console\Component\Symbol\Char;
use Inhere\Console\Component\Symbol\Emoji;
use Inhere\Console\Controller;
use Inhere\Console\Util\Show;
use ReflectionException;
use Toolkit\Cli\Color;
use Toolkit\Cli\Util\Highlighter;
use Toolkit\PFlag\FlagsParser;
use function file_get_contents;
/**
* Class ShowController
* @package Inhere\Console\Examples\Controller
*/
class ShowController extends Controller
{
protected static string $name = 'show';
protected static string $desc = 'there are some demo commands for show format data';
public static function commandAliases(): array
{
return [
'hp' => 'helpPanel',
'hpl' => 'helpPanel',
'hl' => 'highlight',
];
}
/**
* @return array
*/
protected function getOptions(): array
{
return [
'-c, --common' => 'This is a common option for all sub-commands',
];
}
/**
* output format message: title
*/
public function titleCommand(): int
{
$this->output->title('title show');
return 0;
}
/**
* output format message: splitLine
*
* @options
* -w, --width int;The split line width. default is current screen width.
*/
public function splitLineCommand(FlagsParser $fs): int
{
$width = $fs->getOpt('width');
$this->output->splitLine('', '=', $width);
$this->output->splitLine('split Line', '-', $width);
$this->output->splitLine('split 中文 Line', '-', $width);
return 0;
}
/**
* output format message: section
*/
public function sectionCommand(): int
{
$body = 'If screen size could not be detected, or the indentation is greater than the screen size, the text will not be wrapped.' .
'Word wrap text with indentation to fit the screen size,' .
'Word wrap text with indentation to fit the screen size,' .
'Word wrap text with indentation to fit the screen size,' .
'Word wrap text with indentation to fit the screen size,';
$this->output->section('section show', $body, [
'pos' => 'l'
]);
return 0;
}
/**
* output format message: panel
*/
public function panelCommand(): void
{
$data = [
'application version' => '1.2.0',
'system version' => '5.2.3',
'key' => 'value ...',
'a only value message text',
];
Show::panel($data, 'panel show', [
'borderChar' => '*'
]);
Show::panel($data, 'panel show', [
'borderChar' => '='
]);
Panel::new([
'data' => $data,
'title' => 'panel show',
'titleBorder' => '=',
'footBorder' => '=',
])->display();
}
/**
* a example for use color text output by Style::class
* @usage {fullCommand}
* @return int
*/
public function colorCommand(): int
{
if (!$this->output->supportColor()) {
$this->write('Current terminal is not support output color text.');
return 0;
}
$this->write('color style text output:');
$styles = $this->output->getStyle()->getStyleNames();
foreach ($styles as $style) {
$this->output->write("<$style>$style style text</$style>");
}
return 0;
}
/**
* a example for use color text output by Style::class
*/
public function colorLiteCommand(): int
{
if (!$this->output->supportColor()) {
$this->write('Current terminal is not support output color text.');
return -2;
}
$this->output->startBuffer();
foreach (Color::getStyles() as $style) {
$this->output->write(Color::render("color text(style:$style)", $style));
}
$this->output->flush();
return 0;
}
/**
* output block message text
* @return int
*/
public function blockMsgCommand(): int
{
if (!$this->output->supportColor()) {
$this->write('Current terminal is not support output color text.');
return 0;
}
$this->write('block message:');
foreach (Show::getBlockMethods() as $type) {
$this->output->$type("$type style message text");
}
return 0;
}
/**
* display some special chars
* @return int
* @throws ReflectionException
*/
public function charCommand(): int
{
$this->output->aList(Char::getConstants(), 'some special char', [
'ucFirst' => false,
]);
return 0;
}
/**
* display some special emoji chars
* @return int
* @throws ReflectionException
*/
public function emojiCommand(): int
{
$this->output->aList(Emoji::getConstants(), 'some emoji char', [
'ucFirst' => false,
]);
return 0;
}
/**
* a example for highlight code
*
* @options
* --ln bool;Display with line number
*
* @param FlagsParser $fs
*/
public function highlightCommand(FlagsParser $fs): void
{
// $file = $this->app->getRootPath() . '/examples/routes.php';
$file = $this->app->getRootPath() . '/src/Utils/Show.php';
$src = file_get_contents($file);
$code = Highlighter::create()->highlight($src, $fs->getOpt('ln'));
$this->output->writeRaw($code);
}
/**
* output format message: helpPanel
*/
public function helpPanelCommand(): void
{
Show::helpPanel([
HelpPanel::DESC => 'a help panel description text. (help panel show)',
HelpPanel::USAGE => 'a usage text',
HelpPanel::ARGUMENTS => [
'arg1' => 'arg1 description',
'arg2' => 'arg2 description',
],
HelpPanel::OPTIONS => [
'--opt1' => 'a long option',
'-s' => 'a short option',
'-d' => 'Run the server on daemon.(default: <comment>false</comment>)',
'-h, --help' => 'Display this help message'
],
]);
}
/**
* output format message: tree
*/
public function treeCommand(): void
{
Show::tree([
123,
true,
false,
null,
'one-level',
'one-level1',
[
'two-level',
'two-level1',
'two-level2',
[
'three-level',
'three-level1',
'three-level2',
],
],
'one-level99',
]);
}
/**
* output format message: dump
*/
public function jsonCommand(): void
{
$data = [
[
'id' => 1,
'name' => 'john',
'status' => 2,
'email' => '[email protected]',
],
[
'id' => 2,
'name' => 'tom',
'status' => 0,
'email' => '[email protected]',
],
[
'id' => 3,
'name' => 'jack',
'status' => 1,
'email' => '[email protected]',
],
];
$this->output->write('use dump:');
$this->output->dump($data);
$this->output->write('use print:');
$this->output->prints($data);
$this->output->write('use json:');
$this->output->json($data);
}
}