ember-cli-filesize-transform

A simple Ember Data Transform to alow easier manipulations of filesize. Simply have the backend send a value in bytes and the transform will create an easy to use object.

Usage no npm install needed!

<script type="module">
  import emberCliFilesizeTransform from 'https://cdn.skypack.dev/ember-cli-filesize-transform';
</script>

README

Ember Data Filesize Transform

A simple Ember Data Transform to alow easier manipulations of filesize. Simply have the backend send a value in bytes and the transform will create an easy to use object.

Installation

ember install ember-cli-filesize-transform

Usage

In model:

// app/model/my-model.js
import DS from 'ember-data'

export default DS.Model.extend({
  storage: DS.attr('filesize')
});

Then within templates

{{ model.storage.bytes }}

Available Methods

  • bytes
  • kb
  • mb
  • gb
  • tb
  • pb

All above methods can have withUnits attached (i.e., mbWithUnits) which will output 10 MB.

  • [NEW] - The method humanReadable is now available which will attempt to work out which unit to use based on the number of bytes.

License

The MIT License (MIT)

Copyright (c) 2015 Matthew Wheatley

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information on using ember-cli, visit http://www.ember-cli.com/.