Files
api/web/store/installKey.ts
Pujit Mehrotra 2266139742 fix: extract callbacks to library (#1280)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Chores**
  - Updated environment configuration to enhance secure handling.
  - Integrated a shared dependency for consistent callback management.

- **Refactor**
  - Streamlined callback actions management for improved performance.
- Upgraded the operating system version from a beta release to stable
(7.0.0), delivering enhanced reliability.
- Centralized callback actions store usage across components for better
state management.
- Removed deprecated callback management code to improve clarity and
maintainability.

- **New Features**
- Introduced a new redirect component to enhance user navigation
experience.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Eli Bosley <ekbosley@gmail.com>
Co-authored-by: Zack Spear <hi@zackspear.com>
2025-03-28 16:11:29 -04:00

75 lines
2.3 KiB
TypeScript

import { defineStore, createPinia, setActivePinia } from 'pinia';
import { WebguiInstallKey } from '~/composables/services/webgui';
import { useErrorsStore } from '~/store/errors';
import type { ExternalKeyActions } from '@unraid/shared-callbacks';
/**
* @see https://stackoverflow.com/questions/73476371/using-pinia-with-vue-js-web-components
* @see https://github.com/vuejs/pinia/discussions/1085
*/
setActivePinia(createPinia());
export const useInstallKeyStore = defineStore('installKey', () => {
const errorsStore = useErrorsStore();
const keyInstallStatus = ref<'failed' | 'installing' | 'ready' | 'success'>('ready');
const keyAction = ref<ExternalKeyActions>();
const keyActionType = computed(() => keyAction.value?.type);
const keyUrl = computed(() => keyAction.value?.keyUrl);
/**
* Extracts key type from key url. Works for both .key and .unkey.
*/
const keyType = computed((): string | undefined => {
if (!keyUrl.value) { return undefined; }
const parts = keyUrl.value.split('/');
return parts[parts.length - 1].replace(/\.key|\.unkey/g, '');
});
const install = async (action: ExternalKeyActions) => {
console.log('[installKey.install]', action);
keyInstallStatus.value = 'installing';
keyAction.value = action;
if (!keyUrl.value) {
keyInstallStatus.value = 'failed';
return console.error('[install] no key to install');
}
try {
const installResponse = await WebguiInstallKey
.query({ url: keyUrl.value })
.get();
console.log('[install] WebguiInstallKey installResponse', installResponse);
keyInstallStatus.value = 'success';
} catch (error) {
console.error('[install] WebguiInstallKey error', error);
let errorMessage = 'Unknown error';
if (typeof error === 'string') {
errorMessage = error.toUpperCase();
} else if (error instanceof Error) {
errorMessage = error.message;
}
keyInstallStatus.value = 'failed';
errorsStore.setError({
heading: 'Failed to install key',
message: errorMessage,
level: 'error',
ref: 'installKey',
type: 'installKey',
});
}
};
return {
// State
keyInstallStatus,
// getters
keyActionType,
keyType,
keyUrl,
// Actions
install,
};
});