- 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.0 KiB
Markdown
55 lines
1.0 KiB
Markdown
|
|
# join
|
|
|
|
Join a list in a nice human friendly way.
|
|
|
|
## Installation
|
|
|
|
$ component install component/join
|
|
|
|
## API
|
|
|
|
- [join(arr)](#joinarr)
|
|
- [join(arr, str)](#joinarr-str)
|
|
- [join(arr, str) with Oxford comma](#joinarr-str-with-oxford-comma)
|
|
<a name=""></a>
|
|
|
|
<a name="joinarr"></a>
|
|
# join(arr)
|
|
should default to "and".
|
|
|
|
```js
|
|
join(['foo', 'bar']).should.equal('foo and bar');
|
|
```
|
|
|
|
<a name="joinarr-str"></a>
|
|
# join(arr, str)
|
|
should join.
|
|
|
|
```js
|
|
join([], 'and').should.equal('');
|
|
join(['foo'], 'and').should.equal('foo');
|
|
join(['foo', 'bar'], 'and').should.equal('foo and bar');
|
|
join(['foo', 'bar', 'baz'], 'or').should.equal('foo, bar or baz');
|
|
```
|
|
|
|
<a name="joinarr-str-with-oxford-comma"></a>
|
|
# join(arr, str) with Oxford comma
|
|
should remove comma with less than 3 items.
|
|
|
|
```js
|
|
join([], ', or').should.equal('');
|
|
join(['foo'], ', or').should.equal('foo');
|
|
join(['foo', 'bar'], ', or').should.equal('foo or bar');
|
|
```
|
|
|
|
should join with 3 or more items.
|
|
|
|
```js
|
|
join(['foo', 'bar', 'baz'], ', and').should.equal('foo, bar, and baz');
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|