Socket
Socket
Sign inDemoInstall

@iiif/vault-helpers

Package Overview
Dependencies
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iiif/vault-helpers

``` npm i @iiif/vault-helpers ```


Version published
Maintainers
4
Created
Source

Vault helpers

npm i @iiif/vault-helpers
yarn add @iiif/vault-helpers

List of existing, or planned helpers.

  • Thumbnails - providers methods for resolving thumbnails given a resource and size preferences
  • i18n - helpers for internationalized values, and integrations with existing tools
  • Styles - a meta extension for storing CSS styles associated with IIIF content
  • Events - a meta extension for storing event listeners associated with IIIF content
  • Getters - a vault wrapper, abstracting away references with javascript getters
  • Rendering strategy - Normalisation of canvas annotations into simple and implementable strategies for rendering
  • Annotation page manager - Discovery, loading and management of annotation pages

i18n

Some useful helpers for parsing language maps.

import { getValue } from '@iiif/vault-helpers/styles';

// Simple utility.
const str1 = getValue(manifest.label); // based on browser

// Builder for integration with other libraries
const str2 = buildLocaleString(
  manifest.label,
  'en-GB',
  {
    fallbacks: ['en-US', 'en'],
    defaultText: 'Untitled manifest',
    separator: '<br/>',
    closest: false,
    strictFallback: true,
  }
);

Styles

Styles are a way to store Style information inside of Vault.

import { createStyleHelper } from '@iiif/vault-helpers/styles';

const vault = new Vault();
const styles = createStyleHelper(vault);

const manifest = { id: 'https://example.org/manifest-1', type: 'Manifest' };

// Apply a style somewhere you in your app
styles.applyStyle(manifest, {
  background: 'red',
}, 'scope-1');

// Somewhere else..
styles.applyStyle(manifest, {
    someCustomStyle: 'foo',
}, 'scope-2');


// Where you render:
const applied = styles.getAppliedStyles(manifest);
// {
//  'scope-1': { background: 'red' },
//  'scope-2': { someCustomStyle: 'foo' }
// }

Events

Events let you bind browser events to IIIF resources, potentially before they are rendered in the DOM. You still have to bind the events, but those events could come from many sources.

Useful in UI frameworks where an alternative may be to drill down props through layers of components.

import { createEventsHelper } from '@iiif/vault-helpers/styles';

const vault = new Vault();
const events = createEventsHelper(vault);

const annotation = { id: 'https://example.org/anno-1', type: 'Annotation' };

events.addEventListener(annotation, 'onClick', () => {
  console.log('Anno clicked');
});

// Where you render:
const props = events.getListenersAsProps();
$el.addEventListener('click', props.onClick);

// In React this might look like: <div className="anno" {...props} />

Thumbnail

Work-in-progress vault-driven thumbnails.

import { createThumbnailHelper } from '@iiif/vault-helpers/thumbnail';

const vault = new Vault();
const helper = createThumbnailHelper(vault);

const thumbnail = helper.getBestThumbnailAtSize(canvas, { width: 256, height: 256 });
// thumbnail.best.id

New helpers

Custom helpers may opt to use a standard naming (iiif-vault-[name]-helper) and a format similar to this:

function createXYZHelper(vault: Vault, ...dependencies: any[]) {
  return {
    helperA() {
      //..
    }
  };
}

PRs always welcome for new community helpers.

FAQs

Package last updated on 07 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc