Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | 26x 26x 26x 26x 26x 26x 104x 104x | // @flow
import forEach from 'lodash/forEach';
import type {Field, Types} from './types';
import { createField } from './utils';
import NullField from './nullField';
export default class CompositeField implements Field {
rootSchema: any;
childFields: any;
key: string;
type: Types;
constructor({type, rootSchema, childFields, key}: {type: Types, rootSchema: any, childFields: any, key: string}) {
this.key = key;
this.type = type;
this.rootSchema = rootSchema;
this.childFields = childFields;
}
getKey() {
return this.key;
}
exists() {
return true;
}
getType() {
return this.type;
}
getChild(fieldName: string) {
if (!this.childFields || !this.childFields[fieldName]) {
return new NullField({key: fieldName});
}
const field = createField(fieldName, this.rootSchema, this.childFields[fieldName]);
return field;
}
forEach(visitor: Function) {
Iif (!this.childFields) {
return;
}
forEach(this.childFields, (item, key) => {
const field = createField(key, this.rootSchema, this.childFields[key]);
visitor(field);
});
}
}
|