mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
72 lines
1.3 KiB
Vue
72 lines
1.3 KiB
Vue
<template>
|
|
<button
|
|
:type="type"
|
|
data-testid="submit_button"
|
|
:disabled="disabled"
|
|
:class="computedClass"
|
|
@click="onClick"
|
|
>
|
|
<fluent-icon v-if="!!iconClass" :icon="iconClass" class="icon" />
|
|
<span>{{ buttonText }}</span>
|
|
<spinner v-if="loading" class="ml-2" :color-scheme="spinnerClass" />
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
import Spinner from 'shared/components/Spinner.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Spinner,
|
|
},
|
|
props: {
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
loading: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
buttonText: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
buttonClass: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
iconClass: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
spinnerClass: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'submit',
|
|
},
|
|
},
|
|
computed: {
|
|
computedClass() {
|
|
return `button nice gap-2 ${this.buttonClass || ' '}`;
|
|
},
|
|
},
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
button:disabled {
|
|
@apply bg-woot-100 dark:bg-woot-500/25 dark:text-slate-500 opacity-100;
|
|
&:hover {
|
|
@apply bg-woot-100 dark:bg-woot-500/25;
|
|
}
|
|
}
|
|
</style>
|