summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/new_dropdown/modal.vue
blob: 1867b7980d22c149de281841fb4774294b564924 (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
<script>
import { __ } from '~/locale';
import { mapActions, mapState } from 'vuex';
import GlModal from '~/vue_shared/components/gl_modal.vue';

export default {
  components: {
    GlModal,
  },
  data() {
    return {
      name: '',
    };
  },
  computed: {
    ...mapState(['newEntryModal']),
    entryName: {
      get() {
        return this.name || (this.newEntryModal.path !== '' ? `${this.newEntryModal.path}/` : '');
      },
      set(val) {
        this.name = val;
      },
    },
    modalTitle() {
      if (this.newEntryModal.type === 'tree') {
        return __('Create new directory');
      }

      return __('Create new file');
    },
    buttonLabel() {
      if (this.newEntryModal.type === 'tree') {
        return __('Create directory');
      }

      return __('Create file');
    },
  },
  methods: {
    ...mapActions(['createTempEntry']),
    createEntryInStore() {
      this.createTempEntry({
        name: this.name,
        type: this.newEntryModal.type,
      });
    },
    focusInput() {
      setTimeout(() => {
        this.$refs.fieldName.focus();
      });
    },
  },
};
</script>

<template>
  <gl-modal
    id="ide-new-entry"
    :header-title-text="modalTitle"
    :footer-primary-button-text="buttonLabel"
    footer-primary-button-variant="success"
    @submit="createEntryInStore"
    @open="focusInput"
  >
    <div
      class="form-group row"
    >
      <label class="label-light col-form-label col-sm-3">
        {{ __('Name') }}
      </label>
      <div class="col-sm-9">
        <input
          ref="fieldName"
          v-model="entryName"
          type="text"
          class="form-control"
        />
      </div>
    </div>
  </gl-modal>
</template>