2022-11-20 21:38:52 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-29 08:15:05 +00:00
|
|
|
const { options, command } = defineProps<{
|
|
|
|
options: string[] | {
|
|
|
|
name: string
|
|
|
|
icon?: string
|
|
|
|
display: string
|
|
|
|
}[]
|
|
|
|
command?: boolean
|
2022-11-20 21:38:52 +00:00
|
|
|
}>()
|
2022-11-23 08:08:49 +00:00
|
|
|
|
|
|
|
const { modelValue } = defineModel<{
|
|
|
|
modelValue: string
|
|
|
|
}>()
|
2022-11-20 21:38:52 +00:00
|
|
|
|
2022-11-29 08:15:05 +00:00
|
|
|
const tabs = $computed(() => {
|
2022-11-29 07:18:28 +00:00
|
|
|
return options.map((option) => {
|
|
|
|
if (typeof option === 'string')
|
|
|
|
return { name: option, display: option }
|
|
|
|
else
|
|
|
|
return option
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2022-11-20 21:38:52 +00:00
|
|
|
function toValidName(otpion: string) {
|
|
|
|
return otpion.toLowerCase().replace(/[^a-zA-Z0-9]/g, '-')
|
|
|
|
}
|
2022-11-29 08:15:05 +00:00
|
|
|
|
|
|
|
useCommands(() => command
|
|
|
|
? tabs.map(tab => ({
|
|
|
|
scope: 'Tabs',
|
|
|
|
|
|
|
|
name: tab.display,
|
|
|
|
icon: tab.icon ?? 'i-ri:file-list-2-line',
|
|
|
|
|
|
|
|
onActivate: () => modelValue.value = tab.name,
|
|
|
|
}))
|
|
|
|
: [])
|
2022-11-20 21:38:52 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-26 17:36:23 +00:00
|
|
|
<div flex w-full items-center lg:text-lg>
|
2022-11-29 07:18:28 +00:00
|
|
|
<template v-for="option in tabs" :key="option">
|
2022-11-20 21:38:52 +00:00
|
|
|
<input
|
2022-11-29 07:18:28 +00:00
|
|
|
:id="`tab-${toValidName(option.name)}`"
|
|
|
|
:checked="modelValue === option.name"
|
2022-11-23 08:08:49 +00:00
|
|
|
:value="option"
|
|
|
|
type="radio"
|
|
|
|
name="tabs"
|
|
|
|
display="none"
|
2022-11-29 07:18:28 +00:00
|
|
|
@change="modelValue = option.name"
|
2022-11-23 08:08:49 +00:00
|
|
|
><label
|
2022-11-28 20:42:17 +00:00
|
|
|
flex flex-auto cursor-pointer px3 m1 rounded transition-all
|
2022-11-29 07:18:28 +00:00
|
|
|
:for="`tab-${toValidName(option.name)}`"
|
2022-11-23 08:08:49 +00:00
|
|
|
tabindex="1"
|
2022-11-23 14:39:48 +00:00
|
|
|
hover:bg-active transition-100
|
2022-11-29 07:18:28 +00:00
|
|
|
@keypress.enter="modelValue = option.name"
|
2022-11-23 08:08:49 +00:00
|
|
|
><span
|
2022-11-30 03:01:36 +00:00
|
|
|
mxa px4 py3 text-center border-b-3
|
|
|
|
:class="modelValue === option.name ? 'font-bold border-primary' : 'op50 hover:op50 border-transparent'"
|
2022-11-29 07:18:28 +00:00
|
|
|
>{{ option.display }}</span>
|
2022-11-23 08:08:49 +00:00
|
|
|
</label>
|
2022-11-20 21:38:52 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|