EDIT: I realized the below is probably better for its own topic. I also realized that the main issue I have is importing the actions of a component into a plugin outlet. I’ve asked a question about it here:
Is there a simpler/standard way to successfully pass arguments into a plugin outlet?
For example:
If in a template there is the following reference to the composer-action-title component, like this:
composer.hbs:
{{composer-action-title
model=model
openComposer=(action "openComposer")
closeComposer=(action "closeComposer")
canWhisper=canWhisper
tabindex=8
}}
and I wanted to add a plugin outlet that–in that plugin outlet–had the same code, like:
connectors/cool-outlet/cool-outlet.hbs:
{{composer-action-title
model=model
openComposer=(action "openComposer")
closeComposer=(action "closeComposer")
canWhisper=canWhisper
tabindex=8
}}
What do I need to do to allow my cool-outlet plugin outlet the ability to successfully reference the composer-action-title component?
Using a reference like:
{{plugin-outlet name="cool-outlet" args=(hash model=model)}}
in composer.hbs does not seem to work.