Scope: PF4 mapper
Description
Validating is set to true
Schema
const asyncValidator = () => new Promise((res) => setTimeout(() => res(), 1000));
export const wizardSchema = {
fields: [
{
component: componentTypes.WIZARD,
name: 'wizzard',
crossroads: ['source.source-type'],
//inModal: true,
title: 'Title',
showTitles: true,
description: 'Description',
buttonsPosition: 'left',
fields: [
{
title: 'Get started with adding source',
name: 1,
nextStep: 'aws',
fields: [
{
component: componentTypes.TEXTAREA,
name: 'source.source-name',
type: 'text',
label: 'Source name',
validate: [asyncValidator]
}
]
},
{
title: 'Configure AWS',
name: 'aws',
nextStep: 'summary',
fields: [
{
component: componentTypes.TEXT_FIELD,
name: 'aws-field',
label: 'Aws field part',
validate: [
{
type: validatorTypes.REQUIRED
}
],
isRequired: true
}
]
},
{
fields: [
{
name: 'summary',
component: 'summary'
}
],
name: 'summary',
substepOf: 'Summary',
title: 'Summary'
}
]
}
]
};
cc @Hyperkid123
Scope: PF4 mapper
Description
Validating is set to true
Schema
cc @Hyperkid123