An addon to support the provider pattern in Ember.js via components, enabling properties to be passed to components without having to pass properties down the whole component tree.
Demo: https://ember-twiddle.com/22af9684d040d4c130080ef5c6e3e30f
ember install ember-provider-consumer
-
Create two components, a provider and consumer. The provider component will contain the properties that the consumer component will access.
Here we will use
my-providerandmy-consumeras an example of the two components.ember generate component my-provider ember generate component my-consumer -
Import the
Consumercomponent fromember-provider-consumeand the generated provider component into the generated consumer component.Subclass the
Consumercomponent and set the provider component as theproviderComponentproperty. TheproviderComponentproperty will be used to locate the provider component up the component tree.Note
Consumerhas alayoutproperty, aka template, somy-consumerdoes not have thelayoutproperty defined.my-consumercomponent's corresponding template can be removed.// app/components/my-consumer.js import ConsumerComponent from 'ember-provider-consumer'; import MyProviderComponent from './my-provider'; export default Consumer.extend({ providerComponent: InputProviderComponent });
-
Use the components! Any property set on the provider will be availalbe to the consumer, yielded as
provider. The provider component must be a parent to the consumer component, but the consumer does not have to be a direct descendent.
git clone https://github.com/GCheung55/ember-provider-consumer.gitcd ember-provider-consumeryarn install
yarn lint:hbsyarn lint:jsyarn lint:js --fix
ember test– Runs the test suite on the current Ember versionember test --server– Runs the test suite in "watch mode"ember try:each– Runs the test suite against multiple Ember versions
ember serve- Visit the dummy application at http://localhost:4200.
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.