Added FlameLink to Homepage.
This commit is contained in:
parent
035608a19b
commit
4fba3db3db
|
@ -1,7 +1,23 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component, Fragment } from 'react';
|
||||||
import Typography from '@material-ui/core/Typography';
|
import Typography from '@material-ui/core/Typography';
|
||||||
|
import FlameLinkComponentCreations from '../components/FlameLinkComponentCreations';
|
||||||
|
import flamelinkApp from '../flamelink.js';
|
||||||
|
|
||||||
class Home extends Component {
|
class Home extends Component {
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
|
||||||
|
global.schemaName = 'martenInfo';
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
schemaDetails: '',
|
||||||
|
}
|
||||||
|
|
||||||
|
flamelinkApp.schemas.getFields(global.schemaName, { fields: [ 'title', 'key', 'type', 'gridColumns', 'description', 'options' ] })
|
||||||
|
.then(result => this.setState({
|
||||||
|
schemaDetails: result
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
|
@ -9,6 +25,9 @@ class Home extends Component {
|
||||||
<Typography variant='display1' align='center' gutterBottom>
|
<Typography variant='display1' align='center' gutterBottom>
|
||||||
Home
|
Home
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Fragment>
|
||||||
|
<FlameLinkComponentCreations schemaDetails = {this.state.schemaDetails}/>
|
||||||
|
</Fragment>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue