Got the form to send data to Firebase. Still needs a toast or something to tell the user the data was sent.

This commit is contained in:
wildscotsmen 2018-09-23 19:37:35 -04:00
parent ed0a607560
commit c3f05ef67f
3 changed files with 60 additions and 5 deletions

View File

@ -4,6 +4,7 @@
"private": true,
"dependencies": {
"@material-ui/core": "^3.1.0",
"firebase": "^5.5.1",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-router": "^4.3.1",

View File

@ -5,6 +5,7 @@ import { withStyles } from '@material-ui/core/styles';
import MenuItem from '@material-ui/core/MenuItem';
import TextField from '@material-ui/core/TextField';
import Button from '@material-ui/core/Button';
import firebase from '../firebase.js';
/**
* Styles that the different
@ -116,9 +117,19 @@ const confidenceLevels = [
];
/**
* The form compnent.
* The form component.
*/
class ReportForm extends React.Component {
/**
* Component contructor. Currently
* only used to bind event
* handlers.
*/
constructor() {
super();
this.handleSubmit = this.handleSubmit.bind(this);
}
/**
* State of form components.
*/
@ -126,7 +137,8 @@ class ReportForm extends React.Component {
date: formatDate(new Date()),
time: '00:00',
type: 'visual',
confidence: '1'
confidence: '1',
desc: ''
};
/**
@ -139,6 +151,33 @@ class ReportForm extends React.Component {
});
};
/**
* Event listener for form.
* When the form is submitted,
* this function passes the
* data along to Firebase.
*/
handleSubmit(e) {
e.preventDefault();
const sightingsRef = firebase.database().ref('sightings');
const sighting = {
type: this.state.type,
confidence: this.state.confidence,
date: this.state.date,
time: this.state.time,
desc: this.state.desc
}
sightingsRef.push(sighting);
this.setState({
date: formatDate(new Date()),
time: '00:00',
type: 'visual',
confidence: '1',
desc: ''
});
};
/**
* The render method for this component.
*/
@ -149,7 +188,7 @@ class ReportForm extends React.Component {
* The actual form.
*/
return (
<form className={classes.container} autoComplete="off" method='GET'>
<form className={classes.container} autoComplete="off" onSubmit={this.handleSubmit}>
<Grid container spacing={8}>
<Grid item xs={12} xl={2}>
<TextField
@ -243,8 +282,9 @@ class ReportForm extends React.Component {
multiline
rows="5"
placeholder="Describe the sighting to the best of your ability."
defaultValue=""
value={this.state.desc}
className={classes.textField}
onChange={this.handleChange('desc')}
margin="normal"
variant="outlined"
InputLabelProps={{
@ -261,7 +301,7 @@ class ReportForm extends React.Component {
</Grid>
</form>
);
}
}
}
ReportForm.propTypes = {

14
src/firebase.js Normal file
View File

@ -0,0 +1,14 @@
import firebase from 'firebase/app';
import 'firebase/database';
const config = {
apiKey: "AIzaSyAYf9AbeYwLY892NRiQfn0AMtG9xIFAJbo",
authDomain: "marten-application.firebaseapp.com",
databaseURL: "https://marten-application.firebaseio.com",
projectId: "marten-application",
storageBucket: "marten-application.appspot.com",
messagingSenderId: "659856510832"
};
firebase.initializeApp(config);
export default firebase;