summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/snippet/snippet_bundle.js
blob: a3ed8d9c63280d2a6ae221fa2482a4a13d881c93 (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
import { initEditorLite } from '~/blob/utils';
import setupCollapsibleInputs from './collapsible_input';

let editor;

const initAce = () => {
  const editorEl = document.getElementById('editor');
  const form = document.querySelector('.snippet-form-holder form');
  const content = document.querySelector('.snippet-file-content');

  editor = initEditorLite({ el: editorEl });

  form.addEventListener('submit', () => {
    content.value = editor.getValue();
  });
};

const initMonaco = () => {
  const editorEl = document.getElementById('editor');
  const contentEl = document.querySelector('.snippet-file-content');
  const fileNameEl = document.querySelector('.js-snippet-file-name');
  const form = document.querySelector('.snippet-form-holder form');

  editor = initEditorLite({
    el: editorEl,
    blobPath: fileNameEl.value,
    blobContent: contentEl.value,
  });

  fileNameEl.addEventListener('change', () => {
    editor.updateModelLanguage(fileNameEl.value);
  });

  form.addEventListener('submit', () => {
    contentEl.value = editor.getValue();
  });
};

export const initEditor = () => {
  if (window?.gon?.features?.monacoSnippets) {
    initMonaco();
  } else {
    initAce();
  }
  setupCollapsibleInputs();
};

export default () => {
  initEditor();
};