tethys.backend/resources/js/Components/BaseButton.vue

118 lines
2.5 KiB
Vue
Raw Permalink Normal View History

2023-03-03 15:54:28 +00:00
<script setup>
import { computed } from 'vue';
import { Link } from '@inertiajs/vue3';
// import { Link } from '@inertiajs/inertia-vue3';
import { getButtonColor } from '@/colors';
2023-03-03 15:54:28 +00:00
import BaseIcon from '@/Components/BaseIcon.vue';
const props = defineProps({
label: {
type: [String, Number],
default: null,
},
icon: {
type: String,
default: null,
},
href: {
type: String,
default: null,
},
target: {
type: String,
default: null,
},
routeName: {
type: String,
default: null,
},
type: {
type: String,
default: null,
},
color: {
type: String,
default: 'white',
},
as: {
type: String,
default: null,
},
small: Boolean,
outline: Boolean,
active: Boolean,
disabled: Boolean,
roundedFull: Boolean,
2023-03-03 15:54:28 +00:00
});
const is = computed(() => {
if (props.as) {
return props.as;
}
2023-03-03 15:54:28 +00:00
if (props.routeName) {
return Link;
}
2023-03-03 15:54:28 +00:00
if (props.href) {
return 'a';
}
2023-03-03 15:54:28 +00:00
return 'button';
2023-03-03 15:54:28 +00:00
});
const computedType = computed(() => {
if (is.value === 'button') {
return props.type ?? 'button';
}
2023-03-03 15:54:28 +00:00
return null;
2023-03-03 15:54:28 +00:00
});
const labelClass = computed(() => (props.small && props.icon ? 'px-1' : 'px-2'));
const componentClass = computed(() => {
const base = [
'inline-flex',
'cursor-pointer',
'justify-center',
'items-center',
'whitespace-nowrap',
'focus:outline-none',
'transition-colors',
'focus:ring-2',
'duration-150',
'border',
props.roundedFull ? 'rounded-full' : 'rounded',
props.active ? 'ring ring-black dark:ring-white' : 'ring-blue-700',
getButtonColor(props.color, props.outline, !props.disabled),
];
2023-03-03 15:54:28 +00:00
if (props.small) {
base.push('text-sm', props.roundedFull ? 'px-3 py-1' : 'p-1');
} else {
base.push('py-2', props.roundedFull ? 'px-6' : 'px-3');
}
2023-03-03 15:54:28 +00:00
if (props.disabled) {
base.push('cursor-not-allowed', props.outline ? 'opacity-50' : 'opacity-70');
}
2023-03-03 15:54:28 +00:00
return base;
2023-03-03 15:54:28 +00:00
});
</script>
<template>
<component
:is="is"
:class="componentClass"
:href="routeName ? routeName : href"
:type="computedType"
:target="target"
:disabled="disabled"
>
<BaseIcon v-if="icon" :path="icon" />
<span v-if="label" :class="labelClass">{{ label }}</span>
</component>
2023-03-03 15:54:28 +00:00
</template>