Files
api/web/components/UpdateOs/Status.vue
Michael Datelle 741e8532ab refactor: unraid-ui-web-migration (#1106)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- Introduced enhanced stepper components for smoother multi-step
interactions.
- Added new loading indicators and improved the loading experience with
customizable variants.
  
- **UI Improvements**
- Refreshed the global color palette and updated styling across buttons,
badges, and loading indicators for a more modern, consistent experience.
- Improved the organization and readability of templates and styles
across various components.

- **Code & Dependency Updates**
- Updated key dependencies and revised the theme and configuration
settings to improve performance and maintainability.
- Introduced new environment variables for better configuration
management.

- **Legacy Cleanup**
- Removed deprecated components and streamlined registrations to
simplify the codebase without affecting end-user functionality.
- Eliminated unused utility functions and legacy code to enhance overall
code quality.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: mdatelle <mike@datelle.net>
Co-authored-by: Eli Bosley <ekbosley@gmail.com>
2025-02-12 18:00:06 -05:00

221 lines
6.9 KiB
Vue

<script lang="ts" setup>
import { h } from 'vue';
import { storeToRefs } from 'pinia';
import {
ArrowPathIcon,
ArrowTopRightOnSquareIcon,
BellAlertIcon,
CheckCircleIcon,
ExclamationTriangleIcon,
InformationCircleIcon,
XCircleIcon,
} from '@heroicons/vue/24/solid';
import { Badge, BrandButton, BrandLoading } from '@unraid/ui';
import { WEBGUI_TOOLS_REGISTRATION } from '~/helpers/urls';
import type { BrandButtonProps } from '@unraid/ui';
import type { ComposerTranslation } from 'vue-i18n';
import useDateTimeHelper from '~/composables/dateTime';
import { useAccountStore } from '~/store/account';
import { useServerStore } from '~/store/server';
import { useUpdateOsStore } from '~/store/updateOs';
import { useUpdateOsActionsStore } from '~/store/updateOsActions';
export interface Props {
downgradeNotAvailable?: boolean;
restoreVersion?: string | undefined;
showExternalDowngrade?: boolean;
t: ComposerTranslation;
title?: string;
subtitle?: string;
}
const props = withDefaults(defineProps<Props>(), {
downgradeNotAvailable: false,
restoreVersion: undefined,
showExternalDowngrade: false,
title: undefined,
subtitle: undefined,
});
const accountStore = useAccountStore();
const serverStore = useServerStore();
const updateOsStore = useUpdateOsStore();
const updateOsActionsStore = useUpdateOsActionsStore();
const LoadingIcon = () => h(BrandLoading, { variant: 'white' });
const { dateTimeFormat, osVersion, rebootType, rebootVersion, regExp, regUpdatesExpired } =
storeToRefs(serverStore);
const { available, availableWithRenewal } = storeToRefs(updateOsStore);
const { ineligibleText, rebootTypeText, status } = storeToRefs(updateOsActionsStore);
const updateAvailable = computed(() => available.value || availableWithRenewal.value);
const { outputDateTimeReadableDiff: readableDiffRegExp, outputDateTimeFormatted: formattedRegExp } =
useDateTimeHelper(dateTimeFormat.value, props.t, true, regExp.value);
const regExpOutput = computed(() => {
if (!regExp.value) {
return undefined;
}
return {
text: regUpdatesExpired.value
? props.t('Ineligible for feature updates released after {0}', [formattedRegExp.value])
: props.t('Eligible for free feature updates until {0}', [formattedRegExp.value]),
title: regUpdatesExpired.value
? props.t('Ineligible as of {0}', [readableDiffRegExp.value])
: props.t('Eligible for free feature updates for {0}', [readableDiffRegExp.value]),
};
});
const showRebootButton = computed(
() => rebootType.value === 'downgrade' || rebootType.value === 'update'
);
const checkButton = computed((): BrandButtonProps => {
if (showRebootButton.value || props.showExternalDowngrade) {
return {
variant: 'outline',
click: () => {
props.showExternalDowngrade ? accountStore.downgradeOs() : accountStore.updateOs();
},
icon: ArrowTopRightOnSquareIcon,
text: props.t('More options'),
};
}
if (!updateAvailable.value) {
return {
variant: 'outline',
click: () => {
updateOsStore.localCheckForUpdate();
},
icon: ArrowPathIcon,
text: props.t('Check for Update'),
};
}
return {
variant: 'fill',
click: () => {
updateOsStore.setModalOpen(true);
},
icon: BellAlertIcon,
text: availableWithRenewal.value
? props.t('Unraid OS {0} Released', [availableWithRenewal.value])
: props.t('Unraid OS {0} Update Available', [available.value]),
};
});
</script>
<template>
<div class="grid gap-y-16px">
<header class="grid gap-y-4px">
<h1 v-if="title" class="text-24px font-semibold">
{{ title }}
</h1>
<h2 v-if="subtitle" class="text-20px">
{{ subtitle }}
</h2>
</header>
<div class="flex flex-col md:flex-row gap-16px justify-start md:items-start md:justify-between">
<div class="inline-flex flex-wrap justify-start gap-8px">
<button
class="group"
:title="t('View release notes')"
@click="updateOsActionsStore.viewReleaseNotes(t('{0} Release Notes', [osVersion]))"
>
<Badge :icon="InformationCircleIcon" variant="gray" size="md">
{{ t('Current Version {0}', [osVersion]) }}
</Badge>
</button>
<a
v-if="ineligibleText && !availableWithRenewal"
:href="WEBGUI_TOOLS_REGISTRATION.toString()"
class="group"
:title="t('Learn more and fix')"
>
<Badge
variant="yellow"
:icon="ExclamationTriangleIcon"
:title="regExpOutput?.text"
class="underline"
>
{{ t('Key ineligible for future releases') }}
</Badge>
</a>
<Badge
v-else-if="ineligibleText && availableWithRenewal"
variant="yellow"
:icon="ExclamationTriangleIcon"
:title="regExpOutput?.text"
>
{{ t('Key ineligible for {0}', [availableWithRenewal]) }}
</Badge>
<Badge v-if="status === 'checking'" variant="orange" :icon="LoadingIcon">
{{ t('Checking...') }}
</Badge>
<template v-else>
<Badge
v-if="rebootType === ''"
:variant="updateAvailable ? 'orange' : 'green'"
:icon="updateAvailable ? BellAlertIcon : CheckCircleIcon"
>
{{
available
? t('Unraid {0} Available', [available])
: availableWithRenewal
? t('Up-to-date with eligible releases')
: t('Up-to-date')
}}
</Badge>
<Badge v-else variant="yellow" :icon="ExclamationTriangleIcon">
{{ t(rebootTypeText) }}
</Badge>
</template>
<Badge v-if="downgradeNotAvailable" variant="gray" :icon="XCircleIcon">
{{ t('No downgrade available') }}
</Badge>
</div>
<div class="inline-flex flex-col flex-shrink-0 gap-16px flex-grow items-center md:items-end">
<span v-if="showRebootButton">
<BrandButton
variant="fill"
:icon="ArrowPathIcon"
:text="
rebootType === 'downgrade'
? t('Reboot Now to Downgrade to {0}', [rebootVersion])
: t('Reboot Now to Update to {0}', [rebootVersion])
"
@click="updateOsActionsStore.rebootServer()"
/>
</span>
<span>
<BrandButton
:variant="checkButton.variant"
:icon="checkButton.icon"
:text="checkButton.text"
@click="checkButton.click"
/>
</span>
<span v-if="rebootType !== ''">
<BrandButton
variant="outline"
:icon="XCircleIcon"
:text="t('Cancel {0}', [rebootType === 'downgrade' ? t('Downgrade') : t('Update')])"
@click="updateOsStore.cancelUpdate()"
/>
</span>
</div>
</div>
</div>
</template>