Files
api/web/components/Activation/ActivationSteps.vue
Eli Bosley 39e83b2aa1 feat: move activation code logic into the API (#1369)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- Added comprehensive activation code customization service with dynamic
theming, partner branding, and UI updates.
- Introduced new GraphQL types and public queries for activation code,
partner info, and theme data.
- Implemented new web UI stores and components for activation modal,
partner logos, and theme management.
- **Improvements**
- Removed legacy activation code scripts, PHP components, and plugin
references, streamlining activation logic.
- Enhanced configuration and environment support for activation and
theming features.
- Improved error handling, validation, and type safety in activation and
customization modules.
- **Bug Fixes**
- Fixed color code validation and path handling in customization
service.
- **Chores**
  - Added pre-commit linting hooks and related configuration.
  - Cleaned up test and development environment files.
- **Tests**
- Added extensive tests covering activation customization service
initialization, data handling, and file modifications.
  - Removed obsolete tests related to legacy activation code store.
- **Refactor**
- Migrated activation and partner branding logic from legacy scripts and
PHP to TypeScript services and GraphQL resolvers.
- Reorganized store and component architecture for activation-related
features.
- **Style**
- Updated UI components for improved branding, theming, accessibility,
and layout consistency.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Zack Spear <hi@zackspear.com>
2025-05-01 17:40:36 -04:00

118 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, index) in steps"
:key="step.step"
v-slot="{ state }: { state: StepState }"
class="relative flex w-full flex-col items-center justify-center data-[disabled]:opacity-100"
:step="step.step"
:disabled="true"
>
<StepperTrigger>
<div class="flex items-center justify-center">
<Button
:variant="state === 'completed' ? 'primary' : state === 'active' ? 'primary' : 'outline'"
size="md"
:class="`z-10 rounded-full ${
state !== 'inactive'
? 'ring-2 ring-offset-2 ring-offset-background *:cursor-default ' +
(state === 'completed' ? 'ring-success' : 'ring-primary')
: ''
}`"
:disabled="state === 'inactive'"
>
<component :is="step.icon[state]" class="size-4" />
</Button>
</div>
<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>
</StepperTrigger>
<StepperSeparator v-if="index < steps.length - 1" class="w-[50px] bg-black h-[30px]" />
</StepperItem>
</Stepper>
</template>