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, "private": true,
"dependencies": { "dependencies": {
"@material-ui/core": "^3.1.0", "@material-ui/core": "^3.1.0",
"firebase": "^5.5.1",
"react": "^16.5.1", "react": "^16.5.1",
"react-dom": "^16.5.1", "react-dom": "^16.5.1",
"react-router": "^4.3.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 MenuItem from '@material-ui/core/MenuItem';
import TextField from '@material-ui/core/TextField'; import TextField from '@material-ui/core/TextField';
import Button from '@material-ui/core/Button'; import Button from '@material-ui/core/Button';
import firebase from '../firebase.js';
/** /**
* Styles that the different * Styles that the different
@ -116,9 +117,19 @@ const confidenceLevels = [
]; ];
/** /**
* The form compnent. * The form component.
*/ */
class ReportForm extends React.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. * State of form components.
*/ */
@ -126,7 +137,8 @@ class ReportForm extends React.Component {
date: formatDate(new Date()), date: formatDate(new Date()),
time: '00:00', time: '00:00',
type: 'visual', 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. * The render method for this component.
*/ */
@ -149,7 +188,7 @@ class ReportForm extends React.Component {
* The actual form. * The actual form.
*/ */
return ( return (
<form className={classes.container} autoComplete="off" method='GET'> <form className={classes.container} autoComplete="off" onSubmit={this.handleSubmit}>
<Grid container spacing={8}> <Grid container spacing={8}>
<Grid item xs={12} xl={2}> <Grid item xs={12} xl={2}>
<TextField <TextField
@ -243,8 +282,9 @@ class ReportForm extends React.Component {
multiline multiline
rows="5" rows="5"
placeholder="Describe the sighting to the best of your ability." placeholder="Describe the sighting to the best of your ability."
defaultValue="" value={this.state.desc}
className={classes.textField} className={classes.textField}
onChange={this.handleChange('desc')}
margin="normal" margin="normal"
variant="outlined" variant="outlined"
InputLabelProps={{ InputLabelProps={{

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;