@profiscience/knockout-contrib-querystring

Querystring Abstraction for KnockoutJS

Usage no npm install needed!

<script type="module">
  import profiscienceKnockoutContribQuerystring from 'https://cdn.skypack.dev/@profiscience/knockout-contrib-querystring';
</script>

README

@profiscience/knockout-contrib-querystring

Version Dependency Status Peer Dependency Status Dev Dependency Status Downloads

Easy-peasy Querystrings for Knockout

Installation

$ yarn add @profiscience/knockout-contrib-querystring

or

$ npm install @profiscience/knockout-contrib-querystring

Typing are included, but have the caveat that query params that are observable arrays will only be typed as observables. This is due to a limitation with mapped types in TypeScript.

Basic Usage

import Query from '@profiscience/knockout-contrib-querystring'

const query = Query.create({ sort: 'alpha' })

query.sort() // alpha

API

Query.create([config = {}, name])

Create a new query instance passing a configuration object and optionally a name to group the query with. This allows you to create multiple query objects with the same params, and they will not interfere with each other. It also allows you to link queries if they are given the same group name.

The configuration object contains key/value pairs of querystring param names and their config, respectively. A querystring param config may be an object that contains any combination of three props, default, initial, and coerce, or a value which will be used as the default and initial value. The coerce function allows you to transform a value before it is fully set.

const query = Query.create({
  // query param named foo
  foo: {
    default: 'foo',
    initial: 'bar',
    coerce: (v) => v === 'baz' ? 'qux' : v
  },

  bar: 'bar'
})

In this case, the foo param will be set to "bar" initially — if not already in the querystring — but call to query.clear() will then set it to "foo". The coerce function disallows setting the param to "baz", and attempting to will cause it to be set to "qux" instead.

NOTE: Params that are equal to their default will not be displayed in the querystring. Less === More.

Query.fromQS([group])

Returns JS object containing current query from URL — for group if any.

Query.setParser({ parse, stringify })

By default, this lib is dumb, and it does not use valid querystrings. Instead, it uses JSON.stringify and encodeURIComponent, and vice versa. This function allows you to define a custom parser.

e.g.

import Query from 'ko-querystring'
import rison from 'rison' // https://github.com/Nanonid/rison

Query.setParser({
  parse: rison.decode_object,
  stringify: rison.encode_object
})

query[param]

Query params are created via super-cool ES6 proxies, so you don't need to explicitly define all the query params you will use. Simply access them, and they are there.

Params will be initialized from the querystring if available, and their default value or undefined if not.

query[param].clear()

Resets param to its default or undefined.

query[param].isDefault

Observable value that is true if the param is its default value, otherwise false.

query.set(default || { default, initial, coerce })

Change the default values for a query.

query.clear()

Reset all the query params to their defined defaults, or undefined.

query.toJS()

Returns unwrapped query object.

query.toString()

Returns stringified query.

query.asObservable()

Return observable query object. i.e. ko.observable({ foo: 'foo' }) instead of { foo: ko.observable('foo') }

query.dispose()

Disposes the query object and cleans the querystring. Don't forget to clean up after 'yo self.

MOAR!

Check the test file or the source. This lib is small enough to understand inside and out.