- main.jsx: remove VITE_AUTH_BASE_URL env var; add AppContent that reads authConfig from useAppContext() and passes to AuthProvider; reorder: AppProvider -> AuthProvider -> BrowserRouter - sync react-openapi: AuthConfig type, extractAuthConfig, loading fix - sync react-auth: authConfig prop, config-driven paths, server logout
135 lines
4.2 KiB
TypeScript
135 lines
4.2 KiB
TypeScript
import React, { useEffect, useState, useMemo } from "react";
|
|
import type { AuthConfig, ProfileOperation, SpecConfiguration, ResourceConfig, ValidationMessage } from "../types";
|
|
import { AppContext } from "./AppContext";
|
|
import { loadSpec } from "../spec-loader";
|
|
import { validateSpec } from "../spec-validator";
|
|
import { buildResourceConfigs } from "../transformers/resource-config";
|
|
import { initApi } from "../hooks/useApi";
|
|
|
|
interface AppProviderProps {
|
|
specConfiguration: SpecConfiguration;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
function extractAuthConfig(spec: any): AuthConfig {
|
|
const bearer: Record<string, any> =
|
|
spec?.components?.securitySchemes?.bearerAuth ?? {};
|
|
return {
|
|
serverUrl: bearer["x-server-url"] ?? "",
|
|
loginPath: bearer["x-login-path"] ?? "/login",
|
|
registerPath: bearer["x-register-path"] ?? "/register",
|
|
logoutPath: bearer["x-logout-path"] ?? "/logout",
|
|
mePath: bearer["x-me-path"] ?? "/me",
|
|
introspectPath: bearer["x-introspect-path"] ?? "/introspect",
|
|
};
|
|
}
|
|
|
|
function extractProfileOperations(spec: any): ProfileOperation[] {
|
|
const ops: ProfileOperation[] = [];
|
|
const paths = spec.paths ?? {};
|
|
for (const [path, methods] of Object.entries<Record<string, any>>(paths)) {
|
|
for (const [method, operation] of Object.entries(methods)) {
|
|
if (method.startsWith("x-")) continue;
|
|
if (operation["x-profile"] === true) {
|
|
ops.push({
|
|
path,
|
|
method: method.toUpperCase(),
|
|
operationId: operation.operationId ?? "",
|
|
summary: operation.summary,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
return ops;
|
|
}
|
|
|
|
const DEFAULT_AUTH_CONFIG: AuthConfig = {
|
|
serverUrl: "",
|
|
loginPath: "/login",
|
|
registerPath: "/register",
|
|
logoutPath: "/logout",
|
|
mePath: "/me",
|
|
introspectPath: "/introspect",
|
|
};
|
|
|
|
export function AppProvider({ specConfiguration, children }: AppProviderProps) {
|
|
const [loading, setLoading] = useState(true);
|
|
const [resources, setResources] = useState<ResourceConfig[]>([]);
|
|
const [profileOperations, setProfileOperations] = useState<ProfileOperation[]>([]);
|
|
const [authConfig, setAuthConfig] = useState<AuthConfig>(DEFAULT_AUTH_CONFIG);
|
|
const [schemas, setSchemas] = useState<Record<string, any>>({});
|
|
const [errors, setErrors] = useState<ValidationMessage[]>([]);
|
|
const [warnings, setWarnings] = useState<ValidationMessage[]>([]);
|
|
|
|
const profileComponents = specConfiguration.profileComponents ?? {};
|
|
|
|
useEffect(() => {
|
|
let cancelled = false;
|
|
|
|
async function init() {
|
|
try {
|
|
setLoading(true);
|
|
|
|
const spec = await loadSpec(specConfiguration.specUrl);
|
|
|
|
const allMessages = validateSpec(spec, specConfiguration);
|
|
|
|
const errs = allMessages.filter((m) => m.type === "error");
|
|
const warns = allMessages.filter((m) => m.type === "warning");
|
|
|
|
if (!cancelled) {
|
|
setErrors(errs);
|
|
setWarnings(warns);
|
|
setSchemas(spec.components?.schemas ?? {});
|
|
setProfileOperations(extractProfileOperations(spec));
|
|
setAuthConfig(extractAuthConfig(spec));
|
|
}
|
|
|
|
if (errs.length === 0) {
|
|
const configs = buildResourceConfigs(spec);
|
|
if (!cancelled) {
|
|
setResources(configs);
|
|
}
|
|
|
|
const baseUrl = specConfiguration.baseApiUrl ?? spec.servers?.[0]?.url ?? "";
|
|
if (baseUrl) {
|
|
initApi(baseUrl, specConfiguration.getToken);
|
|
}
|
|
}
|
|
} catch (e: any) {
|
|
if (!cancelled) {
|
|
const lines = (e.message ?? "Failed to load spec").split("\n");
|
|
setErrors(lines.map((msg: string) => ({ type: "error" as const, message: msg })));
|
|
}
|
|
} finally {
|
|
if (!cancelled) {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
init();
|
|
|
|
return () => {
|
|
cancelled = true;
|
|
};
|
|
}, [specConfiguration.specUrl]);
|
|
|
|
const value = useMemo(
|
|
() => ({
|
|
config: specConfiguration,
|
|
resources,
|
|
profileOperations,
|
|
profileComponents,
|
|
authConfig,
|
|
schemas,
|
|
loading,
|
|
errors,
|
|
warnings,
|
|
}),
|
|
[specConfiguration, resources, profileOperations, profileComponents, authConfig, schemas, loading, errors, warnings]
|
|
);
|
|
|
|
return React.createElement(AppContext.Provider, { value }, children);
|
|
}
|