(subSchemas = [])
| 16 | } |
| 17 | |
| 18 | parseSubSchemas(subSchemas = []) { |
| 19 | const Components = []; |
| 20 | let index = 0; |
| 21 | Object.keys(subSchemas).forEach((key) => { |
| 22 | const subSchema = subSchemas[key]; |
| 23 | subSchema.key = typeof subSchema.key !== 'undefined' ? subSchema.key : index; |
| 24 | Components.push(this.parseSchema(subSchema)); |
| 25 | index += 1; |
| 26 | }); |
| 27 | return Components; |
| 28 | } |
| 29 | |
| 30 | createComponent(schema) { |
| 31 | // eslint-disable-next-line no-unused-vars |
no test coverage detected