summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/todo_toggle/todo_button.vue
blob: e6229cf0a937abc1445824eef7ae4dd7003b259a (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
<script>
import { GlButton } from '@gitlab/ui';
import { todoLabel } from './utils';

export default {
  components: {
    GlButton,
  },
  props: {
    isTodo: {
      type: Boolean,
      required: false,
      default: true,
    },
  },
  computed: {
    buttonLabel() {
      return todoLabel(this.isTodo);
    },
  },
  methods: {
    updateGlobalTodoCount(additionalTodoCount) {
      const countContainer = document.querySelector('.js-todos-count');
      if (countContainer === null) return;
      const currentCount = parseInt(countContainer.innerText, 10);
      const todoToggleEvent = new CustomEvent('todo:toggle', {
        detail: {
          count: Math.max(currentCount + additionalTodoCount, 0),
        },
      });

      document.dispatchEvent(todoToggleEvent);
    },
    incrementGlobalTodoCount() {
      this.updateGlobalTodoCount(1);
    },
    decrementGlobalTodoCount() {
      this.updateGlobalTodoCount(-1);
    },
    onToggle(event) {
      if (this.isTodo) {
        this.decrementGlobalTodoCount();
      } else {
        this.incrementGlobalTodoCount();
      }
      this.$emit('click', event);
    },
  },
};
</script>

<template>
  <gl-button v-bind="$attrs" :aria-label="buttonLabel" @click="onToggle($event)">
    {{ buttonLabel }}
  </gl-button>
</template>