Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
ember-routable-components-shim
Advanced tools
This addon adds support for routable components to Ember.js.
Controllers can be replaced with routable components. Routable components do not retain state between transitions. The route's model
attribute is available to the component, and actions not handled by the component will bubble up to the route.
Supports Ember.js version 2.7 and greater. If you need support for 2.6 and below, use v0.0.2 (see instructions on that tag).
ember install ember-routable-components-shim
Create your routable component (instead of a controller):
// components/post.js
import Ember from 'ember';
export default Ember.Component.extend({
componentProperty: 'componentValue'
});
{{!-- templates/components/post.hbs --}}
Model property: {{model.modelProperty}}<br/>
Component property: {{componentProperty}}
Create a route:
// routes/post.js
import Ember from 'ember';
export default Ember.Route.extend({
model: function () {
return {
modelProperty: 'modelValue'
};
}
});
Add the route to router.js
as normal:
// router.js
Router.map(function() {
this.route('post', { path: '/post' });
});
Visiting /post
should now render your routable component.
If you use pods, you can keep each route and routable component/template in the same directory. Use the resolver included in this addon instead of the default:
// resolver.js
import Resolver from 'ember-routable-components-shim/resolver';
export default Resolver;
Create your route and routable component:
// pods/components/post/route.js
import Ember from 'ember';
export default Ember.Route.extend({
model: function () {
return {
modelProperty: 'modelValue'
};
}
});
// pods/components/post/component.js
import Ember from 'ember';
export default Ember.Component.extend({
componentProperty: 'componentValue'
});
{{!-- pods/components/post/template.hbs --}}
Model property: {{model.modelProperty}}<br/>
Component property: {{componentProperty}}
Add the route to router.js
:
// router.js
Router.map(function() {
this.route('post', { path: '/post' });
});
Visiting /post
should now render your routable component.
FAQs
Shim to enable Ember's routable components.
The npm package ember-routable-components-shim receives a total of 2 weekly downloads. As such, ember-routable-components-shim popularity was classified as not popular.
We found that ember-routable-components-shim 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.