summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/components/text_editor.vue
blob: b8d49d77ea97f26b7b9729901a16e07d08c2bdd4 (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
<script>
import EditorLite from '~/vue_shared/components/editor_lite.vue';
import { CiSchemaExtension } from '~/editor/extensions/editor_ci_schema_ext';

export default {
  components: {
    EditorLite,
  },
  inject: ['projectPath', 'projectNamespace'],
  inheritAttrs: false,
  props: {
    ciConfigPath: {
      type: String,
      required: true,
    },
    commitSha: {
      type: String,
      required: false,
      default: null,
    },
  },
  methods: {
    onEditorReady() {
      const editorInstance = this.$refs.editor.getEditor();

      editorInstance.use(new CiSchemaExtension());
      editorInstance.registerCiSchema({
        projectPath: this.projectPath,
        projectNamespace: this.projectNamespace,
        ref: this.commitSha,
      });
    },
  },
};
</script>
<template>
  <div class="gl-border-solid gl-border-gray-100 gl-border-1">
    <editor-lite
      ref="editor"
      :file-name="ciConfigPath"
      v-bind="$attrs"
      @editor-ready="onEditorReady"
      v-on="$listeners"
    />
  </div>
</template>