THIS IS A LEGACY ADDON THAT'S NO LONGER ACTIVELY MAINTAINED. IF YOU'RE LOOKING FOR AN UP TO DATE ALTERNATIVE, I'D RECOMMEND http://ember-basic-dropdown.com/
Simple dropdown component and mixin for Ember. While it is very straightforward to create toggle functionality in Ember with the if-helper, this dropdown will also close on click-out or when pressing the Escape key.
Demo available here.
npm install --save-dev ember-rl-dropdown
This addon does not provide any css for the dropdown, but it should work well with frameworks such as Twitter Bootstrap (see example below).
The component tagnames and classes can be altered to work with your favorite framework or your own custom css.
closeOnChildClick
may be set to a jQuery selector for child elements that should cause the dropdown to close when
clicked. The default behavior is for the dropdown to remain visible when the user interacts with its child elements.
Set it to true
if any child element should close the dropdown.
propagateClicks
may be set to false
on the rl-dropdown-toggle
component and/or the rl-dropdown
component if
click events should not propagate up through the DOM from either or both of these components.
The rl-dropdown-container
component also passes a boolean block param indicating whether or not the dropdown is
expanded, which can be used to e.g. customize the toggle button text based on whether the dropdown is expanded or
closed:
It is also possible to bind actions to the onOpen
and onClose
attributes on the rl-dropdown-container
component:
The onOpen
action will be called when the dropdown is opened; the onClose
action will be called when the dropdown
is closed.
When integrating dropdown functionality in your own components, you may prefer to use the mixin instead of using the
dropdown components. Be sure to add the rl-dropdown-toggle
class to your dropdown toggle element, and to add the
rl-dropdown
class to your dropdown element. You can send toggleDropdown
, closeDropdown
and openDropdown
events
to toggle, close or open the dropdown.
// app/components/user-controls.js
import Ember from 'ember';
import DropdownComponentMixin from 'ember-rl-dropdown/mixins/rl-dropdown-component';
export default Ember.Component.extend(DropdownComponentMixin, {
// Some additional custom behaviour
});