debian-mirror-gitlab/app/assets/javascripts/vue_shared/components/toggle_button.vue

81 lines
1.6 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
2019-02-15 15:39:39 +05:30
import { GlLoadingIcon } from '@gitlab/ui';
2018-12-13 13:39:08 +05:30
import { s__ } from '../../locale';
import icon from './icon.vue';
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
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-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
export default {
components: {
icon,
GlLoadingIcon,
},
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
model: {
prop: 'value',
event: 'change',
},
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
props: {
name: {
type: String,
required: false,
default: null,
},
value: {
type: Boolean,
required: false,
default: null,
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
disabledInput: {
type: Boolean,
required: false,
default: false,
},
isLoading: {
type: Boolean,
required: false,
default: false,
},
},
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
computed: {
toggleIcon() {
return this.value ? ICON_ON : ICON_OFF;
},
ariaLabel() {
return this.value ? LABEL_ON : LABEL_OFF;
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
},
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
methods: {
toggleFeature() {
if (!this.disabledInput) this.$emit('change', !this.value);
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
},
};
2018-03-17 18:26:18 +05:30
</script>
<template>
<label class="toggle-wrapper">
2019-02-15 15:39:39 +05:30
<input v-if="name" :name="name" :value="value" type="hidden" />
2018-03-17 18:26:18 +05:30
<button
:aria-label="ariaLabel"
:class="{
'is-checked': value,
'is-disabled': disabledInput,
2019-02-15 15:39:39 +05:30
'is-loading': isLoading,
2018-03-17 18:26:18 +05:30
}"
2018-11-08 19:23:39 +05:30
type="button"
class="project-feature-toggle"
2018-03-17 18:26:18 +05:30
@click="toggleFeature"
>
2018-12-05 23:21:45 +05:30
<gl-loading-icon class="loading-icon" />
2019-02-15 15:39:39 +05:30
<span class="toggle-icon"> <icon :name="toggleIcon" css-classes="toggle-icon-svg" /> </span>
2018-03-17 18:26:18 +05:30
</button>
</label>
</template>