Files
api/web/components/Activation/Steps.vue
T
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

119 lines
3.0 KiB
Vue

<script setup lang="ts">
import { CheckIcon, KeyIcon, ServerStackIcon } from '@heroicons/vue/24/outline';
import {
KeyIcon as KeyIconSolid,
LockClosedIcon,
ServerStackIcon as ServerStackIconSolid,
} from '@heroicons/vue/24/solid';
import {
Button,
Stepper,
StepperDescription,
StepperItem,
StepperSeparator,
StepperTitle,
StepperTrigger,
} from '@unraid/ui';
import type { Component } from 'vue';
type StepState = 'inactive' | 'active' | 'completed';
withDefaults(
defineProps<{
activeStep: number;
}>(),
{
activeStep: 1,
}
);
interface Step {
step: number;
title: string;
description: string;
icon: {
inactive: Component;
active: Component;
completed: Component;
};
}
const steps: readonly Step[] = [
{
step: 1,
title: 'Create Device Password',
description: 'Secure your device',
icon: {
inactive: LockClosedIcon,
active: LockClosedIcon,
completed: CheckIcon,
},
},
{
step: 2,
title: 'Activate License',
description: 'Create an Unraid.net account and activate your key',
icon: {
inactive: KeyIcon,
active: KeyIconSolid,
completed: CheckIcon,
},
},
{
step: 3,
title: 'Unleash Your Hardware',
description: 'Device is ready to configure',
icon: {
inactive: ServerStackIcon,
active: ServerStackIconSolid,
completed: CheckIcon,
},
},
] as const;
</script>
<template>
<Stepper :default-value="activeStep" class="text-foreground flex w-full items-start gap-2 text-16px">
<StepperItem
v-for="step in steps"
:key="step.step"
v-slot="{ state }: { state: StepState }"
class="relative flex w-full flex-col items-center justify-center"
:step="step.step"
:disabled="true"
>
<StepperSeparator
v-if="step.step !== steps[steps.length - 1].step"
class="absolute left-[calc(50%+20px)] right-[calc(-50%+10px)] top-[1.5rem] &block h-0.5 shrink-0 rounded-full bg-muted group-data-[state=completed]:bg-primary"
/>
<StepperTrigger as-child>
<Button
:variant="state === 'completed' || state === 'active' ? 'primary' : 'outline'"
size="md"
:class="`z-10 rounded-full shrink-0 opacity-100 ${
state !== 'inactive'
? 'ring-2 ring-primary ring-offset-2 ring-offset-background *:cursor-default'
: ''
}`"
:disabled="state === 'inactive'"
>
<component :is="step.icon[state]" class="size-4" />
</Button>
</StepperTrigger>
<div class="mt-2 flex flex-col items-center text-center">
<StepperTitle
:class="[state === 'active' && 'text-primary']"
class="text-2xs font-semibold transition"
>
{{ step.title }}
</StepperTitle>
<StepperDescription class="text-2xs font-normal">
{{ step.description }}
</StepperDescription>
</div>
</StepperItem>
</Stepper>
</template>