create Button components

This commit is contained in:
kur0nek-o
2023-10-24 13:56:04 +07:00
parent 844995fc64
commit 43b8bd5bb1
7 changed files with 248 additions and 122 deletions

View File

@@ -33,22 +33,38 @@ const props = defineProps({
});
const buttonStyle = computed(() => {
if (props.styleType == 'filled') {
return 'hello'
switch (props.styleType) {
case 'filled':
return 'text-white border-transparent rounded-lg bg-primary-500 hover:bg-primary-600 focus:outline-0 disabled:bg-primary-200 disabled:text-primary-400'
case 'secondary':
return 'text-primary-500 bg-primary-50 border-transparent rounded-lg hover:bg-primary-200 focus:outline-0 disabled:bg-primary-300'
case 'outline':
return 'bg-none text-primary-500 border border-primary-500 rounded-lg disabled:border-primary-300 disabled:text-primary-300'
case 'text':
return 'bg-none text-primary-500 border border-transparent hover:border-primary-500 rounded-lg disabled:border-primary-300 disabled:text-primary-300'
}
})
</script>
<template>
<button :type="type" @click="onClick" :disabled="disabled"
:class="['px-4 py-2 mt-2 text-sm font-bold text-white border-transparent rounded-lg bg-primary-500 focus:outline-0 disabled:bg-primary-400', className]">
<slot></slot>
<span v-if="!isLoading">{{ label }}</span>
<button :type="type" @click="onClick" :disabled="isLoading ? true : disabled"
:class="['px-3 py-2 mt-2 text-sm font-semibold w-full', buttonStyle, className]">
<div class="flex items-center" v-if="!isLoading">
<span class="me-1">{{ label }}</span>
<slot></slot>
</div>
<span v-else>
<center>
<lottie-player autoplay loop mode="normal" src="https://assets2.lottiefiles.com/packages/lf20_lNbR6W7kY6.json"
style="height:1.2rem"></lottie-player>
<svg class="animate-spin h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z">
</path>
</svg>
</center>
</span>
</button>
</template>
</button></template>