mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-04-06 21:40:23 +08:00
fix: skip non validate field
This commit is contained in:
parent
72c9dcf528
commit
4e4e835325
@ -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];
|
||||
}
|
||||
}
|
||||
|
@ -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 => {
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user