Skip to content

A JS library for low-code app development, based on business object, event and activity classes defined with property ranges and other property constraints. OEMjs allows building business apps quickly without boilerplate code for user interfaces, constraint validation and data storage management.

License

Notifications You must be signed in to change notification settings

gwagner57/OEMjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Object Event Modeling JavaScript App Development (OEMjs)

A Framework for Low-Code Business App Development

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

  1. enumerations (because JavaScript doesn't support them);
  2. business object classes, business event classes and business activity classes (and class hierarchies) with semantic meta-data (e.g., for declarative constraint validation);
  3. unidirectional and bidirectional associations;
  4. storage adapters that facilitate switching from one storage technology (such as IndexedDB) to another one (such as Google FireStore or CloudFlare D1);
  5. view models for declarative user interface definitions;
  6. 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.

Use Case 1: Enumerations

Handling Enumerations and Enumeration Attributes

Defining an Enumeration

const WeatherStateEL = new eNUMERATION ("WeatherStateEL", 
    ["sunny", "partly cloudy", "cloudy", "cloudy with rain", "rainy"]);

Using an Enumeration as the Range of an Attribute

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"}
}

Using Enumeration Literals

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)

Looping over an Enumeration

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;
  }
}

Use Case 2: Declarative Constraint Valdiation

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);
  });
});

Use Case 3: Storage Adapters

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);

About

A JS library for low-code app development, based on business object, event and activity classes defined with property ranges and other property constraints. OEMjs allows building business apps quickly without boilerplate code for user interfaces, constraint validation and data storage management.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published