@annotation-studio/plugin-core

1.0.0-rc.33 • Public • Published

Annotation Studio - Core plugin

This is the state behind the other components.

Usage

To use the plugin you need to add it as a dependency:

$ npm i @annotation-studio/plugin-core --save-dev

Then in your code (ES6 in this example)

import CorePlugin from '@annotation-studio/plugin-core';

const core = CorePlugin(
  document.getElementById('myContainer'),
  {
    resourceTemplates: '...',
    manifest: '...',
    canvas: '...',
    elucidateServer: '...',
  }
);

core.then(store => {
  // this is called whenever the store changes
  store.subscribe(() => {
    // This is how to get the state
    const state = store.getState();
    // You can now render things, dispatch actions etc.
  })
})

Resource templates:

[todo add link to resource template model]

Dependencies (1)

Dev Dependencies (14)

Package Sidebar

Install

npm i @annotation-studio/plugin-core

Weekly Downloads

10

Version

1.0.0-rc.33

License

MIT

Unpacked Size

44.2 kB

Total Files

12

Last publish

Collaborators

  • stephenwf