From 7d56318f997e37da8df5790a96594d15afdabec9 Mon Sep 17 00:00:00 2001 From: Renard Date: Sun, 15 Sep 2019 14:24:15 -0300 Subject: Formulario de respuesta arreglado --- src/ReplyForm.js | 66 +++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 46 insertions(+), 20 deletions(-) diff --git a/src/ReplyForm.js b/src/ReplyForm.js index cd45211..769e0a6 100644 --- a/src/ReplyForm.js +++ b/src/ReplyForm.js @@ -1,5 +1,5 @@ import React, { Component } from "react"; -import { Form, Segment, Button } from "semantic-ui-react"; +import { Form, Segment, Button, Message } from "semantic-ui-react"; class ReplyForm extends Component { constructor(props) { @@ -10,7 +10,8 @@ class ReplyForm extends Component { message: "", submittedName: "", submittedEmail: "", - submittedMessage: "" + submittedMessage: "", + replyRes: null } this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); @@ -22,41 +23,66 @@ class ReplyForm extends Component { } handleSubmit() { - const { name, email, message } = this.state + const { submittedName, submittedEmail, name, email, message } = this.state this.setState({ submittedName: name, submittedEmail: email, submittedMessage: message }) - const formData = { + const data = { board: this.props.dir, parent: this.props.parent, name: "", email: "", - fielda: name, - fieldb: email, + fielda: submittedName, + fieldb: submittedEmail, message: message, password: "bai-client" } - fetch('https://bienvenidoainternet.org/cgi/api/post', { - method: 'POST', - headers: { Accept: 'application/json', 'Content-Type': 'application/json' }, + + const formData = new FormData(); + for (var key in data) { + formData.append(key, data[key]); + } + + fetch("https://bienvenidoainternet.org/cgi/api/post", { + method: "POST", mode: "cors", - redirect: 'follow', - body: JSON.stringify(formData) + redirect: "follow", + body: formData } - ).then(response => { - console.log(response.json); - }); + ).then((response) => { + return response.json() + }).then((resource) => { + console.log(resource); + this.setState({ replyRes: resource }); + } + ); } render() { - const { name, email, message } = this.state; + const { name, email, message, replyRes } = this.state; + const quotes = ["Eres una buena persona.", "Y por invertir en felaciones.", "Fue un mensaje cachilupi.", "holiwi :3", "Hemos enviado a tu casa un ejército de prostitutas.", "Fue un mensaje de PURA CALIDAD.", "Ganaste frot gratis por una semana.", "Te besaría en la boca.", "Te invitaría a un café.", "ミト━━━━━━⊂( ゚ ヮ゚)⊃━━━━━━ン!!!!!", "Suenas como un bot muy desarrollado.", "¿Usaste TheSaurus para escribir tu post?", "(´・ω・`)", "Plataformas del futuro para la web 1.0.", "Gracias por utilizar Internet.", "Plataformas del pasado para la web 2.0.", "Elegiste bien. Elegiste calidad.", "Espero que no hayas abusado del sage.", "gRAciAs pOR Tu PAgA ;)", "Gracias por tu papiro."] return ( + { + replyRes !== null ? + replyRes.state === "success" ? + ( + Gracias por tu post + {quotes[Math.floor(Math.random() * quotes.length)]}
+ Nos tomó {replyRes.time_taken} segundos procesar tu mensaje. +
) : + ( + + {replyRes.state} + {replyRes.message} + + ) : null + }
- - - + + + - - + +
); -- cgit v1.2.1-18-gbd029