edit registration

This commit is contained in:
smanylov
2026-02-03 15:25:11 +07:00
parent 2adf66baa2
commit 1e199de7b2
6 changed files with 52 additions and 23 deletions
+9 -18
View File
@@ -35,9 +35,6 @@ interface ValidationConfig {
const defaultConfig = validationConfig as ValidationConfig;
let cachedSignupSchema: any = null;
let schemaPromise: Promise<any> | null = null;
async function loadConfigFromBackend(accountType?: 'b2b' | 'b2c'): Promise<any> {
try {
const response = await fetch('/api/validation-config');
@@ -51,22 +48,16 @@ async function loadConfigFromBackend(accountType?: 'b2b' | 'b2c'): Promise<any>
}
export async function getSignupFormSchema(schemaType?: 'b2b' | 'b2c' | 'resetPassword') {
if (cachedSignupSchema) {
return cachedSignupSchema;
}
let schemaPromise: Promise<any> | null = null;
if (!schemaPromise) {
schemaPromise = (async () => {
const config = await loadConfigFromBackend();
if (schemaType === 'resetPassword') {
cachedSignupSchema = createValidationSchemaForPssword(config);
} else {
cachedSignupSchema = createValidationSchema(config, schemaType);
}
return cachedSignupSchema;
})();
}
schemaPromise = (async () => {
const config = await loadConfigFromBackend();
if (schemaType === 'resetPassword') {
return createValidationSchemaForPssword(config);
} else {
return createValidationSchema(config, schemaType);
}
})();
return await schemaPromise;
}