first commit
This commit is contained in:
63
vendor/laravel/prompts/src/Themes/Default/ProgressRenderer.php
vendored
Normal file
63
vendor/laravel/prompts/src/Themes/Default/ProgressRenderer.php
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Prompts\Themes\Default;
|
||||
|
||||
use Laravel\Prompts\Progress;
|
||||
|
||||
class ProgressRenderer extends Renderer
|
||||
{
|
||||
use Concerns\DrawsBoxes;
|
||||
|
||||
/**
|
||||
* The character to use for the progress bar.
|
||||
*/
|
||||
protected string $barCharacter = '█';
|
||||
|
||||
/**
|
||||
* Render the progress bar.
|
||||
*
|
||||
* @param Progress<int|iterable<mixed>> $progress
|
||||
*/
|
||||
public function __invoke(Progress $progress): string
|
||||
{
|
||||
$filled = str_repeat($this->barCharacter, (int) ceil($progress->percentage() * min($this->minWidth, $progress->terminal()->cols() - 6)));
|
||||
|
||||
return match ($progress->state) {
|
||||
'submit' => $this
|
||||
->box(
|
||||
$this->dim($this->truncate($progress->label, $progress->terminal()->cols() - 6)),
|
||||
$this->dim($filled),
|
||||
info: $progress->progress.'/'.$progress->total,
|
||||
),
|
||||
|
||||
'error' => $this
|
||||
->box(
|
||||
$this->truncate($progress->label, $progress->terminal()->cols() - 6),
|
||||
$this->dim($filled),
|
||||
color: 'red',
|
||||
info: $progress->progress.'/'.$progress->total,
|
||||
),
|
||||
|
||||
'cancel' => $this
|
||||
->box(
|
||||
$this->truncate($progress->label, $progress->terminal()->cols() - 6),
|
||||
$this->dim($filled),
|
||||
color: 'red',
|
||||
info: $progress->progress.'/'.$progress->total,
|
||||
)
|
||||
->error($progress->cancelMessage),
|
||||
|
||||
default => $this
|
||||
->box(
|
||||
$this->cyan($this->truncate($progress->label, $progress->terminal()->cols() - 6)),
|
||||
$this->dim($filled),
|
||||
info: $progress->progress.'/'.$progress->total,
|
||||
)
|
||||
->when(
|
||||
$progress->hint,
|
||||
fn () => $this->hint($progress->hint),
|
||||
fn () => $this->newLine() // Space for errors
|
||||
)
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user