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

drawio_diagram.js « extensions « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c3012ecf59006b3321222fe759880303e6e0a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { create } from '~/drawio/content_editor_facade';
import { launchDrawioEditor } from '~/drawio/drawio_editor';
import { PARSE_HTML_PRIORITY_HIGHEST } from '../constants';
import createAssetResolver from '../services/asset_resolver';
import Image from './image';

export default Image.extend({
  name: 'drawioDiagram',
  addOptions() {
    return {
      ...this.parent?.(),
      uploadsPath: null,
      renderMarkdown: null,
    };
  },
  parseHTML() {
    return [
      {
        priority: PARSE_HTML_PRIORITY_HIGHEST,
        tag: 'a.no-attachment-icon[data-canonical-src$="drawio.svg"]',
      },
      {
        tag: 'img[src]',
      },
    ];
  },
  addCommands() {
    return {
      createOrEditDiagram: () => () => {
        launchDrawioEditor({
          editorFacade: create({
            tiptapEditor: this.editor,
            drawioNodeName: this.name,
            uploadsPath: this.options.uploadsPath,
            assetResolver: createAssetResolver({ renderMarkdown: this.options.renderMarkdown }),
          }),
        });
      },
    };
  },
});