Git Product home page Git Product logo

gwagner57 / oemjs Goto Github PK

View Code? Open in Web Editor NEW
3.0 4.0 0.0 2.67 MB

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.

Home Page: https://gwagner57.github.io/OEMjs/

License: Other

CSS 13.26% JavaScript 45.58% HTML 41.17%
low-code mvc activity-based-modeling event-modeling javascript-framework model-based-development plain-js

oemjs's Introduction

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

oemjs's People

Contributors

fortrieb avatar gwagner57 avatar saile3 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.