2 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
8b4ae386a7 Added more styles 2022-10-04 01:46:12 +02:00
2e7c49e299 Updated readme 2022-09-22 02:27:14 +02:00
4 changed files with 66 additions and 2 deletions

View File

@ -4,7 +4,26 @@ Spinners for the console.
## Install ## Install
Install using composer. Recommended is to install using composer. Add the repository to your global
`~/.config/composer/config.json` file:
```
{
"repositories": [
{
"type": "composer",
"url": "https://dev.noccylabs.info/api/packages/noccy/composer"
}
]
}
```
Then add the package as a dependency:
```
$ composer require noccylabs/spinner
```
## Usage ## Usage
@ -32,3 +51,11 @@ while(true) {
usleep(10000); usleep(10000);
} }
``` ```
### Included styles
Style | Width | Notes
---|---|---
`BrailleDotStyle` | 1 | A snake chasing its tail, new "docker compose" style
`RollingBallStyle` | 1 | A rolling ball, "symfony new" style
`SpinnerStyle` | 2 | four-part spinner, 2 characters wide

View File

@ -19,10 +19,13 @@ $spinner7 = new Spinner(fps:5);
$spinner8 = new Spinner(fps:10); $spinner8 = new Spinner(fps:10);
$spinner9 = new Spinner(fps:20); $spinner9 = new Spinner(fps:20);
$spinner10 = new Spinner(fps:10, style:NoccyLabs\Spinner\Style\SpinningBarStyle::class);
$spinner11 = new Spinner(fps:10, style:NoccyLabs\Spinner\Style\BrailleBounceStyle::class);
// And blast them out every 10ms! // And blast them out every 10ms!
while(true) { while(true) {
echo "\r $spinner1 $spinner2 $spinner3 $spinner4 $spinner5 $spinner6 $spinner7 $spinner8 $spinner9 "; echo "\r $spinner1 $spinner2 $spinner3 $spinner4 $spinner5 $spinner6 $spinner7 $spinner8 $spinner9 $spinner10 $spinner11 ";
usleep(10000); usleep(10000);
} }

View File

@ -0,0 +1,18 @@
<?php
namespace NoccyLabs\Spinner\Style;
class BrailleBounceStyle implements StyleInterface
{
public function getFrames(): array
{
return [
mb_chr(0x2809),
mb_chr(0x2812),
mb_chr(0x2824),
mb_chr(0x28c0),
mb_chr(0x2824),
mb_chr(0x2812),
];
}
}

View File

@ -0,0 +1,16 @@
<?php
namespace NoccyLabs\Spinner\Style;
class SpinningBarStyle implements StyleInterface
{
public function getFrames(): array
{
return [
"/",
"-",
"\\",
"|",
];
}
}