💼 This rule is enabled in the ✅ recommended
config.
Since the beginning of Ember's existence, Computed Properties (CPs) have been used to accomplish reactivity in the framework. With Ember Octane, new features were introduced including Glimmer components, native JavaScript classes and Tracked Properties. With Ember Octane's new programming model, CPs are no longer needed. If using native JavaScript classes, Tracked Properties should be used instead as they give us the same benefit of CPs but with less boilerplate and more flexibility.
This rule disallows using computed properties with native classes.
Examples of incorrect code for this rule:
import Component from '@ember/component';
import { and, or, alias } from '@ember/object/computed';
export default class MyComponent extends Component {
// ...
}
import Component from '@ember/component';
import { computed } from '@ember/object';
export default class MyComponent extends Component {
// ...
}
Examples of correct code for this rule:
import { computed } from '@ember/object';
import Component from '@ember/component';
export default Component.extend({});
import { alias, or, and } from '@ember/object/computed';
import Component from '@ember/component';
export default Component.extend({});
// Allowed if `ignoreClassic` option is enabled.
import { computed } from '@ember/object';
import { alias, or, and } from '@ember/object/computed';
import Component from '@ember/component';
import classic from 'ember-classic-decorator';
@classic
export default class MyComponent extends Component {}
import { tracked } from '@glimmer/tracking';
import Component from '@ember/component';
export default class MyComponent extends Component {}
Name | Description | Type | Default |
---|---|---|---|
ignoreClassic |
Whether the rule should ignore usage inside of native classes labeled with @classic . |
Boolean | true |
- Ember 3.13 Release Notes (minimum Ember version needed to use tracked properties)
- Ember Guides: Tracked Properties
- Tracked Properties Deep Dive
- ember-native-class-codemod
- ember-classic-decorator