gitlab-org--gitlab-foss/app/assets/javascripts/vue_shared/components/toggle_button.vue

81 lines
1.6 KiB
Vue
Raw Normal View History

<script>
2018-11-16 19:29:11 +00:00
import { GlLoadingIcon } from '@gitlab/ui';
2018-10-10 07:06:25 +00:00
import { s__ } from '../../locale';
import icon from './icon.vue';
2018-10-10 07:06:25 +00:00
const ICON_ON = 'status_success_borderless';
const ICON_OFF = 'status_failed_borderless';
const LABEL_ON = s__('ToggleButton|Toggle Status: ON');
const LABEL_OFF = s__('ToggleButton|Toggle Status: OFF');
2018-10-10 07:06:25 +00:00
export default {
components: {
icon,
GlLoadingIcon,
2018-10-10 07:06:25 +00:00
},
2018-01-04 19:07:28 +00:00
2018-10-10 07:06:25 +00:00
model: {
prop: 'value',
event: 'change',
},
2018-01-04 19:07:28 +00:00
2018-10-10 07:06:25 +00:00
props: {
name: {
type: String,
required: false,
default: null,
},
value: {
type: Boolean,
required: false,
default: null,
},
2018-10-10 07:06:25 +00:00
disabledInput: {
type: Boolean,
required: false,
default: false,
},
isLoading: {
type: Boolean,
required: false,
default: false,
},
},
2018-10-10 07:06:25 +00:00
computed: {
toggleIcon() {
return this.value ? ICON_ON : ICON_OFF;
},
ariaLabel() {
return this.value ? LABEL_ON : LABEL_OFF;
},
2018-10-10 07:06:25 +00:00
},
2018-10-10 07:06:25 +00:00
methods: {
toggleFeature() {
if (!this.disabledInput) this.$emit('change', !this.value);
},
2018-10-10 07:06:25 +00:00
},
};
</script>
<template>
<label class="toggle-wrapper">
2018-11-16 20:07:38 +00:00
<input v-if="name" :name="name" :value="value" type="hidden" />
<button
:aria-label="ariaLabel"
:class="{
'is-checked': value,
'is-disabled': disabledInput,
2018-11-16 20:07:38 +00:00
'is-loading': isLoading,
}"
2018-06-11 09:49:47 +00:00
type="button"
class="project-feature-toggle"
@click="toggleFeature"
>
2018-09-11 22:19:21 +00:00
<gl-loading-icon class="loading-icon" />
<span class="toggle-icon"> <icon :name="toggleIcon" class="toggle-icon-svg" /> </span>
</button>
</label>
</template>