Add field constraint indicator for uniqueItems

Resolves #1353
This commit is contained in:
Michael Huynh 2020-10-18 09:48:55 +08:00
parent 1fdfd1353d
commit 13aa7133bc
No known key found for this signature in database
GPG Key ID: 760127DAE4EDD351
3 changed files with 13 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export class ConstraintsView extends React.PureComponent<ConstraintsViewProps> {
<span>
{' '}
{this.props.constraints.map(constraint => (
<ConstraintItem key={constraint}> {constraint} </ConstraintItem>
<ConstraintItem key={constraint}>{constraint}</ConstraintItem>
))}
</span>
);

View File

@ -335,7 +335,8 @@ describe('Utils', () => {
min: number | undefined = undefined,
max: number | undefined = undefined,
multipleOf: number | undefined = undefined,
) => ({ type: 'array', minItems: min, maxItems: max, multipleOf });
uniqueItems?: boolean,
) => ({ type: 'array', minItems: min, maxItems: max, multipleOf, uniqueItems });
it('should not have a humanized constraint without schema constraints', () => {
expect(humanizeConstraints(itemConstraintSchema())).toHaveLength(0);
@ -372,6 +373,12 @@ describe('Utils', () => {
'multiple of 0.5',
);
});
it('should have a humanized constraint when uniqueItems is set', () => {
expect(humanizeConstraints(itemConstraintSchema(undefined, undefined, undefined, true))).toContain(
'unique',
);
});
});
describe('OpenAPI pluralizeType', () => {

View File

@ -448,6 +448,10 @@ export function humanizeConstraints(schema: OpenAPISchema): string[] {
res.push(numberRange);
}
if (schema.uniqueItems) {
res.push('unique');
}
return res;
}