summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/inline_diff.js
blob: 3bd328958dfc9401f1f2eae69ab3814f9eeadc98 (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
import { Mark, markInputRule, mergeAttributes } from '@tiptap/core';

export const inputRegexAddition = /(\{\+(.+?)\+\})$/gm;
export const inputRegexDeletion = /(\{-(.+?)-\})$/gm;

export default Mark.create({
  name: 'inlineDiff',

  defaultOptions: {
    HTMLAttributes: {},
  },

  addAttributes() {
    return {
      type: {
        default: 'addition',
        parseHTML: (element) => (element.classList.contains('deletion') ? 'deletion' : 'addition'),
      },
    };
  },

  parseHTML() {
    return [
      {
        tag: 'span.idiff',
      },
    ];
  },

  renderHTML({ HTMLAttributes: { type, ...HTMLAttributes } }) {
    return [
      'span',
      mergeAttributes(this.options.HTMLAttributes, HTMLAttributes, {
        class: `idiff left right ${type}`,
      }),
      0,
    ];
  },

  addInputRules() {
    return [
      markInputRule(inputRegexAddition, this.type, () => ({ type: 'addition' })),
      markInputRule(inputRegexDeletion, this.type, () => ({ type: 'deletion' })),
    ];
  },
});