Merge branch 'master' into Implementation_Connectors_no_error_is_displayed_#3734
This commit is contained in:
commit
7d4d1c249c
3 changed files with 2 additions and 61 deletions
|
@ -55,7 +55,7 @@ const Form: React.FC = () => {
|
||||||
yup.object().shape({
|
yup.object().shape({
|
||||||
newSchema:
|
newSchema:
|
||||||
schema?.schemaType === SchemaType.PROTOBUF
|
schema?.schemaType === SchemaType.PROTOBUF
|
||||||
? yup.string().required().isEnum('Schema syntax is not valid')
|
? yup.string().required()
|
||||||
: yup.string().required().isJsonObject('Schema syntax is not valid'),
|
: yup.string().required().isJsonObject('Schema syntax is not valid'),
|
||||||
});
|
});
|
||||||
const methods = useForm<NewSchemaSubjectRaw>({
|
const methods = useForm<NewSchemaSubjectRaw>({
|
||||||
|
|
|
@ -1,19 +1,5 @@
|
||||||
import { isValidEnum, isValidJsonObject } from 'lib/yupExtended';
|
import { isValidJsonObject } from 'lib/yupExtended';
|
||||||
|
|
||||||
const invalidEnum = `
|
|
||||||
ennum SchemType {
|
|
||||||
AVRO = 0;
|
|
||||||
JSON = 1;
|
|
||||||
PROTOBUF = 3;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
const validEnum = `
|
|
||||||
enum SchemType {
|
|
||||||
AVRO = 0;
|
|
||||||
JSON = 1;
|
|
||||||
PROTOBUF = 3;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
describe('yup extended', () => {
|
describe('yup extended', () => {
|
||||||
describe('isValidJsonObject', () => {
|
describe('isValidJsonObject', () => {
|
||||||
it('returns false for no value', () => {
|
it('returns false for no value', () => {
|
||||||
|
@ -35,21 +21,4 @@ describe('yup extended', () => {
|
||||||
expect(isValidJsonObject('{ "foo": "bar" }')).toBeTruthy();
|
expect(isValidJsonObject('{ "foo": "bar" }')).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('isValidEnum', () => {
|
|
||||||
it('returns false for invalid enum', () => {
|
|
||||||
expect(isValidEnum(invalidEnum)).toBeFalsy();
|
|
||||||
});
|
|
||||||
it('returns false for no value', () => {
|
|
||||||
expect(isValidEnum()).toBeFalsy();
|
|
||||||
});
|
|
||||||
it('returns true should trim value', () => {
|
|
||||||
expect(
|
|
||||||
isValidEnum(` enum SchemType {AVRO = 0; PROTOBUF = 3;} `)
|
|
||||||
).toBeTruthy();
|
|
||||||
});
|
|
||||||
it('returns true for valid enum', () => {
|
|
||||||
expect(isValidEnum(validEnum)).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,7 +10,6 @@ declare module 'yup' {
|
||||||
TFlags extends yup.Flags = ''
|
TFlags extends yup.Flags = ''
|
||||||
> extends yup.Schema<TType, TContext, TDefault, TFlags> {
|
> extends yup.Schema<TType, TContext, TDefault, TFlags> {
|
||||||
isJsonObject(message?: string): StringSchema<TType, TContext>;
|
isJsonObject(message?: string): StringSchema<TType, TContext>;
|
||||||
isEnum(message?: string): StringSchema<TType, TContext>;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,32 +39,6 @@ const isJsonObject = (message?: string) => {
|
||||||
isValidJsonObject
|
isValidJsonObject
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const isValidEnum = (value?: string) => {
|
|
||||||
try {
|
|
||||||
if (!value) return false;
|
|
||||||
const trimmedValue = value.trim();
|
|
||||||
if (
|
|
||||||
trimmedValue.indexOf('enum') === 0 &&
|
|
||||||
trimmedValue.lastIndexOf('}') === trimmedValue.length - 1
|
|
||||||
) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
|
|
||||||
const isEnum = (message?: string) => {
|
|
||||||
return yup.string().test(
|
|
||||||
'isEnum',
|
|
||||||
// eslint-disable-next-line no-template-curly-in-string
|
|
||||||
message || '${path} is not Enum object',
|
|
||||||
isValidEnum
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* due to yup rerunning all the object validiation during any render,
|
* due to yup rerunning all the object validiation during any render,
|
||||||
* it makes sense to cache the async results
|
* it makes sense to cache the async results
|
||||||
|
@ -88,7 +61,6 @@ export function cacheTest(
|
||||||
}
|
}
|
||||||
|
|
||||||
yup.addMethod(yup.StringSchema, 'isJsonObject', isJsonObject);
|
yup.addMethod(yup.StringSchema, 'isJsonObject', isJsonObject);
|
||||||
yup.addMethod(yup.StringSchema, 'isEnum', isEnum);
|
|
||||||
|
|
||||||
export const topicFormValidationSchema = yup.object().shape({
|
export const topicFormValidationSchema = yup.object().shape({
|
||||||
name: yup
|
name: yup
|
||||||
|
|
Loading…
Add table
Reference in a new issue