Reordering the collection entries works now.
This commit is contained in:
parent
68c1c9bdac
commit
c76d1fbeb6
|
@ -6,7 +6,6 @@ class FlameLinkCollection extends Component {
|
|||
constructor() {
|
||||
super();
|
||||
|
||||
global.mediaID = '';
|
||||
|
||||
this.state = {
|
||||
schemaContent: '',
|
||||
|
@ -22,7 +21,7 @@ class FlameLinkCollection extends Component {
|
|||
var arr2 = [];
|
||||
var collectionInfo = [schemaData, this.state.schemaContent];
|
||||
for (var val in this.state.schemaContent){
|
||||
arr2.push(val);
|
||||
arr2[this.state.schemaContent[val]['order']] = val;
|
||||
}
|
||||
return arr2.map(this.getCollectionComponentInfo, collectionInfo);
|
||||
}
|
||||
|
@ -35,6 +34,17 @@ class FlameLinkCollection extends Component {
|
|||
return <FlameLinkCollectionComponentCreations schemaData={this[0]} schemaContent={this[1][num]} arr={arr3} key={num} />
|
||||
}
|
||||
|
||||
countProperties(obj) {
|
||||
var count = 0;
|
||||
|
||||
for(var prop in obj) {
|
||||
if(obj.hasOwnProperty(prop))
|
||||
++count;
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
render() {
|
||||
return(
|
||||
<div>
|
||||
|
|
|
@ -103,11 +103,6 @@ class FlameLinkCollectionStructure extends Component {
|
|||
return <FlameLinkFieldSet field={content[key]} field2={field.options}/>
|
||||
}
|
||||
}
|
||||
console.log('Content: ', content)
|
||||
console.log('Field: ', field)
|
||||
console.log('Key: ', key)
|
||||
console.log('Type: ', type)
|
||||
console.log('Description: ', description)
|
||||
}
|
||||
|
||||
render() {
|
||||
|
|
Loading…
Reference in New Issue