Vault helpers
npm i @iiif/vault-helpers
yarn add @iiif/vault-helpers
List of existing, or planned helpers.
i18n
Some useful helpers for parsing language maps.
import { getValue } from '@iiif/vault-helpers/styles';
const str1 = getValue(manifest.label);
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' };
styles.applyStyle(manifest, {
background: 'red',
}, 'scope-1');
styles.applyStyle(manifest, {
someCustomStyle: 'foo',
}, 'scope-2');
const applied = styles.getAppliedStyles(manifest);
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');
});
const props = events.getListenersAsProps();
$el.addEventListener('click', props.onClick);
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 });
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.