OEMjs implements the Object Event Modeling paradigm for model-based business application engineering, based on the ideas of the MVC architecure paradigm, the Onion Architecture metaphor, and the Event Modeling approach. See also Object Event Modeling for Low-Code Business App Development for more on OEM and OEMjs, including its relationship to Object Event Simulation.
OEMjs supports
- enumerations (because JavaScript doesn't support them);
- business object classes, business event classes and business activity classes (and class hierarchies) with semantic meta-data (e.g., for declarative constraint validation);
- unidirectional and bidirectional associations;
- storage adapters that facilitate switching from one storage technology (such as IndexedDB) to another one (such as Google FireStore or CloudFlare D1);
- view models for declarative user interface definitions;
- model-based generation of user interfaces (UIs), including both CRUD data management UIs and event/activity UIs.
You can take a look at the OEMjs example apps at the project's website.
Handling Enumerations and Enumeration Attributes
const WeatherStateEL = new eNUMERATION ("WeatherStateEL",
["sunny", "partly cloudy", "cloudy", "cloudy with rain", "rainy"]);
class Weather extends bUSINESSoBJECT {
constructor (ws, t) {
this.weatherState = ws;
this.temperature = t;
}
}
Weather.properties = {
"weatherState": {range: WeatherStateEL, label: "Weather conditions"},
"temperature": {range: "Decimal", label: "Temperature"}
}
Recall that enumeration literals are constants that stand for a positive integer (the enumeration index).
For instance, the enum literal WeatherStateEL.SUNNY
stands for the enum index 1.
In program code, we do not use the enum index, but rather the enum literal. For instance,
var theWeather = new Weather( WeatherStateEL.SUNNY, 30)
We loop over the enumeration WeatherStateEL
with a for
loop counting from 1 to WeatherStateEL.MAX
:
for (let weatherState = 1; weatherState <= WeatherStateEL.MAX; weatherState++) {
switch (weatherState) {
case WeatherStateEL.SUNNY:
...
break;
case WeatherStateEL.PARTLY_CLOUDY:
...
break;
}
}
Define Constraints in the Model and Validate Them in the View and Storage Code
OEMjs allows defining property constraints for a business object class:
class Book extends bUSINESSoBJECT {
constructor ({isbn, title, year, edition}) {
super( isbn);
this.title = title;
this.year = year;
if (edition) this.edition = edition;
}
}
Book.properties = {
"isbn": {range:"NonEmptyString", isIdAttribute: true, label:"ISBN", pattern:/\b\d{9}(\d|X)\b/,
patternMessage:"The ISBN must be a 10-digit string or a 9-digit string followed by 'X'!"},
"title": {range:"NonEmptyString", min: 2, max: 50},
"year": {range:"Integer", min: 1459, max: util.nextYear()},
"edition": {range:"PositiveInteger", optional: true}
}
Suitable range constraints can be defined by using one of the supported range keywords listed below.
- "String", "NonEmptyString", "Identifier", "Email", "URL", "PhoneNumber"
- "Integer", "PositiveInteger", "NonNegativeInteger", "AutoNumber"
- "Decimal", "Number", "Percent", "ClosedUnitInterval", "OpenUnitInterval"
- "Boolean"
- "DateTime", "Date"
The constraints defined for a property in a business object class can be checked on input/change
and before submit in an HTML form and, in addition, before commit in the add
and update
methods
of a storage manager, using the generic validation method bUSINESSoBJECT.check
, as shown in the following example:
const formEl = document.querySelector("#Book-Create > form"); // loop over Book.properties and add event listeners for validation on input for (const propName of Object.keys( Book.properties)) { const propDecl = Book.properties[propName]; formEl[propName].addEventListener("input", function () { var errMsg = bUSINESSoBJECT.check( propName, propDecl, formEl[propName].value).message; formEl[propName].setCustomValidity( errMsg); }); });
Flexible Data Storage Management with Storage Adapters
OEMjs comes with a sTORAGEmANAGER class and two storage adapters for using localStorage
or ìndexedDB
.
A storage manager works like a wrapper of the methods of an adapter. The storage manager methods invoke corresponding methods of its adapter. The following code example shows how to use a storage manager for invoking a data retrieval operation on a model class Book
:
const storageAdapter = {name:"IndexedDB", dbName:"Test"};
const storageManager = new sTORAGEmANAGER( storageAdapter);
await books = storageManager.retrieveAll( Book);
Since the IndexedDB technology is much more powerful, it is normally preferred for local data storage. However, older browsers (such as IE 9) may not support it. In this case we can easily fall back to LocalStorage in the followig way:
const storageAdapter = {dbName:"Test"},
storageManager = null;
if (!("indexedDB" in window)) {
console.log("This browser doesn't support IndexedDB. Falling back to LocalStorage.");
storageAdapter.name = "LocalStorage";
} else {
storageAdapter.name = "IndexedDB";
}
storageManager = new sTORAGEmANAGER( storageAdapter);