
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
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.
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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.