mirror of
https://github.com/unraid/api.git
synced 2026-01-07 09:10:05 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Standalone web bundle with auto-mount utilities and a self-contained test page. * New responsive modal components for consistent mobile/desktop dialogs. * Header actions to copy OS/API versions. * **Improvements** * Refreshed UI styles (muted borders), accessibility and animation refinements. * Theming updates and Tailwind v4–aligned, component-scoped styles. * Runtime GraphQL endpoint override and CSRF header support. * **Bug Fixes** * Safer network fetching and improved manifest/asset loading with duplicate protection. * **Tests/Chores** * Parallel plugin tests, new extractor test suite, and updated build/test scripts. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
68 lines
2.8 KiB
Vue
68 lines
2.8 KiB
Vue
<script lang="ts" setup>
|
|
import { storeToRefs } from 'pinia';
|
|
import { useDummyServerStore } from '~/_data/serverState';
|
|
import { Toaster } from '@unraid/ui';
|
|
import BrandLogo from '~/components/Brand/Logo.vue';
|
|
import HeaderOsVersionCe from '~/components/HeaderOsVersion.ce.vue';
|
|
import ConnectSettingsCe from '~/components/ConnectSettings/ConnectSettings.ce.vue';
|
|
|
|
const serverStore = useDummyServerStore();
|
|
const { serverState } = storeToRefs(serverStore);
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<client-only>
|
|
<div
|
|
class="flex flex-col gap-6 p-6 mx-auto text-black bg-white dark:text-white dark:bg-black"
|
|
>
|
|
<h2 class="text-xl font-semibold font-mono">Web Components</h2>
|
|
<h3 class="text-lg font-semibold font-mono">UserProfileCe</h3>
|
|
<header class="bg-header-background-color py-4 flex flex-row justify-between items-center">
|
|
<div class="inline-flex flex-col gap-4 items-start px-4">
|
|
<a href="https://unraid.net" target="_blank">
|
|
<BrandLogo class="w-[100px] sm:w-[150px]" />
|
|
</a>
|
|
<HeaderOsVersionCe />
|
|
</div>
|
|
<unraid-user-profile :server="JSON.stringify(serverState)" />
|
|
</header>
|
|
<hr class="border-muted" >
|
|
|
|
<h3 class="text-lg font-semibold font-mono">ConnectSettingsCe</h3>
|
|
<ConnectSettingsCe />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">DownloadApiLogsCe</h3>
|
|
<unraid-download-api-logs />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">AuthCe</h3>
|
|
<unraid-auth />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">WanIpCheckCe</h3>
|
|
<unraid-wan-ip-check php-wan-ip="47.184.85.45" />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">HeaderOsVersion</h3>
|
|
<unraid-header-os-version />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">UpdateOsCe</h3>
|
|
<unraid-update-os />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">DowngradeOsCe</h3>
|
|
<unraid-downgrade-os restore-release-date="2022-10-10" restore-version="6.11.2" />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">RegistrationCe</h3>
|
|
<unraid-registration />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">ModalsCe</h3>
|
|
<!-- uncomment to test modals <unraid-modals />-->
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">SSOSignInButtonCe</h3>
|
|
<unraid-sso-button />
|
|
<hr class="border-muted" >
|
|
<h3 class="text-lg font-semibold font-mono">ApiKeyManagerCe</h3>
|
|
<unraid-api-key-manager />
|
|
</div>
|
|
<Toaster rich-colors close-button />
|
|
</client-only>
|
|
</template>
|