Classy JavaScript with dojo/_base/declare
The dojo/_base/declare
module is the foundation of class creation within the Dojo Toolkit. declare
allows for multiple inheritance to allow developers to create flexible code and avoid writing the same code routines. Dojo, Dijit, and Dojox modules all use declare
; in this tutorial, you'll learn why you should too.
- Difficulty: Beginner
- Dojo Version: 1.10
Getting Started
Make sure you have reviewed the concepts presented in the modules tutorial.
Basic Dojo Class Creation with Dojo
The declare
function is defined in the dojo/_base/declare
module. declare
accepts three arguments: className
, superClass
, and properties
.
ClassName
The className
argument represents the name of the class, including the namespace, to be created. Named classes are placed within the global scope. The className
can also represent the inheritance chain via the namespace.
Named Class
1
2
3
4
5
6
|
A class named mynamespace.MyClass
is now globally available within the application.
Named classes should only be created if they will be used with the Dojo parser. All other classes should omit the className
parameter.
"Anonymous" Class
1
2
3
4
5
6
|
The MyClass
is now only available within its given scope.
SuperClass(es)
The SuperClass argument can be null
, one existing class, or an array of existing classes. If a new class inherits from more than one class, the first class in the list will be the base prototype, the rest will be considered "mixins".
Class with No Inheritance
1
2
3
4
5
|
null
signifies that this class has no classes to inherit from.
Class Inheriting from Another Class
1
2
3
4
5
6
|
The new MySubClass
will inherit MyClass
's properties and methods. A parent class' method or property can be overridden by adding its key with a new definition within the third argument, which will be explained shortly.
Class with Multiple Inheritance
1
2
3
4
5
6
7
8
9
10
|
An array of classes signifies multiple inheritance. Properties and methods are inherited from left to right. The first class in the array serves as the base prototype, then the subsequent classes are mixins to that class.
If a property or method is specified in more than one inherited class, the property or method from the last inherited class is used.
Properties and Methods Object
The last argument of declare
is an object containing methods and properties for the class prototype. Properties and methods provided via this argument will override their same namesake if inherited classes have the same properties.
Custom Properties and Methods
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Example: Basic Class Creation and Inheritance
The following code creates a widget that inherits from dijit/form/Button
:
1
2
3
4
5
6
7
8
9
10
11
12
|
From the snippet above, it's easy to conclude:
- The class' name is
mynamespace.Button
- The class may be referenced by the globally available
mynamespace.Button
or from the module's return value - The class inherits from
dijit/form/Button
(and thus Button's dependencies) - The class sets a few custom properties and methods
Let's dig deeper into class creation with Dojo by learning about the constructor
method.
The constructor Method
One of the special class methods is the constructor
method. The constructor
method is fired upon class instantiation, executed in the scope of the new object. This means that the this
keyword references the instance, not the original class. The constructor
method also accepts any number of instance-specific arguments.
1
2
3
4
5
6
7
8
9
10
|
Take the following instance creation:
1
|
The username used within this instance will be "defaultUser" since no specific settings were provided to the instance. To leverage the safeMixin
method, provide a username parameter:
1
2
3
|
Now the instance uses sitepen
as the username setting!
declare.safeMixin
is also useful in class creation and inheritance. As the API docs state:
This function is used to mix in properties like lang._mixin does, but it skips a constructor property and decorates functions like dojo/_base/declare does. It is meant to be used with classes and objects produced with dojo/_base/declare. Functions mixed in with declare.safeMixin can use this.inherited() like normal methods. This function is used to implement extend() method of a constructor produced with declare().
declare.safeMixin
is the perfect ally when creating classes with numerous options.
Inheritance
As stated above, inheritance is defined within the second argument of declare
. Classes are mixed-in from left to right with each subsequent class' properties and methods getting priority over the previous if a property has already been defined. Take the following:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
The result of the inherited class properties is:
1
2
3
4
5
6
7
|
It is important to have a clear understanding of prototypical inheritance. When a property is read from an object instance, the instance itself is first inspected to see if the property is defined on it. If not, the prototype chain is traversed and the value from the first object in the chain that has the property defined is returned. When a value is assigned to a property it is always on the object instance, never the prototype. The result of this is that all objects that share a common prototype will return the same value for a property defined on the prototype, unless the value has been set on the instance. This makes it easy to define default values for primitive data types (number, string, boolean) in your class declaration and update them on instance objects as needed. However, if you assign object values (Object, Array) to a property on the prototype, every instance will manipulate the same shared value. Consider the following:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
To avoid inadvertently sharing arrays or objects among all instances, object properties should be declared with null values and initialized in the constructor function:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Refer to the dojo/_base/declare documentation for additional information.
this.inherited
While completely overriding methods is certainly useful, sometimes the constructor of each class up through the inheritance chain should be executed to preserve its original functionality. This is where thethis.inherited(arguments)
statement comes in handy. The this.inherited(arguments)
statement calls the parent class' method of the same name. Consider the following:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
The this.inherited
method can be called at any time within the child class' code. There will be some cases where you will want to call inherited()
in the middle of the child function, or even at the end. That said, you should not call it from within the constructor.
Conclusion
The declare
function is the key to creating modular, reusable classes with the Dojo Toolkit. declare
allows for complex class recreation with multiple inheritance and any number of properties and methods. Better yet is that declare
is simple to learn and will allow developers to avoid repeating code.
dojo/_base/declare Resources
Looking for more detail about declare
and class creation? Check out these great resources:
Reference: http://dojotoolkit.org/documentation/tutorials/1.10/declare/