Anti-Patterns
This page should give you an overview (in no particular order) about programming pattern you should avoid.
Creating multiple instances of the same widget
Do not create multiple instances of a widget which is added/removed multiple times when it is sufficient to e.g. only change the data represented by the widget.
Synchronous requests
Using synchronous requests will block the whole GUI until the response is received. Always use asynchronous requests to give the control back to the user.
Long-running tasks
Running intensive tasks on the client should not be an option. Such tasks should reside on the server-side. If it not possible (or not desired) there should be at least a reasonable feedback to the user about the intensive task currently running. If long-running tasks can be split into a sequence of small tasks, the Progressive (qx.ui.progressive.Progressive) widget may allow you to progressive execute the sequence of small tasks without blocking other operation of your application. Organizing your application around a finite state machine (qx.util.fsm.FiniteStateMachine) may also help to avoid the pitfalls of long-running tasks.
Inline functions
Using anonymous inline functions has several disadvantages:
- they are harder to debug
- API Viewer will not list them, therefore you can not comment them correctly
- other programmers will not find them at first glance
- they might not appear in an IDE’s outline view
So please avoid using them.
Reference types in member section
Data fileds (every data attached to this) can and should be declared in the members section. This makes it easier to find the data fields, which a may otherwise be deeply hidden in the code.
It is possible to initialize these data fileds in the members section with primite data types like String or Number but it should never be initialized with reference types. Reference types are Object (Maps), Array, Date and RegExp. The reason for this is that these references will be shared by all instances of the class. This is typically not the desired behavior. It is better to set the value of these fields in the members section to null and initialize them in the constructor.
BAD:
members : { __myArray : [], // <-- don't do this! __myMap : {}, // <-- don't do this! ... }
GOOD:
construct : function() { this.base(arguments); ... this.__myArr = []; this.__myMap = {}; } members : { __myArray : null, __myMap : null, ... }
For the same reason reference types should not be used as init values in property definitions.
Abundandly "requiring" other classes
“requires” in the qooxdoo context are dependencies of a class to other classes which have to be available at load-time, i.e. at the time the class code is read and evaluated by qooxdoo’s class factory (currently qx.Class.define). This is in contrast to dependencies which come into play only at run-time of the class code, e.g. when its constructor or member functions are invoked. (Run-time dependencies are usually easy to fullfill since they don’t impose an order in which classes are loaded into the browser’s Javascript interpreter; in general, they just have to be loaded eventually).
There are exactly 4 ways to establish a load-time requirement of a class:
- #require() hint:
Explicitly requiring another class by using a#requirehint in the source file of the class. - statics section:
Initializing astaticsmember in the class definition with a class instance (using thenewoperator) or by calling a static class method makes the referenced class a requirement of the referencing class. - defer section:
All references to other classes (instantiations, static method invocations) in thedefersection of a class makes those other classes “requires” of the current class. - “require” config key:
All classes listed for a particular class in the generator Json configuration file under the “require” key makes those classes requires for the key class.
All those possibilities should be avoided or at least used as sparingly as possible. Those requires make dependency tracking difficult and furthermore impedes partitioning the application into parts if this is desired.
Do not name variables as native objects
qooxdoo comes with a powerful variable optimizer to shrink down the size of your javascript code delivered to the browsers. This optimization is performed with the build version of your application by default. To avoid any runtime errors it is recommended to not name your variables as native browser objects.
Conside the following:
var myIframe = new qx.ui.embed.Iframe(mySourceURL); ... var document = myIframe.getDocument(); // this piece document.body.appendChild(myChildNode); // will end up in "build" version with p.body.appendChild(myChildNode); // assuming the "document" variable is optimized with "p" as variable name
