fix: skip non validate field

This commit is contained in:
Yanzhen Yu 2022-09-04 23:18:49 +08:00
parent 72c9dcf528
commit 4e4e835325
3 changed files with 17 additions and 4 deletions

View File

@ -52,6 +52,7 @@ export const UnmountImplWrapper = React.forwardRef<HTMLDivElement, ImplWrapperPr
* forever, it still need to teardown at the first time it rendered.
*/
if (!prevIsHidden || stateManager.initSet.has(c.id)) {
stateManager.initSet.delete(c.id);
delete stateManager.store[c.id];
}
}

View File

@ -309,6 +309,14 @@ export default implementRuntimeTrait({
const validatedResult = names
.map(name => {
const validator = validatorMap[name];
if (!validator) {
return {
name,
isInvalid: false,
errors: [],
};
}
const { value, rules } = validator;
const errors = rules
.map(rule => {

View File

@ -13,9 +13,15 @@ import { JSONSchema7Object } from 'json-schema';
export function initStateAndMethod(
registry: RegistryInterface,
stateManager: StateManagerInterface,
components: RuntimeComponentSchema[]
components: RuntimeComponentSchema[],
mark?: true
) {
components.forEach(c => initSingleComponentState(registry, stateManager, c));
components.forEach(c => {
initSingleComponentState(registry, stateManager, c);
if (mark) {
stateManager.initSet.add(c.id);
}
});
}
export function initSingleComponentState(
@ -27,8 +33,6 @@ export function initSingleComponentState(
return false;
}
stateManager.initSet.add(c.id);
let state = {};
c.traits.forEach(t => {
const tSpec = registry.getTrait(t.parsedType.version, t.parsedType.name).spec;