Skip to content

Outlets

Outlets let you reference Stimulus controller instances and their controller element from within another Stimulus Controller by using CSS selectors.

The use of Outlets helps with cross-controller communication and coordination as an alternative to dispatching custom events on controller elements.

They are conceptually similar to Stimulus Targets but with the difference that they reference a Stimulus controller instance plus its associated controller element.

<div>
<div class="online-user" data-controller="user-status">...</div>
<div class="online-user" data-controller="user-status">...</div>
...
</div>

...

<div data-controller="chat" data-chat-user-status-outlet=".online-user">
...
</div>

While a target is a specifically marked element within the scope of its own controller element, an outlet can be located anywhere on the page and doesn’t necessarily have to be within the controller scope.

Attributes and Names

The data-chat-user-status-outlet attribute is called an outlet attribute, and its value is a CSS selector which you can use to refer to other controller elements which should be available as outlets on the host controller. The outlet identifier in the host controller must be the same as the target controller’s identifier.

data-[identifier]-[outlet]-outlet="[selector]"
<div data-controller="chat" data-chat-user-status-outlet=".online-user"></div>

Definitions

Define controller identifiers in your controller class using the static outlets array. This array declares which other controller identifiers can be used as outlets on this controller:

// chat_controller.js

export default class extends Controller {
static outlets = [ "user-status" ]

connect () {
this.userStatusOutlets.forEach(status => ...)
}
}

Properties

For each outlet defined in the static outlets array, Stimulus adds five properties to your controller, where [name] corresponds to the outlet’s controller identifier:

Kind Property name Return Type Effect
Existential has[Name]Outlet Boolean Tests for presence of a [name] outlet
Singular [name]Outlet Controller Returns the Controller instance of the first [name] outlet or throws an exception if none is present
Plural [name]Outlets Array<Controller> Returns the Controller instances of all [name] outlets
Singular [name]OutletElement Element Returns the Controller Element of the first [name] outlet or throws an exception if none is present
Plural [name]OutletElements Array<Element> Returns the Controller Element’s of all [name] outlets

Note: For nested Stimulus controller properties, make sure to omit namespace delimiters in order to correctly access the referenced outlet:

// chat_controller.js

export default class extends Controller {
static outlets = [ "admin--user-status" ]

selectAll(event) {
// returns undefined
this.admin__UserStatusOutlets

// returns controller reference
this.adminUserStatusOutlets
}
}

Accessing Controllers and Elements

Since you get back a Controller instance from the [name]Outlet and [name]Outlets properties you are also able to access the Values, Classes, Targets and all of the other properties and functions that controller instance defines:

this.userStatusOutlet.idValue
this.userStatusOutlet.imageTarget
this.userStatusOutlet.activeClasses

You are also able to invoke any function the outlet controller may define:

// user_status_controller.js

export default class extends Controller {
markAsSelected(event) {
// ...
}
}

// chat_controller.js

export default class extends Controller {
static outlets = [ "user-status" ]

selectAll(event) {
this.userStatusOutlets.forEach(status => status.markAsSelected(event))
}
}

Similarly with the Outlet Element, it allows you to call any function or property on Element:

this.userStatusOutletElement.dataset.value
this.userStatusOutletElement.getAttribute("id")
this.userStatusOutletElements.map(status => status.hasAttribute("selected"))

Outlet Callbacks

Outlet callbacks are specially named functions called by Stimulus to let you respond to whenever an outlet is added or removed from the page.

To observe outlet changes, define a function named [name]OutletConnected() or [name]OutletDisconnected().

// chat_controller.js

export default class extends Controller {
static outlets = [ "user-status" ]

userStatusOutletConnected(outlet, element) {
// ...
}

userStatusOutletDisconnected(outlet, element) {
// ...
}
}

Outlets are Assumed to be Present

When you access an Outlet property in a Controller, you assert that at least one corresponding Outlet is present. If the declaration is missing and no matching outlet is found Stimulus will throw an exception:

Missing outlet element "user-status" for "chat" controller

Optional outlets

If an Outlet is optional or you want to assert that at least Outlet is present, you must first check the presence of the Outlet using the existential property:

if (this.hasUserStatusOutlet) {
this.userStatusOutlet.safelyCallSomethingOnTheOutlet()
}

Referencing Non-Controller Elements

Stimulus will throw an exception if you try to declare an element as an outlet which doesn’t have a corresponding data-controller and identifier on it:

<div data-controller="chat" data-chat-user-status-outlet="#user-column"></div>

<div id="user-column"></div>

Would result in:

Missing "data-controller=user-status" attribute on outlet element for
"chat" controller`

Next: Values