summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/new_dropdown/index.vue
blob: ef653357f5f21e68a917374f41492ad741e23f4f (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<script>
  import newModal from './modal.vue';
  import upload from './upload.vue';
  import icon from '../../../vue_shared/components/icon.vue';

  export default {
    components: {
      icon,
      newModal,
      upload,
    },
    props: {
      branch: {
        type: String,
        required: true,
      },
      path: {
        type: String,
        required: true,
      },
      parent: {
        type: Object,
        default: null,
      },
    },
    data() {
      return {
        openModal: false,
        modalType: '',
      };
    },
    methods: {
      createNewItem(type) {
        this.modalType = type;
        this.openModal = true;
      },
      hideModal() {
        this.openModal = false;
      },
    },
  };
</script>

<template>
  <div class="repo-new-btn pull-right">
    <div class="dropdown">
      <button
        type="button"
        class="btn btn-sm btn-default dropdown-toggle add-to-tree"
        data-toggle="dropdown"
        aria-label="Create new file or directory"
      >
        <icon
          name="plus"
          :size="12"
          css-classes="pull-left"
        />
        <icon
          name="arrow-down"
          :size="12"
          css-classes="pull-left"
        />
      </button>
      <ul class="dropdown-menu dropdown-menu-right">
        <li>
          <a
            href="#"
            role="button"
            @click.prevent="createNewItem('blob')"
          >
            {{ __('New file') }}
          </a>
        </li>
        <li>
          <upload
            :branch-id="branch"
            :path="path"
            :parent="parent"
          />
        </li>
        <li>
          <a
            href="#"
            role="button"
            @click.prevent="createNewItem('tree')"
          >
            {{ __('New directory') }}
          </a>
        </li>
      </ul>
    </div>
    <new-modal
      v-if="openModal"
      :type="modalType"
      :branch-id="branch"
      :path="path"
      :parent="parent"
      @hide="hideModal"
    />
  </div>
</template>