
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
ember-data-filter
Advanced tools
ember install ember-data-filter
You'll need to load a custom script that enables the script before you load Ember. For example, if you call your file config.js:
// /config.js
window.EmberENV = window.EmberENV || {};
window.EmberENV.ENABLE_DS_FILTER = true;
If you're using Rails, you can use a Sprockets require directive to load this before ember:
// app/assets/application.js
//= require jquery
//= require config
//= require ember
// .. the rest of your require / file here ..
If you're loading ember using script tags, then you can simply load config.js first:
<script src="jquery.js"></script>
<script src="config.js"></script>
<script src-"ember.js"></script>
This addon enables the Ember.EmberENV.ENABLE_DS_FILTER flag. This
allows you to use store.filter without getting a deprecation warning
in Ember Data 1.13 and 2.0.
The Filter API is about to under-go some heavy churn to fix issues with it.
You can combine store.all in a computed property:
// app/controllers/posts.js
export default Ember.Controller.extend({
posts: Ember.computed(function() {
return this.store.all('post');
}),
filteredPosts: Ember.computed('posts.@each.isPublished', function() {
return this.get('posts').filterBy('isPublished');
})
});
git clone this repositorynpm installbower installember serverember testember test --serverember buildFor more information on using ember-cli, visit http://www.ember-cli.com/.
FAQs
The default blueprint for ember-cli addons.
We found that ember-data-filter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.