Skip to content

Render elsewhere in the DOM, with nice composition, animation, etc. Based on 100% public API.

License

Notifications You must be signed in to change notification settings

channingallen/ember-elsewhere

 
 

Repository files navigation

ember-elsewhere

NPM Ember Observer Score Ember Version

This addon makes it easy to manage sidebars, toolbars, popups, modals, or any piece of DOM that you want to lift outside your normal route hiearchy.

It is similar to ember-wormhole, but is a better choice when your target is within your own Ember app (as opposed to arbitrary, potentially foreign DOM). It is also easier to compose with animations and it's based on 100% public API.

The best documentation is the sample application in tests/dummy, which is also running at http://ef4.github.io/ember-elsewhere/.

Install

ember install ember-elsewhere

Components

Create a target named "my-right-sidebar":

{{from-elsewhere name="my-right-sidebar"}}

Anywhere else in your app, declare which component should render in the target -- complete with bound inputs and actions:

{{to-elsewhere named="my-right-sidebar" send=(component "cool-thing" model=model launch=(action "launchIt"))}}

For fancier behaviors, you can use the block form of {{#from-elsewhere}}, which gives you an opportunity to extend the target's behavior in arbitrary ways. For example, this lets your target animate as its content changes:

{{#from-elsewhere name="modal" as |modal|}}
  {{#liquid-bind modal as |currentModal|}}
    <div class="modal-background"></div>
    <div class="modal-container">
      {{component modal}}
    </div>
  {{/liquid-bind}}
{{/from-elsewhere}}

Passing additional state through to the target

When you're using the block form of from-elsewhere, it's entirely up to you what value you send to the target. It can be more than just a component. Here is a complete example of an animatable modal that supports an onOutsideClick action while providing shared layout for the background and container:

{{to-elsewhere named="modal"
               send=(hash body=(component "warning-message")
                          onOutsideClick=(action "close")) }}
{{#from-elsewhere name="modal" as |modal|}}
  {{#liquid-bind modal as |currentModal|}}
    <div class="modal-container">
      <div class="modal-background" onclick={{action currentModal.onOutsideClick}}></div>
      <div class="modal-dialog" >
        {{component currentModal.body}}
      </div>
    </div>
  {{/liquid-bind}}
{{/from-elsewhere}}

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember try:testall to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

About

Render elsewhere in the DOM, with nice composition, animation, etc. Based on 100% public API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 66.0%
  • HTML 27.7%
  • CSS 6.3%