kuhumcst / stucco

An experimental adaptive UI toolkit.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stucco

The Stucco1 project is an ongoing experiment in creating adaptive user interfaces on top of a generic Clojure data model. The library contains a collection of accessible reagent components that together constitute a toolkit for doing rapid application development in the browser.

Overview

The library is still very much in the hammock stage, so the API is definitely not stable. That is not to say that the software is particularly buggy, just that the names and the general organisation of the code may vary greatly between versions.

It is currently being used - together with rescope - to build the glossematics archival website as part of the "Infrastrukturalisme" project, a joint effort between the University of Copenhagen and Aarhus University.

Components

Stucco components can be divided into four separate types, each given their own namespace:

  • dk.cst.stucco.document: Document components are comparable to typical reusable components found in libraries such as re-com. The primary purpose of a Document component is to provide a basic level of interactivity expected for simple pieces of data. An example might be the illustration component which can be used in place of the HTML [:img] element.
  • dk.cst.stucco.group: Group components are used to group other components in a loose manner, while allowing the user to manipulate the layout within the group.
  • dk.cst.stucco.pattern: Implementations of common WAI-ARIA patterns. Pattern components are more complex than Document components and reflect the mutability of their underlying state. In practice, this mutability is realised as universal drag-and-drop between Document components with compatible data. An example might be the tabs or carousel components which both visualise a collection of key-value pairs according to an index.
  • dk.cst.stucco.landmark: Landmark components are used to realise a user interface declaratively. Rather than specifying their precise locations, Stucco components are partitioned semantically into WAI-ARIA Landmark sections. These sections are then positioned on the web page according to an archetypical layout. Like the Pattern or Group components, this layout can also be changed by the end user, but at a higher level of abstraction.

The components allow you to construct a user interface that can adapt to various end user requirements without resulting in configurations that become too strange. When combined, Stucco components also compose into highly accessible web applications.2

CSS

Each of the four Stucco component types have an accompanying CSS file:

  • document.css for the dk.cst.stucco.document namespace
  • group.css for the dk.cst.stucco.group namespace
  • pattern.css for the dk.cst.stucco.pattern namespace
  • landmark.css for the dk.cst.stucco.landmark namespace

If any component from one of the namespaces is in use, the accompanying CSS file must also be loaded on the page!

In addition, two other CSS files are always required:

  • theme.css - Contains user-defined vars used to adjust the overall look. Can be uses as-is or modified.
  • shared.css - Contains shared CSS used across different components.

The BEM convention is used throughout the CSS files. In fact, some ClojureScript functionality relies directly on BEM classes. Such functionality is implemented in dk.cst.stucco.dom.bem and used in e.g. dk.cst.stucco.dom.drag to support drag-and-drop functionality.

Development

The development workflow of the library itself is built around the Clojure CLI for managing dependencies and shadow-cljs for compiling ClojureScript code and providing a live-reloading development environment.3

Notes

1 A construction material used as a decorative coating for Clojure data, allowing end users to participate in sculpturing the user interface.

2 Please see doc/vision.md for more on the reasoning behind certain design decisions.

3 Please see doc/development.md for more on the development of the library itself.

About

An experimental adaptive UI toolkit.


Languages

Language:Clojure 78.7%Language:CSS 20.0%Language:HTML 1.2%