Welcome to mirror list, hosted at ThFree Co, Russian Federation.

source_editor_extension.js « editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6bc62a1c093665ce048c9f90de58d09745ae083 (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.name = definition.name; // both class- and fn-based extensions have a name
    this.setupOptions = setupOptions;
    // eslint-disable-next-line new-cap
    this.obj = new definition();
  }

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