Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-routable-components-shim

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-routable-components-shim

Shim to enable Ember's routable components.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

ember-routable-components-shim

Build Status Ember Observer Score

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).

Installation

ember install ember-routable-components-shim

Usage

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.

Usage with pods

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.

Keywords

FAQs

Package last updated on 08 Aug 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc