Compare commits

...

24 Commits

Author SHA1 Message Date
57d129e9b8 1.3.2 2024-10-06 22:39:05 +02:00
87be53841b fix(core): Fix TypeScript type definition for route match function 2024-10-06 22:39:05 +02:00
4c27d17769 1.3.1 2024-10-06 22:37:49 +02:00
ba1ef2d32c fix(dependencies): Updated dependencies to latest versions, resolving compatibility issues and improving performance. 2024-10-06 22:37:48 +02:00
ab5298c5a0 1.3.0 2024-10-06 22:27:54 +02:00
c74c4e78a6 feat(smartrouter): Add destroy method to SmartRouter class. 2024-10-06 22:27:53 +02:00
fa8ec78c1c 1.2.1 2024-10-06 20:18:17 +02:00
bd943726eb fix(core): Ensure stability and performance improvements 2024-10-06 20:18:16 +02:00
4e7bcfd48d 1.2.0 2024-10-06 20:15:22 +02:00
8492192e72 feat(core): Add support for base paths and sub-routers. 2024-10-06 20:15:21 +02:00
90466ff2b6 1.1.1 2024-10-06 07:34:38 +02:00
fb974c3a0f fix(core): Remove SelectionDimension functionality 2024-10-06 07:34:38 +02:00
60b9ad563c 1.1.0 2024-10-06 06:57:16 +02:00
bb30a6e8a8 feat(core): Add selection dimensions and route removal functionality 2024-10-06 06:57:15 +02:00
b2a11a5de2 update description 2024-05-29 14:15:51 +02:00
c68bb206a2 update tsconfig 2024-04-14 18:14:02 +02:00
f4e17f7c74 update tsconfig 2024-04-01 21:40:33 +02:00
a7ec9547d8 update npmextra.json: githost 2024-04-01 19:59:29 +02:00
707bf4650e update npmextra.json: githost 2024-03-30 21:48:29 +01:00
26e8f1e2c1 1.0.17 2023-09-11 18:43:11 +02:00
110eddba08 fix(core): update 2023-09-11 18:43:10 +02:00
1dc6315ac2 switch to new org scheme 2023-07-10 10:17:49 +02:00
0be5a0bf3d 1.0.16 2023-04-11 12:04:18 +02:00
187a273309 fix(core): update 2023-04-11 12:04:17 +02:00
14 changed files with 5822 additions and 3299 deletions

View 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

View 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

View File

@ -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
View 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.

View File

@ -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"
}
}

View File

@ -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

File diff suppressed because it is too large Load Diff

1
readme.hints.md Normal file
View File

@ -0,0 +1 @@

153
readme.md
View File

@ -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 | [![pipeline status](https://gitlab.com/pushrocks/smartrouter/badges/master/pipeline.svg)](https://lossless.cloud)
GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/pushrocks/smartrouter/badges/master/coverage.svg)](https://lossless.cloud)
npm | [![npm downloads per month](https://badgen.net/npm/dy/@pushrocks/smartrouter)](https://lossless.cloud)
Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/pushrocks/smartrouter)](https://lossless.cloud)
TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud)
node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud)
PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@pushrocks/smartrouter)](https://lossless.cloud)
PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@pushrocks/smartrouter)](https://lossless.cloud)
BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@pushrocks/smartrouter)](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.

View File

@ -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;

View File

@ -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.'
}

View File

@ -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 = [];
}
}

View File

@ -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 };

View File

@ -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"
]
}