Skip to content

ucphhpc/migrid-ux

Repository files navigation

migrid-ux

This repository is intended as the source of truth for a series of small web applications and their supporting libraries which will form various portions of the MiGrid user-facing web interface. They are currently under extremely heavy development in branches whose content is subject to extensive change until such time as they are merged to the main branch.

Basic principles

Applications are structured around a clean separation between their state, and a rendered representation which is derived from the data contained within it. The "data" backing an application, which we refer to as their state, is bound (see binding) to a the on-screen HTML markup.

Handling of state

The state is represented as a series of observed values which signal when they are changed. Such values is commonly referred to as observables. These values are grouped into namespaces of related values, each of which can be individually serialised on demand.

Binding to observables

The HTML of the application is annotated with a series of binding attributes which are processed and e.g. any required event handlers attached. As a user interacts with the web page the values within the observables change, and any programmatic changes to observables are reflected within the browser.

Contained libraries

This repository contains a basic browser runtime enabling the construction of dynamic web applications as HTML that is bound to an observable-based state.

Heavy inspiration is taken from older solutions to this problem, in particular Knockout, but client side templating is omitted in favour favour of the use of server-side rendering of HTML fragments which are handled in a fashion similar to the more recent htmx.

Supporting modules

lib/binding.mjs

This is responsible for wiring HTML markup to observables present in the state.

lib/observable.mjs

Provides the basic observed value primitives.

lib/state.mjs

Exposes both a type and a number of construction functions which can generate and manage the observable values for a particular application based upon the delcarative definition of required values specified by a given application.

Usage

The repository is arranged to be consistent with migrid-sync and as such the main functions are exposed via a Makefile at the top level. A basic bringup involves running:

$ make local

Running the above will have the effect of installing and necessary dependencies for local development and provisioning a virtual environment to allow the use of a fake backend intended to support rapid iteration ruding development. As a final step a local web server and local backend will be started, with the application then being accessible at: http://localhost:8880

Glossary

binding

The process of attaching DOM elements to their respective observables.

namespace

A grouping of observable values which are considered to be related.

observable

An embellished value able to signal interested parties when it is changed.

state

The complete set of observed values that represent an active application.

Licensing

The source code is licensed under GPL v2. License is available here.

About

For developing and experimenting with migrid user interfaces and experiences

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors