Skip to content

Instantly share code, notes, and snippets.

@iirving
Forked from EstesE/controllers.application.js
Created November 3, 2017 15:33
Show Gist options
  • Save iirving/2ebfde4d0c8c5f714bf0dc8d15cae4c1 to your computer and use it in GitHub Desktop.
Save iirving/2ebfde4d0c8c5f714bf0dc8d15cae4c1 to your computer and use it in GitHub Desktop.
International
import Ember from 'ember';
export default Ember.Controller.extend({
intl: Ember.inject.service(),
appName: 'Ember Twiddle',
price: 232323,
enterPrice: Ember.computed('intl.locale', 'price', function() {
console.log(this.get('intl').formatNumber(this.get('price'), { currency: 'USD', format: 'USD', style: 'currency' }));
return this.get('intl').formatNumber(this.get('price'), {
currency: 'USD',
format: 'USD',
style: 'currency'
});
}),
actions: {
updatePrice() {
console.log(event.target.value);
this.set('price', event.target.value.replace(/[^\d.-]/g, ''));
console.log(this.get('price'));
}
}
});
import Ember from 'ember';
export default Ember.Route.extend({
intl: Ember.inject.service(),
beforeModel() {
return this.get('intl').setLocale(['en-us', 'en-us']);
}
});
body {
margin: 12px 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
input {
padding: 5px;
}
Enter price:
<input type="text" value={{enterPrice}} {{action "updatePrice" on="focusOut"}}>
{
"version": "0.12.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1",
"ember-i18n": "5.0.1",
"ember-intl": "2.23.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment