summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue
blob: 7014b9f605ea5c55ec648b9e0a886008ae9737b4 (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
<script>
import { mapActions } from 'vuex';
import Icon from '~/vue_shared/components/icon.vue';
import tooltip from '~/vue_shared/directives/tooltip';

export default {
  components: {
    Icon,
  },
  directives: {
    tooltip,
  },
  props: {
    path: {
      type: String,
      required: true,
    },
  },
  methods: {
    ...mapActions(['stageChange', 'discardFileChanges']),
  },
};
</script>

<template>
  <div
    v-once
    class="multi-file-discard-btn dropdown"
  >
    <button
      v-tooltip
      :aria-label="__('Stage changes')"
      :title="__('Stage changes')"
      type="button"
      class="btn btn-blank append-right-5 d-flex align-items-center"
      data-container="body"
      data-boundary="viewport"
      data-placement="bottom"
      @click.stop="stageChange(path)"
    >
      <icon
        :size="12"
        name="mobile-issue-close"
      />
    </button>
    <button
      v-tooltip
      :title="__('More actions')"
      type="button"
      class="btn btn-blank d-flex align-items-center"
      data-container="body"
      data-boundary="viewport"
      data-placement="bottom"
      data-toggle="dropdown"
      data-display="static"
    >
      <icon
        :size="12"
        name="more"
      />
    </button>
    <div class="dropdown-menu dropdown-menu-right">
      <ul>
        <li>
          <button
            type="button"
            @click.stop="discardFileChanges(path)"
          >
            {{ __('Discard changes') }}
          </button>
        </li>
      </ul>
    </div>
  </div>
</template>