Files
smartrouter/readme.md

162 lines
6.5 KiB
Markdown
Raw Normal View History

2023-09-11 18:43:10 +02:00
# @push.rocks/smartrouter
A JavaScript library providing routing capabilities for web applications with support for path parameters, query parameters, and programmatic navigation
2020-06-01 20:51:36 +00:00
2024-04-14 18:14:02 +02:00
## Install
To install `@push.rocks/smartrouter`, run the following command in your project directory:
```sh
pnpm install @push.rocks/smartrouter --save
2024-04-14 18:14:02 +02:00
```
This will add `@push.rocks/smartrouter` to your project's dependencies and enable you to use it within your application.
2020-06-01 20:51:36 +00:00
## Usage
2024-04-14 18:14:02 +02:00
`@push.rocks/smartrouter` provides a versatile routing solution for websites, leveraging modern Web APIs to manipulate browser history and handle URL paths intelligently. Below are examples demonstrating how to use `@push.rocks/smartrouter` effectively in a TypeScript project, taking advantage of ESM syntax.
### Basic Setup
First, ensure you've installed the package as described in the Install section above. Next, import `SmartRouter` from `@push.rocks/smartrouter` in your application's entry point or any module where routing is required.
```typescript
import { SmartRouter } from '@push.rocks/smartrouter';
```
### Initialize the Router
Create an instance of `SmartRouter` and optionally provide configuration options. If your application requires debugging information, `debug` can be set to `true`.
```typescript
const router = new SmartRouter({
debug: true, // Enables debugging. Optional and false by default.
});
```
### Define Routes
Define your application routes using the `on` method, which takes a URL pattern and a handler function. The handler function will be called when the application navigates to a URL that matches the pattern.
```typescript
router.on('/home', async (routeInfo) => {
console.log('Home route accessed', routeInfo);
// Handle the home route
// You can load a page component, change document title, etc.
});
router.on('/about', async (routeInfo) => {
console.log('About route accessed', routeInfo);
// Handle the about route
});
```
### Path Parameters
`@push.rocks/smartrouter` supports dynamic path parameters. Define path parameters within your route strings using the `:` prefix, and access their values from the `routeInfo.params` object in your handler function.
```typescript
router.on('/user/:userId', async (routeInfo) => {
console.log(`User Profile for ID: ${routeInfo.params.userId}`, routeInfo);
// Load and display user profile based on userId
});
```
### Query Parameters
Query parameters can be accessed through the `routeInfo.queryParams` object, making it easy to handle complex routing scenarios with optional parameters.
```typescript
router.on('/search', async (routeInfo) => {
console.log('Search Query:', routeInfo.queryParams.query);
// Perform a search operation using the provided query parameter
});
```
### Programmatic Navigation
Navigate programmatically using the `pushUrl` method. This method allows you to change the URL without reloading the page, and optionally pass state information.
```typescript
// Navigate to the about page
router.pushUrl('/about');
// Navigate to a user profile with URL parameters
router.pushUrl('/user/12345');
// Navigate with state data
router.pushUrl('/dashboard', { previousPage: 'home' });
2024-04-14 18:14:02 +02:00
```
### Managing Query Parameters
`@push.rocks/smartrouter` provides methods for managing URL query parameters, enabling dynamic URL manipulation for filter settings, pagination, and other use cases.
```typescript
// Set a query parameter (replace by default)
2024-04-14 18:14:02 +02:00
router.queryParams.setQueryParam('key', 'value');
// Set a query parameter with push (adds to history)
router.queryParams.setQueryParam('key', 'value', 'push');
2024-04-14 18:14:02 +02:00
// Get a query parameter
const value = router.queryParams.getQueryParam('key');
// Get all query parameters as an object
const allParams = router.queryParams.getAllAsObject();
2024-04-14 18:14:02 +02:00
// Delete a query parameter
router.queryParams.deleteQueryParam('key');
// Delete with push to history
router.queryParams.deleteQueryParam('key', 'push');
```
### Sub-Routers
Create sub-routers with a specific base path for modular routing:
```typescript
// Create a sub-router for admin routes
const adminRouter = router.createSubRouter('/admin');
// Routes will be prefixed with /admin
adminRouter.on('/dashboard', async (routeInfo) => {
// This handles /admin/dashboard
});
adminRouter.on('/users', async (routeInfo) => {
// This handles /admin/users
});
2024-04-14 18:14:02 +02:00
```
### Route Management
The `on` method returns a function that can be used to remove the route:
2024-04-14 18:14:02 +02:00
```typescript
// Add a route
const removeRoute = router.on('/temporary', async (routeInfo) => {
console.log('Temporary route accessed');
2024-04-14 18:14:02 +02:00
});
// Later, remove the route
removeRoute();
```
### Cleanup
When you're done with a router instance, clean it up properly:
```typescript
// Destroy the router, removing all event listeners and routes
router.destroy();
2024-04-14 18:14:02 +02:00
```
This module enables complex routing scenarios, simplifying the handling of navigational logic in modern web applications. By leveraging `@push.rocks/smartrouter`, developers can implement detailed routing mechanisms, manipulate browser history thoughtfully, and maintain cleaner URL structures, enhancing the user experience and making web apps more accessible.
## License and Legal Information
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
2020-06-01 20:51:36 +00:00
2024-04-14 18:14:02 +02:00
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
2020-06-01 20:51:36 +00:00
2024-04-14 18:14:02 +02:00
### Company Information
2020-06-01 20:51:36 +00:00
2024-04-14 18:14:02 +02:00
Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany
2020-06-01 20:51:36 +00:00
2024-04-14 18:14:02 +02:00
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
2020-06-01 20:51:36 +00:00
2024-04-14 18:14:02 +02:00
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.