debian-mirror-gitlab/app/assets/javascripts/integrations/edit/components/active_checkbox.vue
2021-03-11 19:13:27 +05:30

48 lines
1 KiB
Vue

<script>
import { GlFormGroup, GlFormCheckbox } from '@gitlab/ui';
import { mapGetters } from 'vuex';
import eventHub from '../event_hub';
export default {
name: 'ActiveCheckbox',
components: {
GlFormGroup,
GlFormCheckbox,
},
data() {
return {
activated: false,
};
},
computed: {
...mapGetters(['isInheriting', 'propsSource']),
},
mounted() {
this.activated = this.propsSource.initialActivated;
// Initialize view
this.$nextTick(() => {
this.onChange(this.activated);
});
},
methods: {
onChange(e) {
eventHub.$emit('toggle', e);
},
},
};
</script>
<template>
<gl-form-group :label="__('Enable integration')" label-for="service[active]">
<input name="service[active]" type="hidden" :value="activated || false" />
<gl-form-checkbox
v-model="activated"
name="service[active]"
class="gl-display-block gl-line-height-0"
:disabled="isInheriting"
@change="onChange"
>
{{ __('Active') }}
</gl-form-checkbox>
</gl-form-group>
</template>