mirror of
https://github.com/unraid/api.git
synced 2026-05-01 20:54:27 -05:00
345e83bfb0
<!-- 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>
69 lines
2.0 KiB
Vue
69 lines
2.0 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import useDateTimeHelper from '~/composables/dateTime';
|
|
import { useServerStore } from '~/store/server';
|
|
|
|
export interface Props {
|
|
forExpire?: boolean;
|
|
shortText?: boolean;
|
|
as?: 'p' | 'span';
|
|
t: ComposerTranslation;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
forExpire: false,
|
|
shortText: false,
|
|
as: 'p',
|
|
});
|
|
|
|
const serverStore = useServerStore();
|
|
const { dateTimeFormat, uptime, expireTime, state } = storeToRefs(serverStore);
|
|
|
|
const time = computed(() => {
|
|
if (props.forExpire && expireTime.value) {
|
|
return expireTime.value;
|
|
}
|
|
return (state.value === 'TRIAL' || state.value === 'EEXPIRED') && expireTime.value && expireTime.value > 0
|
|
? expireTime.value
|
|
: uptime.value;
|
|
});
|
|
|
|
const countUp = computed<boolean>(() => {
|
|
if (props.forExpire && expireTime.value) {
|
|
return false;
|
|
}
|
|
return state.value !== 'TRIAL' && state.value !== 'ENOCONN';
|
|
});
|
|
|
|
const {
|
|
outputDateTimeReadableDiff: readableDiff,
|
|
outputDateTimeFormatted: formatted,
|
|
} = useDateTimeHelper(dateTimeFormat.value, props.t, false, time.value, countUp.value);
|
|
|
|
const output = computed(() => {
|
|
if (!countUp.value || state.value === 'EEXPIRED') {
|
|
return {
|
|
title: state.value === 'EEXPIRED'
|
|
? props.t(props.shortText ? 'Expired at {0}' : 'Trial Key Expired at {0}', [formatted.value])
|
|
: props.t(props.shortText ? 'Expires at {0}' : 'Trial Key Expires at {0}', [formatted.value]),
|
|
text: state.value === 'EEXPIRED'
|
|
? props.t(props.shortText ? 'Expired {0}' : 'Trial Key Expired {0}', [readableDiff.value])
|
|
: props.t(props.shortText ? 'Expires in {0}' : 'Trial Key Expires in {0}', [readableDiff.value]),
|
|
};
|
|
}
|
|
return {
|
|
title: props.t('Server Up Since {0}', [formatted.value]),
|
|
text: props.t('Uptime {0}', [readableDiff.value]),
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<component :is="as" :title="output.title">
|
|
{{ output.text }}
|
|
</component>
|
|
</template>
|