Coder Social home page Coder Social logo

fleetbase / ember-accounting Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 1.0 174 KB

Updated port of the great accounting.js library to ES6 modules that integrates seamlessly with ember-cli

License: MIT License

JavaScript 94.95% HTML 4.57% CSS 0.30% Handlebars 0.18%

ember-accounting's Introduction

@fleetbase/ember-accounting

This is a fork of ember-cli-accounting which was a port of the great accounting.js library to ES6 modules that integrates seamlessly with ember-cli and the Fleetbase ecosystem.

Installation

Just add like any other ember-cli addon:

npm install @fleetbase/ember-accounting

Ember compatiblity

Compatible with Ember version 4.0 and above

Usage

Accounting functions

You no longer need to access the global accounting, you can import only what you need:

import formatMoney from '@fleetbase/ember-accounting/format-money'

Although you can import everything as expected:

import accounting from '@fleetbase/ember-accounting'

Handlebars helpers

This addon also registers 2 handy helpers in your application: format-number and format-money.

You can set options using bound or unbound options like this:

{{format-money price symbol=selectedCurrency format="%v %s"}} <!-- "123.45 £" -->

Any option not set will have the usual default value:

{{format-number "1234.567" precision=2}} <!-- "1,234.57" -->

Config default options

You can use an initializer to set some default values at initializations and avoid having to repeat over and over the options in the helpers.

Use something like this:

// app/initializers/accounting.js
import { currency, number } from '@fleetbase/ember-accounting/settings';

export default {
  name: 'accounting.js',
  initialize: function() {
    currency.symbol = "€";
    number.decimal = ",";
    number.thousand = ".";
  }
};

Differences with accounting.js

Although this is almost a 1:1 port of accountant.js, there is a few differences:

  • Each function of accountant.js lives in its own module, so you can only import those functions you want to use.
  • Removed some polyfills for Array.isArray, Array.prototype.map and Object.prototype.toString. They are not required in modern browsers, and ember.js (unless you opt-out with EXTEND_PROTOTYPES = false) already provides polyfills for those functions.
  • More tests than the original.
  • Enforced jshint. Cleaner code.

Documentation

This library does not make any change in the public api of accounting.js, so you can read the official documentation here

ember-accounting's People

Contributors

roncodes avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

fotokrome

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.