summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/editor/source_editor_extension.js
blob: 6d47e1e22480c1347d7e94c374845ef8a94a65a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { EDITOR_EXTENSION_DEFINITION_ERROR } from './constants';

export default class EditorExtension {
  constructor({ definition, setupOptions } = {}) {
    if (typeof definition !== 'function') {
      throw new Error(EDITOR_EXTENSION_DEFINITION_ERROR);
    }
    this.setupOptions = setupOptions;
    // eslint-disable-next-line new-cap
    this.obj = new definition();
    this.extensionName = definition.extensionName || this.obj.extensionName; // both class- and fn-based extensions have a name
  }

  get api() {
    return this.obj.provides?.();
  }
}