dimanche 9 août 2015

Accessing "this" as the parent from callbacks emberjs nested component

I have a parent component whose template contains a dropzone component from http://ift.tt/1TjhIXZ:

{{drop-zone url='#' addRemoveLinks=true success=fileReceived}}

In the parent controller, I have a method called fileReceived which is being called when the success event triggers on the dropzone. However, I would like to call other methods which are stored on the controller when the fileReceived method is called but I cannot access "this". I tried setting an instance variable called self to "this" on didInsertElement, but it gives me window instead of my component.

This is my parent component controller:

import Ember from 'ember';

export default Ember.Component.extend({
  self:null,
  didInsertElement:function()
  {
    this.set('self', this);
  },
  fileReceived: function (file) {
    //Validate sheet

    this.sendAction('doStuff', file); //"this" returns a dropzone object instead of parentObject
    //this.doStuff(file);
  },
  actions: {
    doStuff: function (file) {
      //do stuff with the file
  }
})
;




Aucun commentaire:

Enregistrer un commentaire