elk/components/status/StatusActionButton.vue

86 wiersze
1.8 KiB
Vue
Czysty Zwykły widok Historia

2022-11-24 05:04:20 +00:00
<script setup lang="ts">
const { as = 'button', command, disabled, content, icon } = defineProps<{
2022-11-24 05:04:20 +00:00
text?: string | number
2022-11-27 15:11:34 +00:00
content: string
2022-11-24 05:04:20 +00:00
color: string
icon: string
2022-11-24 08:34:05 +00:00
activeIcon?: string
2022-11-24 05:04:20 +00:00
hover: string
groupHover: string
active?: boolean
disabled?: boolean
2022-11-25 23:46:25 +00:00
as?: string
command?: boolean
2022-11-24 05:04:20 +00:00
}>()
defineOptions({
inheritAttrs: false,
})
defineSlots<{
text: {}
}>()
const el = ref<HTMLDivElement>()
useCommand({
scope: 'Actions',
order: -2,
visible: () => command && !disabled,
name: () => content,
icon: () => icon,
onActivate() {
2022-12-02 02:18:57 +00:00
if (!checkLogin())
return
const clickEvent = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true,
})
el.value?.dispatchEvent(clickEvent)
},
})
2022-11-24 05:04:20 +00:00
</script>
<template>
2022-11-25 23:46:25 +00:00
<component
:is="as"
v-bind="$attrs" ref="el"
w-fit flex gap-1 items-center transition-all select-none
rounded group
:hover=" !disabled ? hover : undefined"
focus:outline-none
:focus-visible="hover"
:class="active ? color : 'text-secondary'"
:aria-label="content"
:disabled="disabled"
2022-11-24 08:34:05 +00:00
>
2022-11-27 15:11:34 +00:00
<CommonTooltip placement="bottom" :content="content">
<div
rounded-full p2
v-bind="disabled ? {} : {
'group-hover': groupHover,
'group-focus-visible': groupHover,
'group-focus-visible:ring': '2 current',
}"
>
<div :class="active && activeIcon ? activeIcon : icon" />
2022-11-27 15:11:34 +00:00
</div>
</CommonTooltip>
2022-11-24 05:04:20 +00:00
<CommonAnimateNumber v-if="text !== undefined || $slots.text" :increased="active" text-sm>
<span text-secondary-light>
<slot name="text">{{ text }}</slot>
</span>
<template #next>
<span :class="[color]">
<slot name="text">{{ text }}</slot>
</span>
</template>
</CommonAnimateNumber>
2022-11-25 23:46:25 +00:00
</component>
2022-11-24 05:04:20 +00:00
</template>