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

toolbar_more_dropdown.vue « components « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bb122153ef51126f2e79d9eb7be65e6178ab60c (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<script>
import { GlDropdown, GlDropdownItem, GlTooltipDirective as GlTooltip } from '@gitlab/ui';

export default {
  components: {
    GlDropdown,
    GlDropdownItem,
  },
  directives: {
    GlTooltip,
  },
  inject: ['tiptapEditor'],
  data() {
    return {
      isActive: {},
    };
  },
  methods: {
    insert(contentType, ...args) {
      this.tiptapEditor
        .chain()
        .focus()
        .setNode(contentType, ...args)
        .run();

      this.$emit('execute', { contentType });
    },

    insertList(listType, listItemType) {
      if (!this.tiptapEditor.isActive(listType))
        this.tiptapEditor.chain().focus().toggleList(listType, listItemType).run();

      this.$emit('execute', { contentType: listType });
    },

    execute(command, contentType, ...args) {
      this.tiptapEditor
        .chain()
        .focus()
        [command](...args)
        .run();

      this.$emit('execute', { contentType });
    },
  },
};
</script>
<template>
  <gl-dropdown
    v-gl-tooltip
    size="small"
    category="tertiary"
    icon="plus"
    :text="__('More')"
    :title="__('More')"
    text-sr-only
    class="content-editor-dropdown"
    right
    lazy
  >
    <gl-dropdown-item @click="insert('codeBlock')">
      {{ __('Code block') }}
    </gl-dropdown-item>
    <gl-dropdown-item @click="insertList('details', 'detailsContent')">
      {{ __('Details block') }}
    </gl-dropdown-item>
    <gl-dropdown-item class="gl-sm-display-none!" @click="insertList('bulletList', 'listItem')">
      {{ __('Bullet list') }}
    </gl-dropdown-item>
    <gl-dropdown-item class="gl-sm-display-none!" @click="insertList('orderedList', 'listItem')">
      {{ __('Ordered list') }}
    </gl-dropdown-item>
    <gl-dropdown-item class="gl-sm-display-none!" @click="insertList('taskList', 'taskItem')">
      {{ __('Task list') }}
    </gl-dropdown-item>
    <gl-dropdown-item @click="execute('setHorizontalRule', 'horizontalRule')">
      {{ __('Horizontal rule') }}
    </gl-dropdown-item>
    <gl-dropdown-item @click="insert('diagram', { language: 'mermaid' })">
      {{ __('Mermaid diagram') }}
    </gl-dropdown-item>
    <gl-dropdown-item @click="insert('diagram', { language: 'plantuml' })">
      {{ __('PlantUML diagram') }}
    </gl-dropdown-item>
    <gl-dropdown-item @click="execute('insertTableOfContents', 'tableOfContents')">
      {{ __('Table of contents') }}
    </gl-dropdown-item>
  </gl-dropdown>
</template>