summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repo/components/new_dropdown/index.vue
blob: 3ccb50213ab98cf1d2d2f632665c65ed3cff05af (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
<script>
  import RepoStore from '../../stores/repo_store';
  import RepoHelper from '../../helpers/repo_helper';
  import eventHub from '../../event_hub';
  import newModal from './modal.vue';

  export default {
    components: {
      newModal,
    },
    data() {
      return {
        openModal: false,
        modalType: '',
        currentPath: RepoStore.path,
      };
    },
    methods: {
      createNewItem(type) {
        this.modalType = type;
        this.toggleModalOpen();
      },
      toggleModalOpen() {
        this.openModal = !this.openModal;
      },
      createNewEntryInStore(name, type) {
        RepoHelper.createNewEntry(name, type);

        this.toggleModalOpen();
      },
    },
    created() {
      eventHub.$on('createNewEntry', this.createNewEntryInStore);
    },
    beforeDestroy() {
      eventHub.$off('createNewEntry', this.createNewEntryInStore);
    },
  };
</script>

<template>
  <div>
    <ul class="breadcrumb repo-breadcrumb">
      <li class="dropdown">
        <button
          type="button"
          class="btn btn-default dropdown-toggle add-to-tree"
          data-toggle="dropdown"
          aria-label="Create new file or directory"
        >
          <i
            class="fa fa-plus"
            aria-hidden="true"
          >
          </i>
        </button>
        <ul class="dropdown-menu">
          <li>
            <a
              href="#"
              role="button"
              @click.prevent="createNewItem('blob')"
            >
              {{ __('New file') }}
            </a>
          </li>
          <li>
            <a
              href="#"
              role="button"
              @click.prevent="createNewItem('tree')"
            >
              {{ __('New directory') }}
            </a>
          </li>
        </ul>
      </li>
    </ul>
    <new-modal
      v-if="openModal"
      :type="modalType"
      :current-path="currentPath"
      @toggle="toggleModalOpen"
    />
  </div>
</template>