Controllers
Last updated
Last updated
In EJS, a controller is a class responsible for providing action methods to execute specific functionality within a module.
Acting as an interface to a module, controllers provide predefined functionality which may be called from the application.
A controller is a class that resides in a module's Controller
namespace and has its name suffixed with Controller. Each controller class may optionally include a constructor which will be passed the active instance and the application's .
In many cases, a module only needs a single controller. However, for larger modules, it is a good idea to group related functionality into multiple controllers.
An action method is a method on a controller class with its name suffixed with Action. The application will call these methods to interact with modules from the outside. This ensures that a module can properly dictate how it should be used while preventing coupling to the application itself.
Action methods may optionally return a value. If the returned value is a , it will be inserted into the active layout.
An asynchronous action method is a method that may not return immediately as it needs to wait for its processing to complete (e.g. waiting for a component to load). Instead of returning a value directly, asynchronous action methods return a Promise that will resolve to the return value.
A synchronous action method is a method that does not contain any asynchronous processing, and optionally returns a value immediately.
Synchronous action methods are most useful for preloading related resources.
In this example, MyComponent
and its dependencies will be loaded recursively when MyFirstController
is loaded. When mySyncMethodAction
is called, it can return MyComponent immediately as it is already loaded.
Preloading resources should be used sparingly and primarily for optimization when necessary. Excessive preloading can cause performance issues resulting from network or memory limits.
When designing your controllers, it's likely you'll want to share some common functionality across many or all of them.
EJS provides a simple abstract controller with some convenience methods:
ElentraJS/Controller/ControllerAbstract#respond(componentName)
Accepts the filename of a component, relative to the module's Component
namespace. Returns a Promise that will resolve to the component when it is loaded.
Always prefer .