form.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import { withStyles } from '@material-ui/core/styles';
  4. import MenuItem from '@material-ui/core/MenuItem';
  5. import TextField from '@material-ui/core/TextField';
  6. import Select from '@material-ui/core/Select';
  7. import { Button } from '@material-ui/core'
  8. import { FormControl, Input, InputLabel, FormHelperText } from '@material-ui/core'
  9. import { black } from 'ansi-colors';
  10. const styles = theme => ({
  11. container: {
  12. display: 'inline',
  13. },
  14. textField: {
  15. marginLeft: theme.spacing.unit,
  16. marginRight: theme.spacing.unit,
  17. display: 'inline-block',
  18. width: 200
  19. },
  20. menu: {
  21. width: 200,
  22. },
  23. fullWidth: {
  24. width: '100%',
  25. textAlign: 'left'
  26. },
  27. blackText: {
  28. color: 'black'
  29. },
  30. floatLeft: {
  31. float: 'left',
  32. display: 'inline'
  33. }
  34. });
  35. const cats = [
  36. 'Cool Cat',
  37. 'Bad Kitty',
  38. 'King of the Jungle',
  39. 'Incel cat',
  40. 'C-ch-at-d',
  41. 'Sabretooth Bro',
  42. 'Higher order being',
  43. 'Decadent feline',
  44. 'Trapped in the litter box',
  45. 'All claw and no meow'
  46. ]
  47. const partyHosts = ['In-Young', 'Emmanuel']
  48. const MakeAttendees = (attendees) => {
  49. const items = []
  50. if (attendees) {
  51. for (let i = 0; i < attendees.length; i++) {
  52. items.push(<div style={{flex: 1}}key={i}>{i+1}. <div>Name: <span className='attendee-name'>{attendees[i].name}</span></div><div>Type: <span className='attendee-name'>{attendees[i].cat ? attendees[i].cat : 'Cat hater'}</span></div>{partyHosts.indexOf(attendees[i].name) < 0 && attendees[i].guest ? <div><span className='attendee-name'> ...with an extra guest!! ;)</span> </div> : '' }
  53. <br /><br /></div>)
  54. }
  55. }
  56. return (<div style={{display: 'block', color: 'black', fontSize: '50%', textAlign: 'left'}}>{items}</div>)
  57. }
  58. class TextFields extends React.Component {
  59. constructor (props) {
  60. super(props)
  61. this.state = {
  62. name: '',
  63. cat: '',
  64. significantOther: false,
  65. attendees: undefined
  66. }
  67. }
  68. async componentDidMount () {
  69. this.setState({
  70. attendees: MakeAttendees(await this.fetchAttendees())
  71. })
  72. }
  73. handleChange = name => event => {
  74. this.setState({
  75. [name]: event.target.value,
  76. });
  77. };
  78. handleFoodSelect = (event) => {
  79. this.setState({cat: event.target.value})
  80. }
  81. handleSignificantOther = () => {
  82. this.setState({significantOther: !this.state.significantOther})
  83. }
  84. Cats = () => {
  85. const items = []
  86. for (let i = 0; i < cats.length; i++) {
  87. items.push(<MenuItem key={i} value={cats[i]}>{cats[i]}</MenuItem>)
  88. }
  89. return items
  90. }
  91. submitForm = async () => {
  92. if (this.state.name && this.state.name.length > 0) {
  93. const body = JSON.stringify({
  94. name: this.state.name,
  95. cat: this.state.cat,
  96. guest: this.state.significantOther,
  97. })
  98. const response = await fetch('/attendee', {
  99. method: 'post',
  100. body: body,
  101. headers: new Headers({
  102. 'Content-Type': 'application/json'
  103. })
  104. })
  105. if (!response.error) {
  106. console.log('Success')
  107. this.setState({attendees: MakeAttendees(await this.fetchAttendees())})
  108. addHugeAssImage()
  109. }
  110. }
  111. }
  112. fetchAttendees = async () => {
  113. let attendees
  114. await fetch('/list', {
  115. method: 'get',
  116. }).then(data => {
  117. data.json().then(finalData => {
  118. attendees = finalData.attendees
  119. })
  120. })
  121. return attendees
  122. }
  123. updateAttendees = async () => {
  124. this.setState({ attendees: MakeAttendees(await this.fetchAttendees())})
  125. }
  126. render() {
  127. const { classes } = this.props;
  128. return (
  129. <div id='form-wrap'>
  130. <form className={classes.container} noValidate autoComplete="off">
  131. <div className='name-wrap' id='name-wrap' style={styles.fullWidth}>
  132. <InputLabel id='name-label' htmlFor="attendee-name">Name</InputLabel>
  133. <TextField
  134. id="attendee-name"
  135. label=""
  136. className={classes.textField}
  137. value={this.state.name}
  138. onChange={this.handleChange('name')}
  139. margin="normal"
  140. />
  141. </div>
  142. <FormControl className='food-select'>
  143. <InputLabel htmlFor="food-helper">What sort of cat are you?</InputLabel>
  144. <Select
  145. value={this.state.cat}
  146. onChange={this.handleFoodSelect}
  147. input={<Input name="food" id="food-helper" value={this.state.foodItem}/>}>
  148. <MenuItem value="">
  149. <em>The hell you talking about</em>
  150. </MenuItem>
  151. {this.Cats()}
  152. </Select>
  153. <FormHelperText>Calling all cats and jive turkeys</FormHelperText>
  154. </FormControl>
  155. <div style={styles.fullWidth}>
  156. <br />
  157. <InputLabel htmlFor="significant-other" style={{float: 'left'}}>Bringing someone?</InputLabel>
  158. <input
  159. id="significant-other"
  160. name="Significant Other"
  161. type="checkbox"
  162. className={classes.textField}
  163. style={{verticalAlign: 'top'}}
  164. checked={this.state.significantOther}
  165. onChange={this.handleSignificantOther} />
  166. </div>
  167. <br />
  168. <Button onClick={this.submitForm}> Click to Confirm Attendance </Button>
  169. <br />
  170. </form>
  171. <h5 style={{color: '#901a23', marginTop: '24px', marginBottom: '16px', padding: '4px'}}>Such lovely people, these:</h5>
  172. {this.state.attendees}
  173. </div>
  174. );
  175. }
  176. }
  177. function addHugeAssImage() {
  178. setTimeout(() => {
  179. const image = document.createElement('img')
  180. image.id ='hugeAssImage'
  181. image.src = require('./santa-sack.jpg')
  182. document.getElementById('form-wrap').appendChild(image)
  183. }, 1200)
  184. }
  185. TextFields.propTypes = {
  186. classes: PropTypes.object.isRequired,
  187. };
  188. export default withStyles(styles)(TextFields);