summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/details.js
blob: e3d54ed01fd33f6bdb68cf295e88297ea067cb10 (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
import { Node } from '@tiptap/core';
import { VueNodeViewRenderer } from '@tiptap/vue-2';
import { wrappingInputRule } from 'prosemirror-inputrules';
import DetailsWrapper from '../components/wrappers/details.vue';

export const inputRegex = /^\s*(<details>)$/;

export default Node.create({
  name: 'details',
  content: 'detailsContent+',
  // eslint-disable-next-line @gitlab/require-i18n-strings
  group: 'block list',

  parseHTML() {
    return [{ tag: 'details' }];
  },

  renderHTML({ HTMLAttributes }) {
    return ['ul', HTMLAttributes, 0];
  },

  addNodeView() {
    return VueNodeViewRenderer(DetailsWrapper);
  },

  addInputRules() {
    return [wrappingInputRule(inputRegex, this.type)];
  },

  addCommands() {
    return {
      setDetails: () => ({ commands }) => commands.wrapInList('details'),
      toggleDetails: () => ({ commands }) => commands.toggleList('details', 'detailsContent'),
    };
  },
});