Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
ember-computed-convert-unit
Advanced tools
Enables convert unit as a computed property
ember-computed-convert-unit is made for ember 3.12 and above, but probably works for older versions too.
ember install ember-computed-convert-unit
convertUnit is a computed property that you can use in the same way as you normally would do. It works for both 'classic' Ember and Ember Octane. To indicate a unit, you can use both the full name and the abbreviation of a unit. (e.g. 'kg'/'kilograms', 'ft'/'feet')
import Model from '@ember-data/model';
import convertUnit from 'ember-computed-convert-unit'
export default Model.extend({
lengthInMilimeters: attr('number'),
lengthInCentimeters: convertUnit('lengthInMilimeters', 'milimeters', 'centimeters')
})
import Model from '@ember-data/model';
import convertUnit from 'ember-computed-convert-unit'
export default class Paper extends Model {
@attr('number')
lengthInMilimeters;
@convertUnit('lengthInMilimeters', 'milimeters', 'centimeters')
lengthInCentimeters;
}
This addon uses convert-units to perform the actual conversion. Check its documentation for available conversions.
It's possible to add (or "overwrite") a conversion as shown in the example below. If you add a conversion for a type that's included in the library, you must use the abbreviation. In the example below feet/ft already exists as a type and TEU doesn't.
// utils/computed-convert-unit.js
export default [
{
from: 'ft',
to: 'TEU',
convert(value) {
return value / 20;
}
},
{
from: 'TEU',
to: 'ft',
convert(value) {
return value * 20;
}
}
];
// models/rock.js
import Model from '@ember-data/model';
import convertUnit from 'ember-computed-convert-unit'
export default class Rock extends Model {
@attr('number')
lengthInFeet;
@convertUnit('lengthInMilimeters', 'feet', 'TEU')
volumeInTeu;
}
See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
Use convert unit as computed property or decorator
The npm package ember-computed-convert-unit receives a total of 0 weekly downloads. As such, ember-computed-convert-unit popularity was classified as not popular.
We found that ember-computed-convert-unit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.