- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
55 lines
1.3 KiB
Markdown
55 lines
1.3 KiB
Markdown
# cli-spinners
|
|
|
|
> 70+ spinners for use in the terminal
|
|
|
|
<p align="center">
|
|
<br>
|
|
<img width="700" src="screenshot.svg">
|
|
<br>
|
|
<br>
|
|
</p>
|
|
|
|
The list of spinners is just a [JSON file](spinners.json) and can be used wherever.
|
|
|
|
You probably want to use one of these spinners through the [`ora`](https://github.com/sindresorhus/ora) module.
|
|
|
|
## Install
|
|
|
|
```sh
|
|
npm install cli-spinners
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const cliSpinners = require('cli-spinners');
|
|
|
|
console.log(cliSpinners.dots);
|
|
/*
|
|
{
|
|
interval: 80,
|
|
frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']
|
|
}
|
|
*/
|
|
```
|
|
|
|
## Preview
|
|
|
|
The header GIF is outdated. See all the [spinner at once](https://jsfiddle.net/sindresorhus/2eLtsbey/embedded/result/) or [one at the time](https://asciinema.org/a/95348?size=big).
|
|
|
|
## API
|
|
|
|
Each spinner comes with a recommended `interval` and an array of `frames`.
|
|
|
|
[See the spinners.](spinners.json)
|
|
|
|
The `random` spinner will return a random spinner each time it's called.
|
|
|
|
## Related
|
|
|
|
- [ora](https://github.com/sindresorhus/ora) - Elegant terminal spinner
|
|
- [CLISpinner](https://github.com/kiliankoe/CLISpinner) - Terminal spinners for Swift
|
|
- [py-spinners](https://github.com/ManrajGrover/py-spinners) - Python port
|
|
- [spinners](https://github.com/FGRibreau/spinners) - Terminal spinners for Rust
|
|
- [go-spinners](https://github.com/gabe565/go-spinners) - Go port
|