How should I be passing parameter data, and how do I exactly do it without defining a directive or component?
Let's say you wanted to defined a child class structure that is merely a object process that does something but you weren't as interested in angularizing syntax to pass parameter data. There is a way to do this. The secret goes to C and C++ and other non scripting high level languages that make use of pointers for referencing the memory of object data. As it turns out in scripting languages commonly, though they don't make use of point or call by referencing exactly, but you can still do it!
Scripting languages (e.g., Java, Javascript, and Python for instance) are locked out from call by referencing on:
-number, float, integer, boolean, and so forth object types.
But not on:
-array, list, hashlist, map, dictionary, class, struct, string, and so forth.
Thus if you wrap a locked object type in one of the non locked out types such as an array, you can pass parameter data by modification.
The beauty of doing a 'binding' this way is that it is quite simple in terms of syntax. Literally you use an object wrapper that does the same thing.
I have avoided defining event listeners for parameter data changes. Namely in my particular case synchronizing animation loop start and stops between two angular directives, the loop itself would act as an event listener thus omitting the need in explicitly defining an event detection structure in angular. As it turns out though object wrapped types, I believe, are not detected by implicit changes say in the array such as modification of the array at a given already assigned index. Thus defining event listeners in angular will likely have work around if you plan on constructing event listeners in conjunction with object wrapping methods that I have described.
You can construct event listeners (without defining these formally) also by using recursion calls:
method(){
requestAnimationFrame(()=>this.method())
}
Technically its an animation timer, but it should be safe for event handling processes. You'd just need to define breaks if you want to pause or stop this event handler (e.g. a boolean structure that prevents reiteration of the recursion call).
No comments:
Post a Comment