57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
| <script>
 | |
| import { GlButton } from '@gitlab/ui';
 | |
| import { __ } from '~/locale';
 | |
| 
 | |
| export default {
 | |
|   components: {
 | |
|     GlButton,
 | |
|   },
 | |
|   props: {
 | |
|     isTodo: {
 | |
|       type: Boolean,
 | |
|       required: false,
 | |
|       default: true,
 | |
|     },
 | |
|   },
 | |
|   computed: {
 | |
|     buttonLabel() {
 | |
|       return this.isTodo ? __('Mark as done') : __('Add a to do');
 | |
|     },
 | |
|   },
 | |
|   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>
 |