@nilz/aurelia-converters v1.0.2
aurelia-converters
Repository containing useful and common aurelia converters.
Installation
Install depending on package manager:
npm install @nilz/aurelia-converters
Plugin depends on moment for date formatting and numeral for number formatting.
Add plugin to aurelia in main.js:
.plugin('@nilz/aurelia-converters')
Usage
Date
Default format
${ '1995-12-25 17:00' | date}
// 12/25/1995 5:00 PM
Specify format
${ '1995-12-25 17:00' | date:'LT'}
// 5:00 PMInput can be anything moment accepts. Locale can be changed globally on moment.
Filesize
${ 127000 | filesize }
// 127.00 KbPass parameter format to overwrite default format.
Integer
${ 127.23 | integer }
// 127Pass parameter format to overwrite default format.
Number
${ 127.23 | number }
// 127.23Pass parameter format to overwrite default format.
Percentage
${ 0.22 | percentage }
// 22.00 %Pass parameter format to overwrite default format.
Time
${ 127 | time }
// 00:02:07Pass parameter format to overwrite default format.
Truncate
${ 'long string' | truncate:4 }
// long...Parameters:
1. Length
2. More string used, default ...
3. What boundary character to use, default , false to disable, cuts after last occurance of this character
Join
${ ['abc', 'def'] | join }
// abc, defPass parameter separator to overwrite default separator.
Keys
repeat.for="key of {abc: 'def', ghi: 'jkl'} | keys"
// [abc, ghi]Useful for iterating objects using repeat.for
Todo
- Global overwriting of default formats / parameters using plugin configuration
Running The Tests
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cliEnsure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspmInstall the client-side dependencies with jspm:
jspm installYou can now run the tests with this command:
karma start