mirror of
https://github.com/unraid/api.git
synced 2026-05-07 07:29:45 -05:00
2c62e0ad09
<!-- 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 -->
78 lines
2.4 KiB
Vue
78 lines
2.4 KiB
Vue
<script lang="ts" setup>
|
|
import { Button } from '@unraid/ui';
|
|
|
|
interface RemoteProps {
|
|
remote: {
|
|
name: string;
|
|
type: string;
|
|
parameters: Record<string, unknown>;
|
|
};
|
|
isDeleting: boolean;
|
|
}
|
|
|
|
defineProps<RemoteProps>();
|
|
|
|
const emit = defineEmits<{
|
|
'open-crypt-modal': [remote: { name: string; type: string }];
|
|
'delete': [name: string];
|
|
}>();
|
|
|
|
const confirmDelete = (name: string) => {
|
|
if (confirm(`Are you sure you want to delete "${name}"?`)) {
|
|
emit('delete', name);
|
|
}
|
|
};
|
|
|
|
// Helper function to safely handle the string replacement
|
|
const getLinkedRemote = (remote: string | unknown): string => {
|
|
if (typeof remote === 'string') {
|
|
return remote.replace(':', '');
|
|
}
|
|
return String(remote || '');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="bg-white rounded-lg border border-gray-200 shadow-xs p-4">
|
|
<div class="flex justify-between items-start">
|
|
<div class="space-y-1">
|
|
<h3 class="text-lg font-medium">{{ remote.name }}</h3>
|
|
<p class="text-sm text-gray-600">Type: {{ remote.type }}</p>
|
|
|
|
<!-- Show additional details based on remote type -->
|
|
<div v-if="remote.parameters" class="space-y-1 mt-2 text-sm text-gray-600">
|
|
<!-- For crypt remotes, show which remote they're linked to -->
|
|
<p v-if="remote.type === 'crypt' && remote.parameters.remote">
|
|
Linked to: {{ getLinkedRemote(remote.parameters.remote) }}
|
|
</p>
|
|
|
|
<!-- For other remote types with important parameters -->
|
|
<template v-if="remote.type === 's3' || remote.type === 'b2' || remote.type === 'drive'">
|
|
<p v-if="remote.parameters.provider">Provider: {{ remote.parameters.provider }}</p>
|
|
<p v-if="remote.parameters.region">Region: {{ remote.parameters.region }}</p>
|
|
<p v-if="remote.parameters.bucket_name">Bucket: {{ remote.parameters.bucket_name }}</p>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<div class="flex gap-2">
|
|
<Button
|
|
v-if="remote.type !== 'crypt'"
|
|
size="sm"
|
|
variant="secondary"
|
|
@click="emit('open-crypt-modal', remote)"
|
|
>
|
|
Add Crypt
|
|
</Button>
|
|
<Button
|
|
size="sm"
|
|
variant="destructive"
|
|
:loading="isDeleting"
|
|
@click="confirmDelete(remote.name)"
|
|
>
|
|
Delete
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|