- 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
84 lines
1.9 KiB
Markdown
84 lines
1.9 KiB
Markdown
# decode-uri-component
|
||
|
||
 [](https://coveralls.io/github/SamVerschueren/decode-uri-component?branch=master)
|
||
|
||
> A better [decodeURIComponent](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent)
|
||
|
||
|
||
## Why?
|
||
|
||
- Decodes `+` to a space.
|
||
- Converts the [BOM](https://en.wikipedia.org/wiki/Byte_order_mark) to a [replacement character](https://en.wikipedia.org/wiki/Specials_(Unicode_block)#Replacement_character) `<60>`.
|
||
- Does not throw with invalid encoded input.
|
||
- Decodes as much of the string as possible.
|
||
|
||
|
||
## Install
|
||
|
||
```
|
||
$ npm install --save decode-uri-component
|
||
```
|
||
|
||
|
||
## Usage
|
||
|
||
```js
|
||
const decodeUriComponent = require('decode-uri-component');
|
||
|
||
decodeUriComponent('%25');
|
||
//=> '%'
|
||
|
||
decodeUriComponent('%');
|
||
//=> '%'
|
||
|
||
decodeUriComponent('st%C3%A5le');
|
||
//=> 'ståle'
|
||
|
||
decodeUriComponent('%st%C3%A5le%');
|
||
//=> '%ståle%'
|
||
|
||
decodeUriComponent('%%7Bst%C3%A5le%7D%');
|
||
//=> '%{ståle}%'
|
||
|
||
decodeUriComponent('%7B%ab%%7C%de%%7D');
|
||
//=> '{%ab%|%de%}'
|
||
|
||
decodeUriComponent('%FE%FF');
|
||
//=> '\uFFFD\uFFFD'
|
||
|
||
decodeUriComponent('%C2');
|
||
//=> '\uFFFD'
|
||
|
||
decodeUriComponent('%C2%B5');
|
||
//=> 'µ'
|
||
```
|
||
|
||
|
||
## API
|
||
|
||
### decodeUriComponent(encodedURI)
|
||
|
||
#### encodedURI
|
||
|
||
Type: `string`
|
||
|
||
An encoded component of a Uniform Resource Identifier.
|
||
|
||
|
||
## License
|
||
|
||
MIT © [Sam Verschueren](https://github.com/SamVerschueren)
|
||
|
||
|
||
---
|
||
|
||
<div align="center">
|
||
<b>
|
||
<a href="https://tidelift.com/subscription/pkg/npm-decode-uri-component?utm_source=npm-decode-uri-component&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||
</b>
|
||
<br>
|
||
<sub>
|
||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||
</sub>
|
||
</div>
|