Created
October 11, 2018 10:47
-
-
Save anandof28/c94334b11c2eb1c2eb058c6a9f62a268 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import { render } from "react-dom"; | |
| import "bootstrap/dist/css/bootstrap.css"; | |
| /** | |
| * State | |
| * -> Another way to represent data in react | |
| * -> It is ment for biz logic | |
| * -> State is maintained, changed by a component itself | |
| * -> State is Changed by biz logic | |
| * -> Whenever teh state is changed, UI is repainted | |
| * | |
| * Biz Logic | |
| * -> It is function, Listener Function - Callback Function | |
| * -> It is Associated with "Event" | |
| * | |
| * How to represent state data? | |
| * React Component has instance variable called "state" | |
| * | |
| * Node: State Can be used only inside "Class" component only | |
| * Prop can be used inside class and also function | |
| */ | |
| class App extends React.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| comment : ["First Comment", "Second Comment", "Third Comment"], | |
| }; | |
| this.handleChange = this.handleChange.bind(this); | |
| this.handleSubmit = this.handleSubmit.bind(this); | |
| this.SelectedComment = this.SelectedComment.bind(this); | |
| } | |
| handleChange(event) { | |
| //console.log(this._inputElement.value); | |
| } | |
| handleSubmit(event) { | |
| if (this._inputElement.value !== "") { | |
| let entered_value = this._inputElement.value | |
| let data = this.state.comment; | |
| this.setState({ | |
| comment : data.concat(entered_value) | |
| }); | |
| this._inputElement.value = ""; | |
| } | |
| event.preventDefault(); | |
| } | |
| SelectedComment = (e) =>{ | |
| console.log(e.data) | |
| } | |
| render() { | |
| return ( | |
| <div className="container"> | |
| <h1>Your Valuable Comments</h1> | |
| <ul className="list-group"> | |
| { | |
| this.state.comment.map((item,index) => { | |
| return( | |
| <li className="list-group-item d-flex justify-content-between align-items-center" key={index}>{item} | |
| <span className="badge badge-danger">X</span> | |
| </li> | |
| ) | |
| }) | |
| } | |
| </ul> | |
| <hr/> | |
| <div> | |
| <h1>Provide Your Comments:</h1> | |
| <form onSubmit={this.handleSubmit} > | |
| <label >Comment:</label> | |
| <textarea className="form-control" ref={(a) => this._inputElement = a} onChange={this.handleChange} /><br/> | |
| <input className="btn btn-primary" type="submit" value="Submit You Comment" /> | |
| </form> | |
| </div> | |
| </div> | |
| ); | |
| } | |
| } | |
| render(<App />, document.getElementById("root")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment