summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/commit_sidebar/unstage_button.vue
blob: 9cec73ec00e8ab0ea6b40d9c32c23af9cd797531 (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
<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(['unstageChange']),
  },
};
</script>

<template>
  <div
    v-once
    class="multi-file-discard-btn"
  >
    <button
      v-tooltip
      :aria-label="__('Unstage changes')"
      :title="__('Unstage changes')"
      type="button"
      class="btn btn-blank d-flex align-items-center"
      data-container="body"
      data-boundary="viewport"
      data-placement="bottom"
      @click="unstageChange(path)"
    >
      <icon
        :size="12"
        name="history"
      />
    </button>
  </div>
</template>