summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/markdown/drawio_toolbar_button.vue
blob: a66becb5c927eab99579f7a784768f2e9dcadbff (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
42
43
44
45
46
47
48
<script>
import { GlButton, GlTooltipDirective } from '@gitlab/ui';
import { launchDrawioEditor } from '~/drawio/drawio_editor';
import { create } from '~/drawio/markdown_field_editor_facade';

export default {
  components: {
    GlButton,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  props: {
    uploadsPath: {
      type: String,
      required: true,
    },
    markdownPreviewPath: {
      type: String,
      required: true,
    },
  },
  methods: {
    getTextArea() {
      return document.querySelector('.js-gfm-input');
    },
    launchDrawioEditor() {
      launchDrawioEditor({
        editorFacade: create({
          uploadsPath: this.uploadsPath,
          textArea: this.getTextArea(),
          markdownPreviewPath: this.markdownPreviewPath,
        }),
      });
    },
  },
};
</script>
<template>
  <gl-button
    v-gl-tooltip
    :title="__('Insert or edit diagram')"
    :aria-label="__('Insert or edit diagram')"
    category="tertiary"
    icon="diagram"
    @click="launchDrawioEditor"
  />
</template>