50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
| <script>
 | |
| import { GlToggle } from '@gitlab/ui';
 | |
| import { capitalizeFirstCharacter } from '~/lib/utils/text_utility';
 | |
| 
 | |
| export default {
 | |
|   name: 'GlToggleVuex',
 | |
|   components: {
 | |
|     GlToggle,
 | |
|   },
 | |
|   props: {
 | |
|     stateProperty: {
 | |
|       type: String,
 | |
|       required: true,
 | |
|     },
 | |
|     storeModule: {
 | |
|       type: String,
 | |
|       required: false,
 | |
|       default: null,
 | |
|     },
 | |
|     setAction: {
 | |
|       type: String,
 | |
|       required: false,
 | |
|       default() {
 | |
|         return `set${capitalizeFirstCharacter(this.stateProperty)}`;
 | |
|       },
 | |
|     },
 | |
|   },
 | |
|   computed: {
 | |
|     value: {
 | |
|       get() {
 | |
|         const { state } = this.$store;
 | |
|         const { stateProperty, storeModule } = this;
 | |
|         return storeModule ? state[storeModule][stateProperty] : state[stateProperty];
 | |
|       },
 | |
|       set(value) {
 | |
|         const { stateProperty, storeModule, setAction } = this;
 | |
|         const action = storeModule ? `${storeModule}/${setAction}` : setAction;
 | |
|         this.$store.dispatch(action, { key: stateProperty, value });
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <gl-toggle v-model="value">
 | |
|     <slot v-bind="{ value }"></slot>
 | |
|   </gl-toggle>
 | |
| </template>
 |