mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 00:07:04 +00:00
373 lines
8.3 KiB
Vue
373 lines
8.3 KiB
Vue
<script lang="ts" setup>
|
|
import type { ButtonType } from 'ant-design-vue/lib/button'
|
|
import { useSlots } from 'vue'
|
|
import type { GeneralLoaderProps } from '../general/Loader.vue'
|
|
|
|
/**
|
|
* @description
|
|
* Button component
|
|
*
|
|
* @example
|
|
* <NcButton type="primary" size="medium" :loading="loading" @click="onClick">
|
|
* Save
|
|
* <template #loading> Saving </template>
|
|
* </NcButton>
|
|
*/
|
|
|
|
export interface NcButtonProps {
|
|
loading?: boolean
|
|
disabled?: boolean
|
|
showAsDisabled?: boolean
|
|
type?: ButtonType | 'danger' | 'secondary' | undefined
|
|
size?: NcButtonSize
|
|
mobileSize?: NcButtonSize
|
|
loaderSize?: GeneralLoaderProps['size']
|
|
centered?: boolean
|
|
fullWidth?: boolean
|
|
iconOnly?: boolean
|
|
iconPosition?: 'left' | 'right'
|
|
theme?: 'default' | 'ai'
|
|
textColor?: 'primary'
|
|
bordered?: boolean
|
|
shadow?: boolean
|
|
innerClass?: string
|
|
hideFocus?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<NcButtonProps>(), {
|
|
disabled: false,
|
|
showAsDisabled: false,
|
|
size: 'medium',
|
|
loaderSize: 'medium',
|
|
type: 'primary',
|
|
fullWidth: false,
|
|
centered: true,
|
|
iconPosition: 'left',
|
|
theme: 'default',
|
|
bordered: true,
|
|
shadow: true,
|
|
innerClass: '',
|
|
hideFocus: false,
|
|
})
|
|
|
|
const emits = defineEmits(['update:loading'])
|
|
|
|
const slots = useSlots()
|
|
|
|
const { isMobileMode } = useGlobal()
|
|
|
|
const NcButton = ref<HTMLElement | null>(null)
|
|
|
|
const { size, mobileSize, loaderSize, type, theme, bordered } = toRefs(props)
|
|
|
|
const loading = useVModel(props, 'loading', emits)
|
|
|
|
const isFocused = ref(false)
|
|
const isClicked = ref(false)
|
|
|
|
const buttonSize = computed(() => {
|
|
if (isMobileMode.value && mobileSize.value) return mobileSize.value
|
|
|
|
return size.value
|
|
})
|
|
|
|
const onFocus = (e: FocusEvent) => {
|
|
// Only focus when coming from another element which is not a mouse click
|
|
nextTick(() => {
|
|
if (isClicked.value) {
|
|
isFocused.value = false
|
|
} else {
|
|
const relatedTarget = e.relatedTarget as HTMLElement | null
|
|
|
|
isFocused.value = !!relatedTarget
|
|
}
|
|
|
|
isClicked.value = false
|
|
})
|
|
}
|
|
|
|
const onBlur = () => {
|
|
isFocused.value = false
|
|
isClicked.value = false
|
|
}
|
|
|
|
useEventListener(NcButton, 'mousedown', () => {
|
|
isClicked.value = true
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<a-button
|
|
ref="NcButton"
|
|
:class="{
|
|
'small': buttonSize === 'small',
|
|
'medium': buttonSize === 'medium',
|
|
'xsmall': buttonSize === 'xsmall',
|
|
'xxsmall': buttonSize === 'xxsmall',
|
|
'size-xs': buttonSize === 'xs',
|
|
'focused': isFocused && !props.hideFocus,
|
|
'theme-default': theme === 'default',
|
|
'theme-ai': theme === 'ai',
|
|
'bordered': bordered,
|
|
'nc-btn-shadow': shadow,
|
|
'nc-show-as-disabled': props.showAsDisabled,
|
|
'nc-text-primary': textColor === 'primary',
|
|
}"
|
|
:disabled="props.disabled"
|
|
:loading="loading"
|
|
:tabindex="props.disabled ? -1 : 0"
|
|
:type="type"
|
|
class="nc-button"
|
|
@blur="onBlur"
|
|
@focus="onFocus"
|
|
>
|
|
<div
|
|
:class="[
|
|
{
|
|
'justify-center': props.centered,
|
|
'justify-start': !props.centered,
|
|
},
|
|
innerClass,
|
|
]"
|
|
class="flex flex-row gap-x-2.5 nc-btn-inner w-full"
|
|
>
|
|
<template v-if="iconPosition === 'left'">
|
|
<slot v-if="loading" name="loadingIcon">
|
|
<GeneralLoader class="flex !bg-inherit !text-inherit" :size="loaderSize" />
|
|
</slot>
|
|
|
|
<slot v-else name="icon" />
|
|
</template>
|
|
<div
|
|
v-if="!(buttonSize === 'xxsmall' && loading) && !props.iconOnly"
|
|
:class="{
|
|
'font-medium': type === 'primary' || type === 'danger',
|
|
'w-full': props.fullWidth,
|
|
}"
|
|
class="flex flex-row items-center"
|
|
>
|
|
<slot v-if="loading && slots.loading" name="loading" />
|
|
|
|
<slot v-else />
|
|
</div>
|
|
<template v-if="iconPosition === 'right'">
|
|
<slot v-if="loading" name="loadingIcon">
|
|
<GeneralLoader class="flex !bg-inherit !text-inherit" :size="loaderSize" />
|
|
</slot>
|
|
|
|
<slot v-else name="icon" />
|
|
</template>
|
|
</div>
|
|
</a-button>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.ant-btn:before {
|
|
display: none !important;
|
|
}
|
|
|
|
.nc-button {
|
|
// Not Icon
|
|
:not(.nc-icon):not(.material-symbols) {
|
|
line-height: 0.95;
|
|
}
|
|
> .ant-btn-loading-icon {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.nc-button {
|
|
@apply !xs:(outline-none);
|
|
|
|
&.nc-btn-shadow {
|
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.06), 0px 5px 3px -2px rgba(0, 0, 0, 0.02);
|
|
}
|
|
outline: none;
|
|
}
|
|
|
|
.desktop {
|
|
.nc-button.ant-btn.focused {
|
|
&.theme-default {
|
|
box-shadow: 0px 0px 0px 2px var(--nc-bg-default), 0px 0px 0px 4px #3069fe;
|
|
}
|
|
|
|
&.theme-ai {
|
|
box-shadow: 0px 0px 0px 2px var(--nc-bg-default), 0px 0px 0px 4px #7d26cd;
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-text.focused {
|
|
&.theme-default {
|
|
@apply text-nc-content-brand;
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply text-nc-content-purple-dark;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn {
|
|
@apply rounded-lg font-medium;
|
|
}
|
|
|
|
.nc-button.ant-btn.small {
|
|
@apply py-1 px-1.75 h-8 min-w-8;
|
|
}
|
|
|
|
.nc-button.ant-btn.medium {
|
|
@apply py-2 px-4 h-10 min-w-10 xs:(h-10.5 max-h-10.5 min-w-10.5 !px-3);
|
|
}
|
|
|
|
.nc-button.ant-btn.size-xs {
|
|
@apply px-2 py-0 h-7 min-w-7 rounded-lg text-small leading-[18px];
|
|
|
|
& > div {
|
|
@apply gap-x-2;
|
|
}
|
|
}
|
|
.nc-button.ant-btn.xsmall {
|
|
@apply p-0.25 h-6.25 min-w-6.25 rounded-md;
|
|
}
|
|
|
|
.nc-button.ant-btn.xxsmall {
|
|
@apply p-0 h-5.75 min-w-5.75 rounded-md;
|
|
}
|
|
|
|
.nc-button.ant-btn[disabled],
|
|
.ant-btn-text.nc-button.ant-btn[disabled] {
|
|
box-shadow: none !important;
|
|
|
|
@apply border-0 !cursor-not-allowed;
|
|
|
|
&.theme-default {
|
|
@apply bg-nc-bg-gray-extralight text-nc-content-brand-hover md:(hover:bg-nc-bg-gray-extralight);
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply bg-nc-bg-purple-light text-nc-content-purple-light md:(hover:bg-nc-bg-purple-light);
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn.nc-show-as-disabled,
|
|
.ant-btn-text.nc-button.ant-btn.nc-show-as-disabled {
|
|
box-shadow: none !important;
|
|
|
|
@apply border-0;
|
|
|
|
&.theme-default {
|
|
@apply bg-nc-bg-gray-extralight text-nc-content-brand-hover md:(hover:bg-nc-bg-gray-extralight);
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply bg-nc-bg-purple-light text-nc-content-purple-light md:(hover:bg-nc-bg-purple-light);
|
|
}
|
|
}
|
|
.nc-button.ant-btn.nc-text-primary {
|
|
&:not(.nc-show-as-disabled):not(:disabled) {
|
|
&.theme-default {
|
|
@apply text-nc-content-brand md:(hover:text-nc-content-brand);
|
|
}
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-text.ant-btn[disabled],
|
|
.nc-button.ant-btn-text.ant-btn.nc-show-as-disabled {
|
|
&.theme-default,
|
|
&.theme-ai {
|
|
@apply bg-transparent hover:bg-transparent;
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-secondary[disabled],
|
|
.nc-button.ant-btn-secondary.nc-show-as-disabled {
|
|
@apply border-1;
|
|
|
|
&:not(.bordered) {
|
|
@apply border-transparent;
|
|
}
|
|
|
|
&.theme-default {
|
|
@apply bg-nc-bg-default hover:bg-nc-bg-default border-nc-border-gray-light text-nc-content-brand-hover;
|
|
|
|
&.bordered {
|
|
@apply border-nc-border-gray-light;
|
|
}
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply bg-nc-bg-purple-light hover:bg-nc-bg-purple-light text-nc-content-purple-light;
|
|
|
|
&.bordered {
|
|
@apply border-nc-border-purple-light;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-primary {
|
|
@apply border-0 xs:(hover:border-0) text-white !text-shadow-none;
|
|
|
|
&.theme-default {
|
|
@apply bg-brand-500 md:(hover:bg-brand-600);
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply bg-purple-700 md:(hover:bg-purple-800);
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-secondary {
|
|
@apply border-1;
|
|
|
|
&:not(.bordered) {
|
|
@apply border-transparent;
|
|
}
|
|
|
|
&.theme-default {
|
|
@apply bg-nc-bg-default text-nc-content-inverted-secondary md:(hover:bg-nc-bg-gray-light);
|
|
|
|
&.bordered {
|
|
@apply border-nc-border-gray-medium;
|
|
}
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply bg-nc-bg-purple-light text-nc-content-purple-dark md:(hover:bg-nc-bg-purple-dark);
|
|
|
|
&.bordered {
|
|
@apply border-nc-border-purple-medium;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-danger {
|
|
@apply bg-red-500 border-0 hover:border-0 md:(hover:bg-red-600);
|
|
}
|
|
|
|
.nc-button.ant-btn-text {
|
|
box-shadow: none;
|
|
|
|
@apply bg-transparent border-0;
|
|
|
|
&.theme-default {
|
|
@apply text-nc-content-inverted-secondary hover:text-nc-content-gray-emphasis hover:bg-nc-bg-gray-light;
|
|
}
|
|
|
|
&.theme-ai {
|
|
@apply text-nc-content-purple-dark hover:text-nc-content-purple-dark hover:bg-nc-bg-purple-dark;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
.nc-button.ant-btn-link {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ant-btn-ghost {
|
|
@apply border-nc-border-gray-medium text-nc-content-inverted-secondary;
|
|
}
|
|
</style>
|