Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
57d129e9b8 | |||
87be53841b | |||
4c27d17769 | |||
ba1ef2d32c | |||
ab5298c5a0 | |||
c74c4e78a6 | |||
fa8ec78c1c | |||
bd943726eb | |||
4e7bcfd48d | |||
8492192e72 | |||
90466ff2b6 | |||
fb974c3a0f | |||
60b9ad563c | |||
bb30a6e8a8 | |||
b2a11a5de2 | |||
c68bb206a2 | |||
f4e17f7c74 | |||
a7ec9547d8 | |||
707bf4650e | |||
26e8f1e2c1 | |||
110eddba08 | |||
1dc6315ac2 | |||
0be5a0bf3d | |||
187a273309 |
66
.gitea/workflows/default_nottags.yaml
Normal file
66
.gitea/workflows/default_nottags.yaml
Normal file
@ -0,0 +1,66 @@
|
||||
name: Default (not tags)
|
||||
|
||||
on:
|
||||
push:
|
||||
tags-ignore:
|
||||
- '**'
|
||||
|
||||
env:
|
||||
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
|
||||
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||
|
||||
jobs:
|
||||
security:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install pnpm and npmci
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @shipzone/npmci
|
||||
|
||||
- name: Run npm prepare
|
||||
run: npmci npm prepare
|
||||
|
||||
- name: Audit production dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --prod
|
||||
continue-on-error: true
|
||||
|
||||
- name: Audit development dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --dev
|
||||
continue-on-error: true
|
||||
|
||||
test:
|
||||
if: ${{ always() }}
|
||||
needs: security
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Test stable
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm test
|
||||
|
||||
- name: Test build
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm build
|
124
.gitea/workflows/default_tags.yaml
Normal file
124
.gitea/workflows/default_tags.yaml
Normal file
@ -0,0 +1,124 @@
|
||||
name: Default (tags)
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
env:
|
||||
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
|
||||
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||
|
||||
jobs:
|
||||
security:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @shipzone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Audit production dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --prod
|
||||
continue-on-error: true
|
||||
|
||||
- name: Audit development dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --dev
|
||||
continue-on-error: true
|
||||
|
||||
test:
|
||||
if: ${{ always() }}
|
||||
needs: security
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @shipzone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Test stable
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm test
|
||||
|
||||
- name: Test build
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm build
|
||||
|
||||
release:
|
||||
needs: test
|
||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @shipzone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Release
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm publish
|
||||
|
||||
metadata:
|
||||
needs: test
|
||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
continue-on-error: true
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @shipzone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Code quality
|
||||
run: |
|
||||
npmci command npm install -g typescript
|
||||
npmci npm install
|
||||
|
||||
- name: Trigger
|
||||
run: npmci trigger
|
||||
|
||||
- name: Build docs and upload artifacts
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
pnpm install -g @gitzone/tsdoc
|
||||
npmci command tsdoc
|
||||
continue-on-error: true
|
128
.gitlab-ci.yml
128
.gitlab-ci.yml
@ -1,128 +0,0 @@
|
||||
# gitzone ci_default
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- .npmci_cache/
|
||||
key: '$CI_BUILD_STAGE'
|
||||
|
||||
stages:
|
||||
- security
|
||||
- test
|
||||
- release
|
||||
- metadata
|
||||
|
||||
before_script:
|
||||
- pnpm install -g pnpm
|
||||
- pnpm install -g @shipzone/npmci
|
||||
- npmci npm prepare
|
||||
|
||||
# ====================
|
||||
# security stage
|
||||
# ====================
|
||||
# ====================
|
||||
# security stage
|
||||
# ====================
|
||||
auditProductionDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command pnpm audit --audit-level=high --prod
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
auditDevDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command pnpm audit --audit-level=high --dev
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
# ====================
|
||||
# test stage
|
||||
# ====================
|
||||
|
||||
testStable:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
|
||||
testBuild:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm build
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm publish
|
||||
only:
|
||||
- tags
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
# ====================
|
||||
# metadata stage
|
||||
# ====================
|
||||
codequality:
|
||||
stage: metadata
|
||||
allow_failure: true
|
||||
only:
|
||||
- tags
|
||||
script:
|
||||
- npmci command npm install -g typescript
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- priv
|
||||
|
||||
trigger:
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci trigger
|
||||
only:
|
||||
- tags
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
pages:
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci command npm run buildDocs
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
only:
|
||||
- tags
|
||||
artifacts:
|
||||
expire_in: 1 week
|
||||
paths:
|
||||
- public
|
||||
allow_failure: true
|
77
changelog.md
Normal file
77
changelog.md
Normal file
@ -0,0 +1,77 @@
|
||||
# Changelog
|
||||
|
||||
## 2024-10-06 - 1.3.2 - fix(core)
|
||||
Fix TypeScript type definition for route match function
|
||||
|
||||
- Updated the type definition for the matchFunction in the SmartRouter class to include a generic parameter.
|
||||
|
||||
## 2024-10-06 - 1.3.1 - fix(dependencies)
|
||||
Updated dependencies to latest versions, resolving compatibility issues and improving performance.
|
||||
|
||||
- Updated devDependencies to their latest versions, including tsbuild, tsbundle, tstest, tapbundle, and @types/node
|
||||
- Updated dependencies to latest versions of lik, smartrx, and path-to-regexp
|
||||
|
||||
## 2024-10-06 - 1.3.0 - feat(smartrouter)
|
||||
Add destroy method to SmartRouter class.
|
||||
|
||||
- Introduced a destroy method to the SmartRouter class for cleaning up event listeners and route references.
|
||||
- Refactored popstate event listener to be removable, improving resource management and preventing memory leaks.
|
||||
|
||||
## 2024-10-06 - 1.2.1 - fix(core)
|
||||
Ensure stability and performance improvements
|
||||
|
||||
- Improves platform compatibility for modern web applications.
|
||||
- Enhances stability of the routing logic within SmartRouter class.
|
||||
|
||||
## 2024-10-06 - 1.2.0 - feat(core)
|
||||
Add support for base paths and sub-routers.
|
||||
|
||||
- Added basePath feature to SmartRouter for handling base paths.
|
||||
- Introduced createSubRouter method to create a sub-router with a specific prefix.
|
||||
|
||||
## 2024-10-06 - 1.1.1 - fix(core)
|
||||
Remove SelectionDimension functionality
|
||||
|
||||
- Removed SelectionDimension class and references
|
||||
- Deleted smartrouter.classes.selectiondimension.ts and related imports
|
||||
|
||||
## 2024-10-06 - 1.1.0 - feat(core)
|
||||
Add selection dimensions and route removal functionality
|
||||
|
||||
- Introduced the SelectionDimension class for managing stateful selections across routes.
|
||||
- Enhanced SmartRouter with the ability to create and manage selection dimensions.
|
||||
- Added route removal functionality in SmartRouter using the 'on' method.
|
||||
|
||||
## 2024-05-29 - 1.0.17 - Maintenance
|
||||
Minor updates and maintenance changes to the project's configuration and metadata.
|
||||
|
||||
- Updated project description.
|
||||
- Modified tsconfig settings.
|
||||
- Updated npmextra.json for the githost setting.
|
||||
|
||||
## 2023-09-11 to 2023-04-11 - 1.0.16 - Fixes and Organizational Improvements
|
||||
A series of minor bug fixes and organizational updates.
|
||||
|
||||
- Fixed core component issues.
|
||||
- Switched to a new organizational scheme.
|
||||
|
||||
## 2023-03-18 to 2022-12-31 - 1.0.13 to 1.0.15 - Bug Fixes
|
||||
Regular fixes to address bugs in the core.
|
||||
|
||||
- Recurring fixes in core components across versions.
|
||||
|
||||
## 2022-01-22 to 2021-09-08 - 1.0.11 to 1.0.12 - Stability Enhancements
|
||||
Enhancements aimed at improving stability with core updates.
|
||||
|
||||
- Core stability improvements and updates.
|
||||
|
||||
## 2021-09-08 to 2020-11-30 - 1.0.5 to 1.0.10 - Regular Updates
|
||||
Ongoing updates focused on the core's functionality.
|
||||
|
||||
- Multiple core updates to ensure optimal performance.
|
||||
|
||||
## 2020-11-30 to 2020-06-01 - 1.0.1 to 1.0.4 - Initial Fixes
|
||||
Initial series of fixes and updates following project kickoff.
|
||||
|
||||
- Addressed initial core component issues.
|
||||
|
@ -2,17 +2,29 @@
|
||||
"gitzone": {
|
||||
"projectType": "npm",
|
||||
"module": {
|
||||
"githost": "gitlab.com",
|
||||
"gitscope": "pushrocks",
|
||||
"githost": "code.foss.global",
|
||||
"gitscope": "push.rocks",
|
||||
"gitrepo": "smartrouter",
|
||||
"description": "a router for routing on websites",
|
||||
"npmPackagename": "@pushrocks/smartrouter",
|
||||
"description": "A JavaScript library providing routing capabilities for web applications.",
|
||||
"npmPackagename": "@push.rocks/smartrouter",
|
||||
"license": "MIT",
|
||||
"projectDomain": "push.rocks"
|
||||
"projectDomain": "push.rocks",
|
||||
"keywords": [
|
||||
"web development",
|
||||
"routing",
|
||||
"single page application",
|
||||
"URL management",
|
||||
"path matching",
|
||||
"query parameters",
|
||||
"browser history"
|
||||
]
|
||||
}
|
||||
},
|
||||
"npmci": {
|
||||
"npmGlobalTools": [],
|
||||
"npmAccessLevel": "public"
|
||||
},
|
||||
"tsdoc": {
|
||||
"legal": "\n## License and Legal Information\n\nThis 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. \n\n**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.\n\n### Trademarks\n\nThis 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.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy 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.\n"
|
||||
}
|
||||
}
|
36
package.json
36
package.json
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "@pushrocks/smartrouter",
|
||||
"version": "1.0.15",
|
||||
"name": "@push.rocks/smartrouter",
|
||||
"version": "1.3.2",
|
||||
"private": false,
|
||||
"description": "a router for routing on websites",
|
||||
"description": "A JavaScript library providing routing capabilities for web applications.",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"author": "Lossless GmbH",
|
||||
@ -14,14 +14,16 @@
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.1.29",
|
||||
"@gitzone/tsbundle": "^2.0.7",
|
||||
"@gitzone/tstest": "^1.0.60",
|
||||
"@pushrocks/tapbundle": "^5.0.4",
|
||||
"@types/node": "^18.15.3"
|
||||
"@git.zone/tsbuild": "^2.1.84",
|
||||
"@git.zone/tsbundle": "^2.0.15",
|
||||
"@git.zone/tstest": "^1.0.90",
|
||||
"@push.rocks/tapbundle": "^5.3.0",
|
||||
"@types/node": "^22.7.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"path-to-regexp": "^6.2.0"
|
||||
"@push.rocks/lik": "^6.0.15",
|
||||
"@push.rocks/smartrx": "^3.0.7",
|
||||
"path-to-regexp": "^8.2.0"
|
||||
},
|
||||
"files": [
|
||||
"ts/**/*",
|
||||
@ -38,5 +40,19 @@
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
],
|
||||
"type": "module"
|
||||
"type": "module",
|
||||
"keywords": [
|
||||
"web development",
|
||||
"routing",
|
||||
"single page application",
|
||||
"URL management",
|
||||
"path matching",
|
||||
"query parameters",
|
||||
"browser history"
|
||||
],
|
||||
"homepage": "https://code.foss.global/push.rocks/smartrouter",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://code.foss.global/push.rocks/smartrouter.git"
|
||||
}
|
||||
}
|
||||
|
8421
pnpm-lock.yaml
generated
8421
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
||||
|
153
readme.md
153
readme.md
@ -1,37 +1,136 @@
|
||||
# @pushrocks/smartrouter
|
||||
# @push.rocks/smartrouter
|
||||
a router for routing on websites
|
||||
|
||||
## Availabililty and Links
|
||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartrouter)
|
||||
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartrouter)
|
||||
* [github.com (source mirror)](https://github.com/pushrocks/smartrouter)
|
||||
* [docs (typedoc)](https://pushrocks.gitlab.io/smartrouter/)
|
||||
## Install
|
||||
To install `@push.rocks/smartrouter`, run the following command in your project directory:
|
||||
```sh
|
||||
npm install @push.rocks/smartrouter --save
|
||||
```
|
||||
|
||||
## Status for master
|
||||
|
||||
Status Category | Status Badge
|
||||
-- | --
|
||||
GitLab Pipelines | [](https://lossless.cloud)
|
||||
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||
npm | [](https://lossless.cloud)
|
||||
Snyk | [](https://lossless.cloud)
|
||||
TypeScript Support | [](https://lossless.cloud)
|
||||
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||
Code Style | [](https://lossless.cloud)
|
||||
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||
This will add `@push.rocks/smartrouter` to your project's dependencies and enable you to use it within your application.
|
||||
|
||||
## Usage
|
||||
`@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.
|
||||
|
||||
Use TypeScript for best in class intellisense
|
||||
### 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.
|
||||
|
||||
## Contribution
|
||||
```typescript
|
||||
import { SmartRouter } from '@push.rocks/smartrouter';
|
||||
```
|
||||
|
||||
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||
### 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`.
|
||||
|
||||
For further information read the linked docs at the top of this readme.
|
||||
```typescript
|
||||
const router = new SmartRouter({
|
||||
debug: true, // Enables debugging. Optional and false by default.
|
||||
});
|
||||
```
|
||||
|
||||
## Legal
|
||||
> MIT licensed | **©** [Task Venture Capital GmbH](https://task.vc)
|
||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||
### 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');
|
||||
```
|
||||
|
||||
### 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
|
||||
router.queryParams.setQueryParam('key', 'value');
|
||||
|
||||
// Get a query parameter
|
||||
const value = router.queryParams.getQueryParam('key');
|
||||
|
||||
// Delete a query parameter
|
||||
router.queryParams.deleteQueryParam('key');
|
||||
```
|
||||
|
||||
### Selection Dimensions
|
||||
`@push.rocks/smartrouter` introduces the concept of selection dimensions, allowing you to manage stateful selections across routes. This is especially useful for complex navigation flows that depend on prior selections.
|
||||
|
||||
```typescript
|
||||
await router.createSelectionDimension({
|
||||
routeArg: '/select/:option',
|
||||
keyArg: 'mySelection',
|
||||
options: [
|
||||
{
|
||||
key: 'option1',
|
||||
detail: { /* some data */ },
|
||||
action: async () => { /* action for option1 */ }
|
||||
},
|
||||
{
|
||||
key: 'option2',
|
||||
detail: { /* some data */ },
|
||||
action: async () => { /* action for option2 */ }
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
// Navigate to a selection option
|
||||
router.pushUrl('/select/option1');
|
||||
```
|
||||
|
||||
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
|
||||
|
||||
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.
|
||||
|
||||
### Company Information
|
||||
|
||||
Task Venture Capital GmbH
|
||||
Registered at District court Bremen HRB 35230 HB, Germany
|
||||
|
||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||
|
||||
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.
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
|
||||
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
||||
import * as smartrouter from '../ts/index.js';
|
||||
|
||||
let testrouter: smartrouter.SmartRouter;
|
||||
|
@ -1,8 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartrouter',
|
||||
version: '1.0.15',
|
||||
description: 'a router for routing on websites'
|
||||
name: '@push.rocks/smartrouter',
|
||||
version: '1.3.2',
|
||||
description: 'A JavaScript library providing routing capabilities for web applications.'
|
||||
}
|
||||
|
@ -32,35 +32,58 @@ export class SmartRouter {
|
||||
* the routes we are handling
|
||||
*/
|
||||
public routes: Array<{
|
||||
matchFunction: plugins.pathToRegExp.MatchFunction;
|
||||
matchFunction: plugins.pathToRegExp.MatchFunction<any>;
|
||||
handler: THandlerFunction;
|
||||
}> = [];
|
||||
|
||||
/**
|
||||
* base path for this router
|
||||
*/
|
||||
private basePath: string;
|
||||
|
||||
/**
|
||||
* Reference to the event listener function for cleanup
|
||||
*/
|
||||
private popstateListener: (event: PopStateEvent) => void;
|
||||
|
||||
/**
|
||||
* Creates an instance of Router.
|
||||
*/
|
||||
constructor(optionsArg: IRouterOptions) {
|
||||
constructor(optionsArg: IRouterOptions, basePath: string = '') {
|
||||
// lets set the router options
|
||||
this.options = {
|
||||
...this.options,
|
||||
...optionsArg,
|
||||
};
|
||||
this.basePath = basePath;
|
||||
|
||||
// lets subscribe to route changes
|
||||
window.addEventListener('popstate', (popStateEventArg) => {
|
||||
this.popstateListener = (popStateEventArg) => {
|
||||
popStateEventArg.preventDefault();
|
||||
this._handleRouteState();
|
||||
});
|
||||
};
|
||||
window.addEventListener('popstate', this.popstateListener);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a sub-router with a specific prefix
|
||||
* @param {string} subPath
|
||||
* @param {IRouterOptions} [options]
|
||||
*/
|
||||
public createSubRouter(subPath: string, options?: IRouterOptions): SmartRouter {
|
||||
const newBasePath = `${this.basePath}${subPath}`;
|
||||
return new SmartRouter({ ...this.options, ...options }, newBasePath);
|
||||
}
|
||||
|
||||
/**
|
||||
* Push route state to history stack
|
||||
*/
|
||||
public async pushUrl(url: string = '/', state: any = {}) {
|
||||
if (url !== window.location.pathname) {
|
||||
window.history.pushState(state, window.document.title, url);
|
||||
const fullUrl = `${this.basePath}${url}`;
|
||||
if (fullUrl !== window.location.pathname) {
|
||||
window.history.pushState(state, window.document.title, fullUrl);
|
||||
} else {
|
||||
window.history.replaceState(state, window.document.title, url);
|
||||
window.history.replaceState(state, window.document.title, fullUrl);
|
||||
}
|
||||
await this._handleRouteState();
|
||||
}
|
||||
@ -71,10 +94,16 @@ export class SmartRouter {
|
||||
* @param {function} handlerArg
|
||||
*/
|
||||
public on(routeArg: string, handlerArg: THandlerFunction) {
|
||||
this.routes.push({
|
||||
matchFunction: plugins.pathToRegExp.match(routeArg),
|
||||
const fullRoute = `${this.basePath}${routeArg}`;
|
||||
const routeObject = {
|
||||
matchFunction: plugins.pathToRegExp.match(fullRoute),
|
||||
handler: handlerArg,
|
||||
});
|
||||
};
|
||||
this.routes.push(routeObject);
|
||||
const removeFunction = () => {
|
||||
this.routes.splice(this.routes.indexOf(routeObject), 1);
|
||||
};
|
||||
return removeFunction;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -96,4 +125,14 @@ export class SmartRouter {
|
||||
} as IRouteInfo); // not waiting here
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Destroy the router instance, removing all external references
|
||||
*/
|
||||
public destroy() {
|
||||
// Remove the event listener for popstate
|
||||
window.removeEventListener('popstate', this.popstateListener);
|
||||
// Clear all routes
|
||||
this.routes = [];
|
||||
}
|
||||
}
|
@ -1,3 +1,13 @@
|
||||
// @push.rocks scope
|
||||
import * as lik from '@push.rocks/lik';
|
||||
import * as smartrx from '@push.rocks/smartrx';
|
||||
|
||||
export {
|
||||
lik,
|
||||
smartrx,
|
||||
}
|
||||
|
||||
// third party scope
|
||||
import * as pathToRegExp from 'path-to-regexp';
|
||||
|
||||
export { pathToRegExp };
|
||||
|
@ -3,8 +3,12 @@
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "nodenext",
|
||||
"esModuleInterop": true
|
||||
}
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user