Prototypal inheritance is a powerful JavaScript paradigm, but managing large applications can be challenging. Consider a carousel class with numerous functions:
Carousel.prototype.next = function () {...} Carousel.prototype.prev = function () {..} Carousel.prototype.bindControls = function () {..}
Refactoring for better code organization might involve grouping functions into sub-objects:
Carousel.prototype.controls = { next: function () { ... } , prev: function() { ... }, bindControls: function () { .. } }
However, this change introduces a problem: the "this" keyword within these functions no longer refers to the carousel instance.
Maintaining the "this" context is crucial, especially in scenarios where classes inherit from parent classes. Overriding functions in inherited classes must preserve proper "this" behavior.
One approach is to define Controls as a separate class and store a reference to the carousel instance:
var Controls = function (controllable_object) { this.ref = controllable_object; }; Controls.prototype.next = function () { this.ref.foo(); } // ..
While this solution addresses the "this" issue, it prevents the overriding of Controls' implementation.
A more flexible approach involves dependency injection:
var Controls = function (controllable_object) { this.ref = controllable_object; }; Controls.prototype.next = function () { this.ref.foo(); } // .. var Carousel = function () { this.controllers = []; }; Carousel.prototype.addController = function (controller) { this.controllers.push(controller); }; // ..
In this scenario, the carousel class can add multiple controllers, accommodating multiple sets of functionality and allowing for easy overrides.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3