mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
<!-- 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>
89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
import { ApolloClient, createHttpLink, from, split } from '@apollo/client/core/index.js';
|
|
import { onError } from '@apollo/client/link/error/index.js';
|
|
import { RetryLink } from '@apollo/client/link/retry/index.js';
|
|
import { GraphQLWsLink } from '@apollo/client/link/subscriptions/index.js';
|
|
import { getMainDefinition } from '@apollo/client/utilities/index.js';
|
|
import { provideApolloClient } from '@vue/apollo-composable';
|
|
import { createClient } from 'graphql-ws';
|
|
import { createApolloCache } from './apollo-cache';
|
|
import { WEBGUI_GRAPHQL } from './urls';
|
|
|
|
const httpEndpoint = WEBGUI_GRAPHQL;
|
|
const wsEndpoint = new URL(WEBGUI_GRAPHQL.toString().replace('http', 'ws'));
|
|
|
|
const headers = {
|
|
'x-csrf-token': globalThis.csrf_token ?? '0000000000000000',
|
|
};
|
|
|
|
const httpLink = createHttpLink({
|
|
uri: httpEndpoint.toString(),
|
|
headers,
|
|
credentials: 'include',
|
|
});
|
|
|
|
const wsLink = new GraphQLWsLink(
|
|
createClient({
|
|
url: wsEndpoint.toString(),
|
|
connectionParams: () => headers,
|
|
})
|
|
);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const errorLink = onError(({ graphQLErrors, networkError }: any) => {
|
|
if (graphQLErrors) {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
graphQLErrors.map((error: any) => {
|
|
console.error('[GraphQL error]', error);
|
|
const errorMsg = error.error?.message ?? error.message;
|
|
if (errorMsg?.includes('offline')) {
|
|
// @todo restart the api, but make sure not to trigger infinite loop
|
|
}
|
|
return error.message;
|
|
});
|
|
}
|
|
|
|
if (networkError) {
|
|
console.error(`[Network error]: ${networkError}`);
|
|
const msg = networkError.message ? networkError.message : networkError;
|
|
if (typeof msg === 'string' && msg.includes('Unexpected token < in JSON at position 0')) {
|
|
return 'Unraid API • CORS Error';
|
|
}
|
|
return msg;
|
|
}
|
|
});
|
|
|
|
const retryLink = new RetryLink({
|
|
attempts: {
|
|
max: 20,
|
|
retryIf: (error, _operation) => {
|
|
return Boolean(error);
|
|
},
|
|
},
|
|
delay: {
|
|
initial: 300,
|
|
max: 10000,
|
|
jitter: true,
|
|
},
|
|
});
|
|
|
|
const splitLinks = split(
|
|
({ query }) => {
|
|
const definition = getMainDefinition(query);
|
|
return definition.kind === 'OperationDefinition' && definition.operation === 'subscription';
|
|
},
|
|
wsLink,
|
|
httpLink
|
|
);
|
|
/**
|
|
* @todo as we add retries, determine which we'll need
|
|
* https://www.apollographql.com/docs/react/api/link/introduction/#additive-composition
|
|
* https://www.apollographql.com/docs/react/api/link/introduction/#directional-composition
|
|
*/
|
|
const additiveLink = from([errorLink, retryLink, splitLinks]);
|
|
|
|
export const client = new ApolloClient({
|
|
link: additiveLink,
|
|
cache: createApolloCache(),
|
|
});
|
|
|
|
provideApolloClient(client); |