ember-lz-string
Ember wrapper for lz-string module, original here: http://pieroxy.net/blog/pages/lz-string/index.html
Usage
Use in your app with:
ember install ember-lz-string
Import via:
;
QueryParams Mixin
In cases where you would like your 'queryParams' to use this (The Babel REPL does this) use this mixin and set the type to lz
:
;; ;
Auto serialization of Arrays/Objects
If you wish to also have all arrays/objects serialized via lz-string set the autoSerializeArray
and autoSerializeObject
(respectively) options in your app's config/environment.js
:
ENV = 'ember-lz-string': autoSerializeArray: true autoSerializeObject: true
These are both off by default. And remember if using the auto serializing then your default values must typeOf()
to 'array' or 'object'. To do that use a constant:
const DEFAULT_ARRAY = ;const DEFAULT_OBJECT = {}; ;
Installation
git clone <repository-url>
this repositorycd ember-lz-string
yarn install
Running
ember serve
- Visit your app at http://localhost:4200.
Running Tests
yarn test
(Runsember try:each
to test your addon against multiple Ember versions)ember test
ember test --server
Building
ember build
For more information on using ember-cli, visit https://ember-cli.com/.