mirror of
https://github.com/elk-zone/elk.git
synced 2025-05-04 14:24:48 +03:00
i18n: doing more
This commit is contained in:
parent
00ae9d0b6c
commit
ea73107c23
9 changed files with 82 additions and 51 deletions
components/common
|
@ -1,12 +1,21 @@
|
|||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
options: string[]
|
||||
const { options } = defineProps<{
|
||||
options: string[] | { name: string; display: string }[]
|
||||
}>()
|
||||
|
||||
const { modelValue } = defineModel<{
|
||||
modelValue: string
|
||||
}>()
|
||||
|
||||
const tabs = computed(() => {
|
||||
return options.map((option) => {
|
||||
if (typeof option === 'string')
|
||||
return { name: option, display: option }
|
||||
else
|
||||
return option
|
||||
})
|
||||
})
|
||||
|
||||
function toValidName(otpion: string) {
|
||||
return otpion.toLowerCase().replace(/[^a-zA-Z0-9]/g, '-')
|
||||
}
|
||||
|
@ -14,25 +23,25 @@ function toValidName(otpion: string) {
|
|||
|
||||
<template>
|
||||
<div flex w-full items-center lg:text-lg>
|
||||
<template v-for="option in options" :key="option">
|
||||
<template v-for="option in tabs" :key="option">
|
||||
<input
|
||||
:id="`tab-${toValidName(option)}`"
|
||||
:checked="modelValue === option"
|
||||
:id="`tab-${toValidName(option.name)}`"
|
||||
:checked="modelValue === option.name"
|
||||
:value="option"
|
||||
type="radio"
|
||||
name="tabs"
|
||||
display="none"
|
||||
@change="modelValue = option"
|
||||
@change="modelValue = option.name"
|
||||
><label
|
||||
flex flex-auto cursor-pointer px3 m1 rounded transition-all
|
||||
:for="`tab-${toValidName(option)}`"
|
||||
:for="`tab-${toValidName(option.name)}`"
|
||||
tabindex="1"
|
||||
hover:bg-active transition-100
|
||||
@keypress.enter="modelValue = option"
|
||||
@keypress.enter="modelValue = option.name"
|
||||
><span
|
||||
mxa px4 py3 text-center
|
||||
:class="modelValue === option ? 'font-bold border-b-3 border-primary' : 'op50 hover:op50'"
|
||||
>{{ option }}</span>
|
||||
:class="modelValue === option.name ? 'font-bold border-b-3 border-primary' : 'op50 hover:op50'"
|
||||
>{{ option.display }}</span>
|
||||
</label>
|
||||
</template>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue