Skip to content

slub/exhibition-live

 
 

Repository files navigation

The adb-next project is an exhibition-catalog, that uses Next.js.

Documentation

Exhibition Catalog Live

A live demo of the exhibition catalog is available here: https://slub.github.io/exhibition-live/

You might want to set your own storage backend(s) within the settings modal.

Storybook stories

The pure frontend specific component based framework, that sets the base of the exhibition catalog is documented within the Storybook.

You can get a live preview of the current develop branch here: https://slub.github.io/exhibition-live/storybook/

Development

Getting Started

For a quick start install all dependencies initially build the packages and start the development server of the nextjs exhibition-live application.

bun i && bun build:packages && bun run dev:exhibition

Open http://localhost:3000 with your browser to see the result.

Committing and Contributing

Formatter

please only commit linted and formatted code by using husky

bun run prepare

Storage Endpoints

The project can operate on a variety of storage endpoints. The default is a temporary in memory DB within the browser, which is sufficient for testing purposes. The application can also be configured to use any SPARQL 1.1 endpoint. Either provide an initial config or use the settings modal within the application to configure the endpoints.

You can quickly launch an Oxigraph SPARQL 1.1 endpoint with docker:

docker run -p 7878:7878 -v $(pwd)/data:/data -it ghcr.io/oxigraph/oxigraph:latest

Consult the Oxigraph GitHub repository for further information.

Other SPARQL 1.1 endpoints

Other SPARQL Endpoints, like Jena Fuseki, Virtuoso, Blazegraph or GraphDB can be used as well. Additional effort might be needed to configure CORS and authentication and to get along with some Endpoints not beeing fully SPARQL 1.1 compliant.

Endpoint Configuration

The configuration of endpoints within the exhibition-live application can either be done dynamically at runtime using the settings modal or by providing a SPARQL_ENDPOINT environment variable at build time, which disables setting the endpoint within the modal and is especially suitable for production deployments, where one wants to make sure all users operate on the same endpoint.

Storybook

This project uses Storybooks to enforce reusable component based development and to document them with all of their props and options. It also gives an overview over the frontend components used for this project.

cd app/exhibition-live
bun i && bun run storybook

Open http://localhost:6006 with your browser to see the storybook.

Testing

Unit tests of core functionality is done by jest. For integration tests of the frontend Cypress is being used.

Trouble Shooting

Cypress under Nix: it might be necessary to delete ~/.cache/Cypress

rm -rf ~/.cache/Cypress

Using Docker

  1. Install Docker on your machine.
  2. Build your container: docker build -t exhibition-docker ..
  3. Run your container: docker run -p 3000:3000 exhibition-docker.

develop within docker

  1. docker compose up -d
  2. docker compose exec exhibition-live /bin/bash

Technologies

NextJS

To learn more about Next.js, take a look at the following resources:

@rdfjs and SPARQL related packages

The project uses the RDFJS stack for RDF processing.This choice does also offer the ability to use the same code for both the browser and the server. The project uses the following packages:

Some of the following libraries are being used within this project:

  • @rdfjs/parser-n3 for RDF parsing and serialisation of turtle and ntriples
  • @rdfjs/parser-jsonld for RDF parsing and serialisation of JSON-LD
  • @rdfjs/dataset as a temporary in memory RDF store
  • oxigraph for SPARQL 1.1 compliant RDF storage within a ServiceWorker (browser) or on the server
  • RDF/JS for RDF processing
  • @tpluscode/rdfine for common RDF Vocabularies and typesafe namespaces
  • SPARQL.js for SPARQL query generation
  • sparql-http-client for SPARQL compliant query execution and easier triple streaming
  • clownface for RDF graph traversal
  • openAI for optional AI based data mapping from unknown sources (complementary to manual declaration based mapping)

LinkML

LinkML was used for the initial data schemata and schema-conversion. Nevertheless the single source of truth for the data schemata is the JSON Schema located within the public directory.

The main schema is located within the schema/exhibition-info.yml directory

JSON Schema

The JSON Schema ist the basis for:

  • Form generation
  • Form validation
  • Data conversion
  • Query generation
  • Document extraction
  • Ontology generation and Semantic-Mapping

Alongside the core Exhibition Schema, there are complementary declaration files referring to elements from the core schema, that provide additional information for the frontend, like:

  • the UI-Schemata for form layout and style hints
  • data mapping declarations for data conversion from and to norm data repositories

Releases

No releases published

Languages

  • TypeScript 77.7%
  • JavaScript 16.6%
  • CSS 2.8%
  • MDX 2.1%
  • SCSS 0.4%
  • Shell 0.2%
  • Other 0.2%