vue-router-parse-props
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

vue-router-parse-props

npm GitHub Workflow Status Code Climate maintainability Code Climate coverage libraries.io npm GitHub license

Installation

npm i vue-router-parse-props

About

Params of vue-router coming from the url are strings. Ids as props (eg. userId) commonly are numbers. So you need an easy way to cast string values to number values. That's where vue-router-parse-props comes into play. The parser takes an parser-object and returns a function. For more information see: https://router.vuejs.org/guide/essentials/passing-props.html#function-mode

  • written in typescript
  • compatible with vue-router@3 and vue-router@4
  • parse to Number/String/Date
  • parse route.params and/or route.query

Original idea from: https://stackoverflow.com/a/63897213

Usage

// src/router/index.ts
import propsParser from 'vue-router-parse-props'
import { parse } from 'date-fns'

const router = new Router({
  base: process.env.BASE_URL,
  mode: useHistory ? 'history' : 'hash',
  routes: [
    {
      path: ':day/:userId',
      name: 'UserProfile',
      component: () => import('@/components/UserProfile.vue'),
      props: paramsToPropsCaster({ 
        userId: Number,
        day: (val: string): Date => parse(val, 'yyyy-MM-dd', new Date()),
        // keys starting with 'query.${}' look at 'route.query.${}'
        'query.q': {
          type: Number,
          propKey: 'searchId'
        },
        // keys starting with 'params.${}' look at 'route.params${}' explicitly
        'params.ids': {
          type: (ids) => ids.map(id => parseInt(id)),
          propKey: 'ids'
        }
      })
    }
  ]
});

Testing

Simply run npm test and all your tests in the test/ directory will be run. It has full support for Visual Studio Code. You can use the debugger to set breakpoints.

License

Licensed under the MIT license.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.3.0
    21
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.3.0
    21
  • 0.2.0
    0
  • 0.1.0
    0

Package Sidebar

Install

npm i vue-router-parse-props

Weekly Downloads

21

Version

0.3.0

License

MIT

Unpacked Size

10.9 kB

Total Files

12

Last publish

Collaborators

  • fratzinger