Edit: As most comments so far give me the TypeScript solution, I feel I need to repeat here: Using JavaScript ES5.
I want to create a canvas component, where I draw data based on a bound property. How can I do this in Angular2 using JavaScript?
My approach with Angular 1 would be to get the element reference in the directive, but I can't find out how this is supposed to be done now.
Here is an approach which seems to work, but I feel like washing my hands after doing this:
(function (app) {
app.DrawingComponent = ng.core
.Component({
selector: 'my-drawing',
template: '<div><canvas id="{{randomId}}"></canvas></div>'
})
.Class({
constructor: function () {
this.randomId = "canvas" + Math.random();
},
ngAfterViewInit: function() {
var canvas = document.getElementById(this.randomId);
console.log(canvas);
}
});
})(window.app || (window.app = {}));