mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Streamlined Tailwind CSS integration using Vite plugin, eliminating the need for separate Tailwind config files. * Updated theme and color variables for improved consistency and maintainability. * **Style** * Standardized spacing, sizing, and font classes across all components using Tailwind’s default scale. * Reduced excessive gaps, padding, and font sizes for a more compact and cohesive UI. * Updated gradient, border, and shadow classes to match Tailwind v4 conventions. * Replaced custom pixel-based classes with Tailwind’s bracketed arbitrary value syntax where needed. * Replaced focus outline styles from `outline-none` to `outline-hidden` for consistent focus handling. * Updated flex shrink/grow utility classes to use newer shorthand forms. * Converted several component templates to use self-closing tags for cleaner markup. * Adjusted icon sizes and spacing for improved visual balance. * **Chores** * Removed legacy Tailwind/PostCSS configuration files and related scripts. * Updated and cleaned up package dependencies for Tailwind v4 and related plugins. * Removed unused or redundant build scripts and configuration exports. * Updated documentation to reflect new Tailwind v4 usage. * Removed Prettier Tailwind plugin from formatting configurations. * Removed Nuxt Tailwind module in favor of direct Vite plugin integration. * Cleaned up ESLint config by removing Prettier integration. * **Bug Fixes** * Corrected invalid or outdated Tailwind class names and syntax. * Fixed issues with max-width and other utility classes for improved layout consistency. * **Tests** * Updated test assertions to match new class names and styling conventions. * **Documentation** * Revised README and internal notes to clarify Tailwind v4 adoption and configuration changes. * Added new development notes emphasizing Tailwind v4 usage and documentation references. * **UI Components** * Enhanced BrandButton stories with detailed variant, size, and padding showcases for better visual testing. * Improved theme store to apply dark mode class on both `<html>` and `<body>` elements for compatibility. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
61 lines
2.2 KiB
Vue
61 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import type { ServerStateDataAction } from '~/types/server';
|
|
import type { UserProfileLink } from '~/types/userProfile';
|
|
|
|
export interface Props {
|
|
item: ServerStateDataAction | UserProfileLink;
|
|
rounded?: boolean;
|
|
t: ComposerTranslation;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
rounded: true,
|
|
});
|
|
|
|
const showExternalIconOnHover = computed(() => props.item?.external && props.item.icon !== ArrowTopRightOnSquareIcon);
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="item?.click ? 'button' : 'a'"
|
|
:disabled="item?.disabled"
|
|
:href="item?.href ?? null"
|
|
:target="item?.external ? '_blank' : null"
|
|
:rel="item?.external ? 'noopener noreferrer' : null"
|
|
class="text-left text-sm w-full flex flex-row items-center justify-between gap-x-2 px-2 py-2 cursor-pointer"
|
|
:class="{
|
|
'text-foreground bg-transparent hover:text-white focus:text-white focus:outline-hidden dropdown-item-hover': !item?.emphasize,
|
|
'text-white bg-linear-to-r from-unraid-red to-orange dropdown-item-emphasized': item?.emphasize,
|
|
'group': showExternalIconOnHover,
|
|
'rounded-md': rounded,
|
|
'disabled:opacity-50 disabled:hover:opacity-50 disabled:focus:opacity-50 disabled:cursor-not-allowed': item?.disabled,
|
|
}"
|
|
@click.stop="item?.click ? item?.click(item?.clickParams ?? []) : null"
|
|
>
|
|
<span class="leading-snug inline-flex flex-row items-center gap-x-2">
|
|
<component :is="item?.icon" class="shrink-0 text-current w-4 h-4" aria-hidden="true" />
|
|
{{ t(item?.text, item?.textParams ?? []) }}
|
|
</span>
|
|
<ArrowTopRightOnSquareIcon
|
|
v-if="showExternalIconOnHover"
|
|
class="text-white fill-current shrink-0 w-4 h-4 ml-2 opacity-0 group-hover:opacity-100 transition-opacity duration-200 ease-in-out"
|
|
/>
|
|
</component>
|
|
</template>
|
|
|
|
<style>
|
|
.dropdown-item-hover:hover,
|
|
.dropdown-item-hover:focus {
|
|
background: linear-gradient(to right, #e22828, #ff8c2f);
|
|
}
|
|
|
|
.dropdown-item-emphasized:hover,
|
|
.dropdown-item-emphasized:focus {
|
|
background: linear-gradient(to right, rgba(226, 40, 40, 0.6), rgba(255, 140, 47, 0.6));
|
|
}
|
|
</style>
|