mirror of
https://github.com/unraid/api.git
synced 2026-01-05 08:00:33 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added new modal dialogs and UI components, including activation steps, OS update feedback, and expanded notification management. * Introduced a plugin to configure internationalization, state management, and Apollo client support in web components. * Added a new Log Viewer page with a streamlined interface for viewing logs. * **Improvements** * Centralized Pinia state management by consolidating all stores to use a shared global Pinia instance. * Simplified component templates by removing redundant internationalization host wrappers. * Enhanced ESLint configuration with stricter rules and global variable declarations. * Refined custom element build process to prevent jQuery conflicts and optimize minification. * Updated component imports and templates for consistent structure and maintainability. * Streamlined log viewer dropdowns using simplified select components with improved formatting. * Improved notification sidebar with filtering by importance and modular components. * Replaced legacy notification popups with new UI components and added automatic root session creation for localhost requests. * Updated OS version display and user profile UI with refined styling and component usage. * **Bug Fixes** * Fixed component tag capitalization and improved type annotations across components. * **Chores** * Updated development dependencies including ESLint plugins and build tools. * Removed deprecated log viewer patch class and cleaned up related test fixtures. * Removed unused imports and simplified Apollo client setup. * Cleaned up test mocks and removed obsolete i18n host component tests. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1210730229632804 --------- Co-authored-by: Pujit Mehrotra <pujit@lime-technology.com> Co-authored-by: Zack Spear <zackspear@users.noreply.github.com>
31 lines
1.2 KiB
Vue
31 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
// eslint-disable vue/no-v-html
|
|
import { storeToRefs } from 'pinia';
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import { useErrorsStore } from '~/store/errors';
|
|
import type { UserProfileLink } from '~/types/userProfile';
|
|
import UpcDropdownItem from './DropdownItem.vue';
|
|
|
|
defineProps<{ t: ComposerTranslation; }>();
|
|
|
|
const errorsStore = useErrorsStore();
|
|
const { errors } = storeToRefs(errorsStore);
|
|
</script>
|
|
|
|
<template>
|
|
<ul v-if="errors.length" class="list-reset flex flex-col gap-y-8px mb-4px border-2 border-solid border-unraid-red/90 rounded-md">
|
|
<li v-for="(error, index) in errors" :key="index" class="flex flex-col gap-8px">
|
|
<h3 class="text-18px py-4px px-12px text-white bg-unraid-red/90 font-semibold">
|
|
<span>{{ t(error.heading) }}</span>
|
|
</h3>
|
|
<div class="text-14px px-12px flex flex-col gap-y-8px" :class="{ 'pb-8px': !error.actions }" v-html="t(error.message)" />
|
|
<nav v-if="error.actions">
|
|
<li v-for="(link, idx) in error.actions" :key="`link_${idx}`">
|
|
<UpcDropdownItem :item="link as UserProfileLink" :rounded="false" :t="t" />
|
|
</li>
|
|
</nav>
|
|
</li>
|
|
</ul>
|
|
</template>
|