This site runs best with JavaScript enabled.

Aurelia - Sharing Data Between Components


Using dependency injection to share data between components.

Looking back, one of the first issues I ran into in Aurelia is "how do I get my components to talk to each other?"

This could be parent/child components or sibling components.

It turned out the answer was simply "Dependency Injection" (or DI as you might see it referred to). But what exactly is dependency injection?

In the post I'm going to try to demystify it.

Basically, whenever I have data I want shared between components, the answer is to create a separate class and inject this class into each component view-model where I need it.

It is best explained with a simple example. Check out this gist.run, then I'll explain it.

app.html:

1<template>
2 <require from="./comp1"></require>
3 <require from="./comp2"></require>
4
5 <comp1></comp1> <comp2></comp2>
6</template>

I'm basically including to components, comp1 and comp2 and displaying them on the page. Nothing fancy here.

shared-service.js

1export class Shared {
2 constructor() {
3 this.val = 'Initial value.'
4 }
5}

This is basically my shared class (or service) that I want to inject into each of my components. You could put all kinds of variables and objects in here to share, but basically we are just going to use val in each of our components.

comp1.js

1import {inject} from 'aurelia-framework'
2
3import {Shared} from 'shared-service'
4
5@inject(Shared)
6export class Comp1 {
7 constructor(shared) {
8 this.shared = shared
9 }
10
11 setVal() {
12 this.shared.val = 'Component 1 set value'
13 }
14}

Here is our first component view-model. Notice we are importing inject from aurelia-framework and our Shared class from shared-service.js.

You can then use the @inject decorator, which is an ES2016 feature, to inject this class into your view-model class. Notice you need to set it to a class variable in your constructor. If this pattern looks new to you, don't worry, you'll get used to it fast in Aurelia, because you'll use it everywhere.

If you prefer not to use the decorator for whatever reason, check out this stack overflow example on how to inject with ES5.

comp1.html

1<template>
2 <require from="./comp1child"></require>
3
4 <div>
5 Comp1: ${shared.val}<br />
6 <button click.delegate="setVal()">Set Value</button>
7 </div>
8 <br />
9
10 <comp1child></comp1child>
11</template>

Here you can basically see how I'm including a child component and outputting the shared.val value.

If you look through the other components you will notice they pretty much follow the same pattern so there is not much else to explain. Basically our shared class is a singleton that is injected to our component classes.

Bonus: One small thing I'd like to point out is the comp2child component. Notice there is no view model. All we have is comp2child.html with no associated js file.

comp2child.html

1<template bindable="val">
2 <div>
3 Comp2 Child component with no view-model.<br />
4 Edit here too: <input type="text" value.bind="val" />
5 </div>
6</template>

We are doing this with the bindable attribute in the <template> tag.

We then pass in the attribute we want to bind when we add the component: <comp2child val.two-way="shared.val"></comp2child>. Notice I'm specifying two-way data binding. If I just used .bind it would default to one-way binding and editing the value in the comp2child component would not propagate back up to the service.

If I were to have a view-model for comp2child what would it look like if I wanted to have a bindable instead of using DI? Something like this:

1import {bindable} from 'aurelia-framework'
2
3export class Comp2child {
4 @bindable val
5}

Discuss on TwitterEdit post on GitHub

Share article
Dustin Davis

Dustin Davis is a software engineer, people manager, hacker, and entreprenuer. He loves to develop systems and automation. He lives with his wife and five kids in Utah.

Join the Newsletter



Dustin Davis