I'm having an issue with the 'this' scope when using ES6.
Here´s a link to my original and transpiled code with BabelJS.
When calling a function to remove an item from an array the scope of 'this' is undefined.
How can I make this to make this without redefining this (let self = this)?
"use strict";
var _createClass = (function() {
function defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
return function(Constructor, protoProps, staticProps) {
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
return Constructor;
};
})();
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
var Point = (function() {
function Point() {
var _this = this;
_classCallCheck(this, Point);
this.myArray = ko.observableArray([1, 2, 3, 4]);
this.removeFromArrayWithArrowFunction = function(value) {
_this.myArray.remove(value);
};
}
_createClass(Point, [{
key: "removeFromArray",
value: function removeFromArray(value) {
this.myArray.remove(value);
}
}]);
return Point;
})();
ko.applyBindings(new Point());
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<span data-bind="text: ko.toJSON(myArray)"></span>
<h2>Issues with this scoping when using a regular Function</h2>
<ul data-bind="foreach: myArray">
<li>
<a href="#" data-bind="text: $data, click: $parent.removeFromArray"></a>
</li>
</ul>
<h2>Works as expected using an arrow function</h2>
<ul data-bind="foreach: myArray">
<li>
<a href="#" data-bind="text: $data, click: $parent.removeFromArrayWithArrowFunction"></a>
</li>
</ul>