I’ve been consulting in a company at that time – developers of the client, after seeing the screencast, immediately asked me: “So what should we use? The ‘xtype’ style or Abstract classes?”
The curt answer would be: “Use whatever you prefer.” or “Use both”.
However, decisions based on mere “preference” or on “I use it because it is available” are often not fully rational and can lead to troubles as the application grows. Thus, let’s take a deeper look to see if there are any pitfalls and to find how can we get most of both methods.
Note: Before you continue, read “Writing a big application in Ext”, watch the Jay’s screencast and understand both, otherwise, the following text won’t make any sense to you.
Abstract ExtJS Class
Abstract classes are not to be used directly but they serve more like templates that specify methods and properties to be implemented in classes derived from them. They are very useful in object oriented programming because they force developers to implement all mandatory methods with same signature (signature = arguments the method or function accepts) and return values so there is a greater chance to develop a bug free code.
However, in ExtJS (and JavaScript that is scripting language where source is not compiled but directly interpreted), there is no mechanism to warn developer “you haven’t implemented method XY” or “your implementation has wrong signature” so we need to take care ourselves.
Nevertheless, the idea of abstract classes is useful also in JavaScript/ExtJS environment because:
- logic and configuration common to all expected descendants can be put in the abstract base class that eliminates the code duplication, speeds up development and debugging, and increases future code maintainability greatly
- abstract classes tell us which methods to implement
- it increases the human readability of the code (Remember, we always try to write the code to be readable and understandable by us and others in the future.)
The Basic Idea
The basic idea Jay presents in his great screencast is to extend an Ext Component, FormPanel for example, and add stub methods to it:
Ext.ns('MyApp'); MyApp.AbstractFormPanel = Ext.extend(Ext.form.FormPanel, { submitUrl:null ,initComponent:function() { Ext.apply(this, { items:this.buildItems() ,buttons:this.buildButtons() }); MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent ,buildItems:function() { return []; } // eo function buildItems ,buildButtons:function() { return []; } // eo function buildButtons }); // eo extend
The empty “buildXxx” methods will be implemented in the abstract class extension.
Tweaking the Abstract Class example
While perfect for the educational purposes, we need to tweak this code if want to use it in the production quality application. I shall walk you through recommended improvements.
initialConfig
Ext.Component takes the config object passed to its constructor and saves it in the object variable initialConfig
when it instantiates. Although items and buttons in combination with the FormPanel in the above example do not rely on it, so the example runs as expected, initialConfig
is used on the Ext.Component level so it may be used by any of Component descendants.
Let’s take care of it and modify initComponent
as follows:
,initComponent:function() { // create config object var config = {}; // build config properties Ext.apply(config, { items:this.buildItems() ,buttons:this.buildButtons() }); // apply config Ext.apply(this, Ext.apply(this.initialConfig, config)); // call parent MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent
Return Values
Abstract methods in the example return empty arrays. That is no problem for items or buttons but if we want to have also buildTbar
or buildBbar
factory functions that return empty arrays [] then top and bottom toolbars are always created, but empty, if methods are not implemented in derived classes. (Empty toolbars are quite ugly when rendered.)
Therefore, always return undefined from the abstract methods. For now, the class could look like this:
Ext.ns('MyApp'); MyApp.AbstractFormPanel = Ext.extend(Ext.form.FormPanel, { submitUrl:null ,initComponent:function() { // create config object var config = {}; // build config properties Ext.apply(config, { items:this.buildItems() ,buttons:this.buildButtons() ,tbar:this.buildTbar() ,bbar:this.buildBbar() }); // apply config Ext.apply(this, Ext.apply(this.initialConfig, config)); // call parent MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent ,buildItems:function() { return undefined; } // eo function buildItems ,buildButtons:function() { return undefined; } // eo function buildButtons ,buildTbar:function() { return undefined; } // eo function buildTbar ,buildBbar:function() { return undefined; } // eo function buildBbar
Passing config
to Abstract Factory Methods
If we pass config
object to abstract methods then we can apply the created items, buttons, toolbar items directly to it. That has no great benefit in itself, however, if we create a sequence or interceptor of these methods we can use the config object directly.
So now we have:
Ext.ns('MyApp'); MyApp.AbstractFormPanel = Ext.extend(Ext.form.FormPanel, { submitUrl:null ,initComponent:function() { // create config object var config = {}; // build config properties this.buildItems(config); this.buildButtons(config); this.buildTbar(config); this.buildBbar(config); // apply config Ext.apply(this, Ext.apply(this.initialConfig, config)); // call parent MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent ,buildItems:function(config) { config.items = undefined; } // eo function buildItems ,buildButtons:function(config) { config.buttons = undefined; } // eo function buildButtons ,buildTbar:function(config) { config.tbar = undefined; } // eo function buildTbar ,buildBbar:function(config) { config.bbar = undefined; } // eo function buildBbar }); // eo extend
The Final Touch
If you look in the initComponent
now you see that we call a series of “build” functions in it. Let’s move it into another factory method:
Ext.ns('MyApp'); MyApp.AbstractFormPanel = Ext.extend(Ext.form.FormPanel, { submitUrl:null ,initComponent:function() { // create config object var config = {}; // build config this.buildConfig(config); // apply config Ext.apply(this, Ext.apply(this.initialConfig, config)); // call parent MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent ,buildConfig:function(config) { this.buildItems(config); this.buildButtons(config); this.buildTbar(config); this.buildBbar(config); } // eo function buildConfig ,buildItems:function(config) { config.items = undefined; } // eo function buildItems ,buildButtons:function(config) { config.buttons = undefined; } // eo function buildButtons ,buildTbar:function(config) { config.tbar = undefined; } // eo function buildTbar ,buildBbar:function(config) { config.bbar = undefined; } // eo function buildBbar }); // eo extend
The above gives you the flexibility of implementing or overriding of the whole buildConfig
function or individual items, buttons, bars functions. It also takes care of initialConfig
problem.
It’s a kind of a “pattern” and I will publish it in my “file patterns” series on this blog with more code comments.
Example
If we build upon Jay’s example, using the pattern above, we get:
AbstractFormPanel.js
:
Ext.ns('MyApp'); MyApp.AbstractFormPanel = Ext.extend(Ext.form.FormPanel, { defaultType:'textfield' ,frame:true ,width:300 ,height:200 ,labelWidth:75 ,submitUrl:null ,submitT:'Submit' ,cancelT:'Cancel' ,initComponent:function() { // create config object var config = { defaults:{anchor:'-10'} }; // build config this.buildConfig(config); // apply config Ext.apply(this, Ext.apply(this.initialConfig, config)); // call parent MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent ,buildConfig:function(config) { this.buildItems(config); this.buildButtons(config); this.buildTbar(config); this.buildBbar(config); } // eo function buildConfig ,buildItems:function(config) { config.items = undefined; } // eo function buildItems ,buildButtons:function(config) { config.buttons = [{ text:this.submitT ,scope:this ,handler:this.onSubmit ,iconCls:'icon-disk' },{ text:this.cancelT ,scope:this ,handler:this.onCancel ,iconCls:'icon-undo' }]; } // eo function buildButtons ,buildTbar:function(config) { config.tbar = undefined; } // eo function buildTbar ,buildBbar:function(config) { config.bbar = undefined; } // eo function buildBbar ,onSubmit:function() { Ext.MessageBox.alert('Submit', this.submitUrl); } // eo function onSubmit ,onCancel:function() { this.el.mask('This form is canceled'); } // eo function onCancel }); // eo extend
Mention please that I moved hard-wired button texts to class properties. The reason is that this way we can easily localize (translate) these texts to another languages. I didn’t take care of messages of handlers though. You will do in your localizable applications, won’t you?
AddressFormPanel.js
:
Ext.ns('MyApp'); MyApp.AddressFormPanel = Ext.extend(MyApp.AbstractFormPanel, { title:'Edit address data' ,submitUrl:'addressAction.asp' ,buildItems:function(config) { config.items = [{ name:'address1' ,fieldLabel:'Address 1' },{ name:'address2' ,fieldLabel:'Address 2' },{ name:'city' ,fieldLabel:'city' },{ xtype:'combo' ,name:'state' ,fieldLabel:'State' ,store:['MD', 'VA', 'DC'] },{ xtype:'numberfield' ,name:'zip' ,fieldLabel:'Zip Code' }]; } // eo function buildItems }); // eof
NameFormPanel.js
:
Ext.ns('MyApp'); MyApp.NameFormPanel = Ext.extend(MyApp.AbstractFormPanel, { title:'Edit name data' ,submitUrl:'nameAction.asp' ,okT:'OK' ,buildItems:function(config) { config.items = [{ name:'firstName' ,fieldLabel:'First Name' },{ name:'lastName' ,fieldLabel:'Last Name' },{ name:'middleName' ,fieldLabel:'Middle Name' },{ xtype:'datefield' ,name:'dob' ,fieldLabel:'DOB' }]; } // eo function buildItems //Extension ,buildButtons:function(config) { // let parent build buttons first MyApp.NameFormPanel.superclass.buildButtons.apply(this, arguments); // tweak the submit button config.buttons[0].text = this.okT; config.buttons[0].handler = this.onOkBtn; } // eo function buildButtons //Override ,onOkBtn:function() { console.info('OK btn pressed'); } // eo function onOkBtn }); // eo extend // eof
With this setup, we can even create instance of AbstractForm panel directly passing some/all build functions inline:
var nameForm = new MyApp.AbstractFormPanel({ title:'Name Form Panel configured inline' ,width:300 ,height:200 ,renderTo:Ext.getBody() ,buildItems:function(config) { config.items = [{ name:'firstName' ,fieldLabel:'First Name' },{ name:'lastName' ,fieldLabel:'Last Name' },{ name:'middleName' ,fieldLabel:'Middle Name' },{ xtype:'datefield' ,name:'dob' ,fieldLabel:'DOB' }]; } // eo function buildItems });
Note: Although the above works, it violates the rule of not instantiating an abstract class directly. It’s up to you if you will do it or not.
Combining with “xtypes”
Now, do not succumb to the temptation of “putting everything” in factory functions. Abstract classes are just a programming style, not an universal solvent.
Imagine, you have your own carefully crafted Submit and Cancel buttons so if you would “put everything” in the factory functions you would need to copy buttons configurations many times because also toolbars, grids, data views, etc can contain them.
Create extensions (xtypes) for those buttons instead. The following illustrates the approach:
SubmitButton.js
Ext.ns('MyApp'); MyApp.SubmitButton = Ext.extend(Ext.Button, { text:'Submit' ,iconCls:'icon-disk' ,initComponent:function() { MyApp.SubmitButton.superclass.initComponent.apply(this, arguments); } // eo function initComponent }); // eo extend Ext.reg('submitbutton', MyApp.SubmitButton); // eof
CancelButton.js
:
Ext.ns('MyApp'); MyApp.CancelButton = Ext.extend(Ext.Button, { text:'Cancel' ,iconCls:'icon-undo' ,initComponent:function() { MyApp.CancelButton.superclass.initComponent.apply(this, arguments); } // eo function initComponent }); // eo extend Ext.reg('cancelbutton', MyApp.CancelButton); // eof
and AbstractFormPanel.js
:
Ext.ns('MyApp'); MyApp.AbstractFormPanel = Ext.extend(Ext.form.FormPanel, { defaultType:'textfield' ,frame:true ,width:300 ,height:200 ,labelWidth:75 ,submitUrl:null ,initComponent:function() { // create config object var config = { defaults:{anchor:'-10'} }; // build config this.buildConfig(config); // apply config Ext.apply(this, Ext.apply(this.initialConfig, config)); // call parent MyApp.AbstractFormPanel.superclass.initComponent.call(this); } // eo function initComponent ,buildConfig:function(config) { this.buildItems(config); this.buildButtons(config); this.buildTbar(config); this.buildBbar(config); } // eo function buildConfig ,buildItems:function(config) { config.items = undefined; } // eo function buildItems ,buildButtons:function(config) { config.buttons = [{ xtype:'submitbutton' ,scope:this ,handler:this.onSubmit },{ xtype:'cancelbutton' ,scope:this ,handler:this.onCancel }]; } // eo function buildButtons ,buildTbar:function(config) { config.tbar = undefined; } // eo function buildTbar ,buildBbar:function(config) { config.bbar = undefined; } // eo function buildBbar ,onSubmit:function() { Ext.MessageBox.alert('Submit', this.submitUrl); } // eo function onSubmit ,onCancel:function() { this.el.mask('This form is canceled'); } // eo function onCancel }); // eo extend // eof
Note: The above buttons are far too simple to be extended in the real world but you get the point, right?
Conclusion
Abstract classes, as Jay Garcia defines and presents them, are a very useful ExtJS programming technique and if you use them in the information provided in this post your code will be clean, flexible and maintainable. That is what all we developers want.
Happy coding!
Further reading:
- Ext, Angular, React, and Vue - 27. June 2019
- The Site Resurgence - 11. February 2018
- Configuring ViewModel Hierarchy - 19. June 2015