Skip to content Skip to sidebar Skip to footer

In Aurelia, Can I Bind A Function From My Containing View-model To Be Called By My Custom Element?

I have a custom element which will take user input, and on [save] button click, I want to pass information to the parent view-model so I can send it to the server and move to the n

Solution 1:

You have two options for this. You could handle this using Custom Events, or you can do it using the call binding that Anj mentioned in his answer. Which one you use depends on your actual use case.

If you want the custom element to be able to call a method on your parent VM and pass data out of the custom element, then you should use a Custom Event as shown in this gist: https://gist.run/?id=ec8b3b11f4aa4232455605e2ce62872c:

app.html:

<template><requirefrom="./my-element"></require><divclass="content-panel"><my-elementsave.delegate="parentMethod($event)"></my-element></div>

    parentProperty = '${parentProperty}'
</template>

app.js:

exportclassApp {
  parentProperty = 7;
  parentMethod($event) {
    this.parentProperty = $event.detail;
  }
}

my-element.html:

<template><inputtype="text"value.bind="eventDetailValue" /><buttonclick.delegate="save()">Click this</button></template>

my-element.js:

import { inject, customElement, bindable } from'aurelia-framework';

@customElement('my-element')
@inject(Element)
exportclassMyElement {
  eventDetailValue = 'Hello';

  constructor(element) {
    this.element = element;
  }

  save() {
    var event = newCustomEvent('save', { 
      detail: this.eventDetailValue,
      bubbles: true
    });

    this.element.dispatchEvent(event);
  }
} 

You would basically attach any data you need to pass on the detail property of the Custom Event. In the event binding declaration, you would add $event as a parameter to the function and then check the detail property of $event in your event handler (you could also just pass $event.detail if you wanted).

If you want the custom element to be able to call a method on your parent VM and have data passed in from the parent VM (or from another custom element or something), then you should use the call binding. You can specify arguments that will be passed to the method by specifying them in the binding declaration (foo.call="myMethod(myProperty)". These arguments come from the VM context where the binding is being declared, not from the Custom Element's VM).

Solution 2:

I was able to solve this after trolling through the aurelia docs hub for a bit. I don't know all the nuances that may be involved, but for this simple example, I was able to fix it by doing the following simple change:

In parent-view-model.html (or app.html in the gist-run example), change save.bind="parentMethod" to save.call="parentMethod()"

I am still unsure how to pass data from the custom element into the parent view-model's method, however.

Here is the documentation from aurelia website.

Solution 3:

To pass parametrized functions to custom child components write the following (according to documentation http://aurelia.io/docs/binding/basics#function-references).

Parent ViewModel

private _generate(myParam:string) {
    return myParam + " world";
}

Parent View

<custom-compgenerator.call="_generate(myParam)"></custom-comp>

Child View

<templatebindable="generator">
${generator({myParam:"hello"})}
</template>

Post a Comment for "In Aurelia, Can I Bind A Function From My Containing View-model To Be Called By My Custom Element?"