mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
152 lines
4.9 KiB
Vue
152 lines
4.9 KiB
Vue
<script lang="ts">
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import theme from '#build/ui/button'
|
|
import type { UseComponentIconsProps } from '../composables/useComponentIcons'
|
|
import type { LinkProps, AvatarProps } from '../types'
|
|
import type { ComponentConfig } from '../types/utils'
|
|
|
|
type Button = ComponentConfig<typeof theme, AppConfig, 'button'>
|
|
|
|
export interface ButtonProps extends UseComponentIconsProps, Omit<LinkProps, 'raw' | 'custom'> {
|
|
label?: string
|
|
/**
|
|
* @defaultValue 'primary'
|
|
*/
|
|
color?: Button['variants']['color']
|
|
activeColor?: Button['variants']['color']
|
|
/**
|
|
* @defaultValue 'solid'
|
|
*/
|
|
variant?: Button['variants']['variant']
|
|
activeVariant?: Button['variants']['variant']
|
|
/**
|
|
* @defaultValue 'md'
|
|
*/
|
|
size?: Button['variants']['size']
|
|
/** Render the button with equal padding on all sides. */
|
|
square?: boolean
|
|
/** Render the button full width. */
|
|
block?: boolean
|
|
/** Set loading state automatically based on the `@click` promise state */
|
|
loadingAuto?: boolean
|
|
onClick?: ((event: MouseEvent) => void | Promise<void>) | Array<((event: MouseEvent) => void | Promise<void>)>
|
|
class?: any
|
|
ui?: Button['slots']
|
|
}
|
|
|
|
export interface ButtonSlots {
|
|
leading(props?: {}): any
|
|
default(props?: {}): any
|
|
trailing(props?: {}): any
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref, inject } from 'vue'
|
|
import type { Ref } from 'vue'
|
|
import { defu } from 'defu'
|
|
import { useForwardProps } from 'reka-ui'
|
|
import { useAppConfig } from '#imports'
|
|
import { useComponentIcons } from '../composables/useComponentIcons'
|
|
import { useButtonGroup } from '../composables/useButtonGroup'
|
|
import { formLoadingInjectionKey } from '../composables/useFormField'
|
|
import { omit, mergeClasses } from '../utils'
|
|
import { tv } from '../utils/tv'
|
|
import { pickLinkProps } from '../utils/link'
|
|
import UIcon from './Icon.vue'
|
|
import UAvatar from './Avatar.vue'
|
|
import ULink from './Link.vue'
|
|
import ULinkBase from './LinkBase.vue'
|
|
|
|
const props = defineProps<ButtonProps>()
|
|
const slots = defineSlots<ButtonSlots>()
|
|
|
|
const appConfig = useAppConfig() as Button['AppConfig']
|
|
const { orientation, size: buttonSize } = useButtonGroup<ButtonProps>(props)
|
|
|
|
const linkProps = useForwardProps(pickLinkProps(props))
|
|
|
|
const loadingAutoState = ref(false)
|
|
const formLoading = inject<Ref<boolean> | undefined>(formLoadingInjectionKey, undefined)
|
|
|
|
async function onClickWrapper(event: MouseEvent) {
|
|
loadingAutoState.value = true
|
|
const callbacks = Array.isArray(props.onClick) ? props.onClick : [props.onClick]
|
|
try {
|
|
await Promise.all(callbacks.map(fn => fn?.(event)))
|
|
} finally {
|
|
loadingAutoState.value = false
|
|
}
|
|
}
|
|
|
|
const isLoading = computed(() => {
|
|
return props.loading || (props.loadingAuto && (loadingAutoState.value || (formLoading?.value && props.type === 'submit')))
|
|
})
|
|
|
|
const { isLeading, isTrailing, leadingIconName, trailingIconName } = useComponentIcons(
|
|
computed(() => ({ ...props, loading: isLoading.value }))
|
|
)
|
|
|
|
const ui = computed(() => tv({
|
|
extend: tv(theme),
|
|
...defu({
|
|
variants: {
|
|
active: {
|
|
true: {
|
|
base: mergeClasses(appConfig.ui?.button?.variants?.active?.true?.base, props.activeClass)
|
|
},
|
|
false: {
|
|
base: mergeClasses(appConfig.ui?.button?.variants?.active?.false?.base, props.inactiveClass)
|
|
}
|
|
}
|
|
}
|
|
}, appConfig.ui?.button || {})
|
|
})({
|
|
color: props.color,
|
|
variant: props.variant,
|
|
size: buttonSize.value,
|
|
loading: isLoading.value,
|
|
block: props.block,
|
|
square: props.square || (!slots.default && !props.label),
|
|
leading: isLeading.value,
|
|
trailing: isTrailing.value,
|
|
buttonGroup: orientation.value
|
|
}))
|
|
</script>
|
|
|
|
<template>
|
|
<ULink
|
|
v-slot="{ active, ...slotProps }"
|
|
:type="type"
|
|
:disabled="disabled || isLoading"
|
|
v-bind="omit(linkProps, ['type', 'disabled', 'onClick'])"
|
|
custom
|
|
>
|
|
<ULinkBase
|
|
v-bind="slotProps"
|
|
:class="ui.base({
|
|
class: [props.ui?.base, props.class],
|
|
active,
|
|
...(active && activeVariant ? { variant: activeVariant } : {}),
|
|
...(active && activeColor ? { color: activeColor } : {})
|
|
})"
|
|
@click="onClickWrapper"
|
|
>
|
|
<slot name="leading">
|
|
<UIcon v-if="isLeading && leadingIconName" :name="leadingIconName" :class="ui.leadingIcon({ class: props.ui?.leadingIcon, active })" />
|
|
<UAvatar v-else-if="!!avatar" :size="((props.ui?.leadingAvatarSize || ui.leadingAvatarSize()) as AvatarProps['size'])" v-bind="avatar" :class="ui.leadingAvatar({ class: props.ui?.leadingAvatar, active })" />
|
|
</slot>
|
|
|
|
<slot>
|
|
<span v-if="label !== undefined && label !== null" :class="ui.label({ class: props.ui?.label, active })">
|
|
{{ label }}
|
|
</span>
|
|
</slot>
|
|
|
|
<slot name="trailing">
|
|
<UIcon v-if="isTrailing && trailingIconName" :name="trailingIconName" :class="ui.trailingIcon({ class: props.ui?.trailingIcon, active })" />
|
|
</slot>
|
|
</ULinkBase>
|
|
</ULink>
|
|
</template>
|