Pull data from IndexedDB into array and output it via ReactJS - javascript
My actual Javascript code is the following:
var schoolsData = new Array();
myDB.schools
.each(function(school) {
console.log('"' + school.title + '" wird auf den Array gepusht.');
schoolsData.push(new Array(school.title, schools.schoolnumber, school.address, school.principal, school.email, school.creationdate, school.lastupdate, school.comment));
});
var SchoolsRender = React.createClass({
render: function() {
return (
<tr>
{this.props.list.map(function(listValue){
return <td>{listValue}</td>;
})}
</tr>
)
}
});
ReactDOM.render(<SchoolsRender list={schoolsData} />, document.getElementById('schoolsDATA'));
As you can see I am trying to pull data from my local IndexedDB database (I am using dexieJS) and put it via ReactJS into a table element but nothing appears. Where is the point?
Edit: I think the problem is basically that I'm trying to output that 3D array. Is there any simple and elegant solution?
Add another component RowRender to render single row. Modify SchoolsRender component accordingly.
var RowRender = React.createClass({
render: function() {
return (
<tr>
<td>{this.props.title}</td>
<td>{this.props.schoolnumber}</td>
<td>{this.props.address}</td>
<td>{this.props.principal}</td>
</tr>
)
}
});
var SchoolsRender = React.createClass({
render: function() {
return (
<table>
{this.props.list.map(function(listValue,index){
return <RowRender key={index} title={listValue.title} schoolnumber={listValue.schoolnumber} address={listValue.address} title={listValue.address} />;
})}
</table>
)
}
});
Related
Alert is undefined and 'findUser' variable is undefined
I'm trying to have a JavaScript function return the username of a given user id based into my function. I'm experiencing something very strange tonight - my ReactJS.NET scripts crash, mysteriously only on this particular function (although I can put Javascript alerts in many other parts of my React script, but not all without throwing the same error). At first, I thought it could've been a binding issue - last time, when I tried binding a similar function in another JSX script, I found this happened because when I declared the function in the constructor of the parent React component with the name of the function slightly mispelled, it was happening all over the place. Now I can't figure out anything close to what's truly happening with this problem. Here's the function that crashes in particular, either when I try to read the value passed in, or try to call a Javascript alert inside: getUsername(UserId) { if (!UserId) { return; } else { var stringCheck = String(Object.values(UserId)); if (this.usersCollection.data.find(item => item.userId === stringCheck)) { var idx = this.usersCollection.data.findIndex(item => String(item.userId) == stringCheck); return this.usersCollection.data[idx].userName; } else { return "Nobody..."; } } } I seem to be binding it properly in the constructor of the parent component, so I'm not sure what's happening: class Queue extends React.Component { constructor(props) { super(props); this.state = { data: this.props.initialData, closedData: this.props.closedData, selectedData: this.props.initialData }; this.handleTicketSubmit = this.handleTicketSubmit.bind(this); this.toJavaScriptDate = this.toJavaScriptDate.bind(this); this.userState = { data: this.props.userData }; this.usersCollection = { data: this.props.userDB }; this.getUsername = this.getUsername.bind(this); this.serverMsg = { data: this.props.serverMsg }; this.srvMsgRst = { data: this.props.srvMsgRst }; this.showAllTickets = this.showAllTickets.bind(this); this.showMyTickets = this.showMyTickets.bind(this); this.checkServerMessage = this.checkServerMessage.bind(this); } Here's the render function from which the getUsername function is being passed to my TicketList component: render() { var anyClosedItems = this.state.closedData; return ( <div className="queue"> <button class="btn btn-info active" id="allTix" onClick={this.showAllTickets}>All Tasks</button> <button class="btn btn-info" id="myTix" onClick={this.showMyTickets}>My Tasks</button> <h1>Affirm Queue</h1> <TicketList data={this.state.selectedData} getTicket={this.props.navUrl} renderDate={this.toJavaScriptDate} checkUser={this.getUsername} /> <div id="noTixNotice" style={{display: 'none'}}><h3>There are no open tasks.</h3></div> <hr/> <h1>Closed Items</h1> {anyClosedItems.length == 0 ? <div><h3>There are currently no closed items today.</h3></div> : <TicketList data={this.state.closedData} getTicket={this.props.navUrl} renderDate={this.toJavaScriptDate} checkUser={this.getUsername} />} </div> ); } Finally, here's the ticketList component itself: class TicketList extends React.Component { render() { const ticketNodes = this.props.data.map(ticket => ( <TicketRow key={ticket.id} ticketLoad={this.props.getTicket+"/"+ticket.id}> <td>{ticket.summary}</td> <td> {ticket.description}</td><td>{this.props.renderDate({ value: ticket.currentApptTime })}</td><td>{this.props.checkUser({ UserId: ticket.userOwnerId })}</td> </TicketRow> )); const ticketRaw = this.props.data.map(ticket => ( <tr> <td>{ticket.summary}</td><td>{ticket.description}</td><td>{this.props.renderDate({ value: ticket.currentApptTime })}</td><td>{ticket.userOwnerId}</td> </tr> )); return ( <div className="ticketList"> <table id="affirmTable" className="table table-bordered table-hover table-striped"> <thead> <tr> <th>Summary</th><th>Description</th><th>Appt Time</th><th>Owner</th> </tr> </thead> <tbody> {ticketNodes} </tbody> </table> </div> ); } } I still think it's probably a problem with the JavaScript function for some weird reason, because as soon as I comment everything inside of getUsername, it's fine, but when I try to load the page with ANY code (JavaScript alert for instance), the page will crash with the "undefined" message: TypeError: Cannot read property 'find' of undefined Can someone let me know what could be going on here? I'm pretty stumped.
React.js Namespaced Components show nothing
In the official document React.js, there is a new feature:Namespaced Components from version 0.11. REF:http://facebook.github.io/react/docs/jsx-in-depth.html var Form = MyFormComponent; var App = ( <Form> <Form.Row> <Form.Label /> <Form.Input /> </Form.Row> </Form> ); var MyFormComponent = React.createClass({ ... }); MyFormComponent.Row = React.createClass({ ... }); MyFormComponent.Label = React.createClass({ ... }); MyFormComponent.Input = React.createClass({ ... }); So, I refer it and write following code to create a component var MysearchPage=React.createClass({ render:function(){ return ( <div> </div> ); } }); MysearchPage.Title=React.createClass({ render:function(){ return ( <h1>MysearchPage!</h1> ); } }); MysearchPage.Search= React.createClass({ render:function(){ return ( <div> {this.props.searchType}:<input type="text"/> <button>Search</button> </div> ); } }); var SearchPage=MysearchPage; var App=( <SearchPage> <SearchPage.Title /> <SearchPage.Search searchType="Content"/> </SearchPage> ); React.render( App, document.getElementById('nuno') ); Finally,there is no error message,but it show nothing and I cannot see result.I want to know why it show nothing and where is error. I guess "SearchPage.Title" node do not append to "SearchPage". Because I change code: var App=( <div> <SearchPage.Title /> <SearchPage.Search searchType="Content"/> </div> ); Perhaps, it can get result. So,I have another problem. var MysearchPage=React.createClass({ render:function(){ return ( <div> </div> ); } }); What is the difference between the above code and pure HTML tag ? Thank you!
The render function of Mysearchpage just returns an empty div, so you'll have to explicitly render all its component children: render:function(){ return ( <div> {this.props.children} </div> ); See https://facebook.github.io/react/docs/multiple-components.html
How do I handle complex objects in ReactJS?
I have the following ReactJS code : var data1 = {"Columns":["Title1","Title2","Title3"],"Rows":[{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]},{"CellText":["Cell0","Cell1","Cell2"]}]}; var GridRow = React.createClass({ render: function() { if(this.props.data){ } return ( <div>Text</div> ); } }); var GridList = React.createClass({ render: function() { if(this.props.data){ var Header = this.props.data.Columns.map(function (columns) { return ( <GridRow data={columns}> ); }); var Row = this.props.data.Rows.map(function (rows) { return ( <GridRow data={rows}> ); }); } return ( <ul> <li>{Header}</li> <li>{Row}</li> </ul> ); } }); var GridBox = React.createClass({ render: function(){ return ( <GridList data={data1} /> ); } }); I'm trying to pass the data1 variable to the GridList where it is split up to Columns (for header) and rows. The problem is that I get the following exception at runtime: In file "~/Scripts/Grid.jsx": Parse Error: Line 30: Unexpected token return (at line 30 column 6) Line: 52 Column:3 I'm running this from within Visual Studio 2013 with ReactJS. The stated Line nr and colum makes no sense Im trying to render a table based on metadata(columns) and row data from service.
You need to close tags either with a matching closing tag, or using self closing tags. // ERROR <GridRow data={rows}> // OK <GridRow data={rows}></GridRow> // Best <GridRow data={rows} /> The error message isn't very helpful. Also, when creating an array of nodes, it's good to give them keys. Rows.map(function(row, i){ return <GridRow data={rows} key={i} />; }); I played around with it some more, and the weirdness comes from JSX accepting anything between an opening tag and <, {, or } as raw text. If you did something like this: var GridList = React.createClass({ render: function() { if(this.props.data){ var Header = this.props.data.Columns.map(function (columns) { return ( <GridRow data={columns}> ); }); var Row = this.props.data.Rows.map(function (rows) </GridRow> )}); } return ( <ul> <li>{Header}</li> <li>{Row}</li> </ul> ); } }); It'll happily output this: var GridList = React.createClass({displayName: "GridList", render: function() { if(this.props.data){ var Header = this.props.data.Columns.map(function (columns) { return ( React.createElement(GridRow, {data: columns}, ");" + ' ' + "});" + ' ' + "var Row = this.props.data.Rows.map(function (rows) ") )}); } return ( React.createElement("ul", null, React.createElement("li", null, Header), React.createElement("li", null, Row) ) ); } }); It's completely content until it encounters the { after Rows.map(function (rows), which means "go back into JavaScript expression mode", and it encounters a return in an expression, which is invalid, so it bails, and gives the best error it can.
How to turn objects in to HTML
How do i get this : <li> <div class='myClass1'>myData1</div> <div class='myClass2'>myData2</div> <div class='myClass3'>myData3</div> <div class='myClass4'>myData4</div> </li> from this code var data1 = {"Columns":[{"Title":"Title1","HTMLClass":"g1_Title"},{"Title":"Title2","HTMLClass":"g2_Title"},{"Title":"Title3","HTMLClass":"g3_Title"}],"Rows":[{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]},{"Cells":["Cell0","Cell1","Cell2"]}]}; var GridRow = React.createClass({ render: function() { var data = [], columns; // puts all the data in to a better structure (ideally the props would have this structure or this manipulation would be done on onReceiveProps) if(this.props.columns){ for(var ii = 0; ii < this.props.columns.length; ii++){ data.push({ class: this.props.columns[i].HTMLClass, contents: this.props.Cell[i] }) } } // Its best to map JSX elements and not store them in arrays columns = data.map(function(col) { return <div className= + {col.class}> {col.contents} </div>; }); return ( <div> <li> {columns} </li> </div> ); } }); var GridHead = React.createClass({ render: function() { if(this.props.data){ var cell = this.props.data.Title; var htmlClass = this.props.data.HTMLClass; } return ( <div className={htmlClass}>{cell}</div> ); } }); var GridList = React.createClass({ render: function() { if(this.props.data){ var header = this.props.data.Columns.map(function (columns) { return ( <GridHead data={columns} /> ); }); var row = this.props.data.Rows.map(function (row, i) { return ( <GridRow columns={data1.Columns} cells={row.Cells} key={i} /> ); }); } return ( <ul> <li>{header}</li> {row} </ul> ); } }); var GridBox = React.createClass({ render: function(){ return ( <GridList data={data1} /> ); } }); The output right now is this In file "~/Scripts/Grid.jsx": Parse Error: Line 26: XJS value should be either an expression or a quoted XJS text (at line 26 column 35) Line: 52 Column:3
As your question initially asked was to do with just the GridRow component and nothing else I have not touched any other component. Your main problem was you were assigning className = + //something in your GridRow component which isn't the correct way to assign. There were other errors like missing div tags. Better GridRow When the component mounts a columndata variable is created and is populated with formatted data using formatData();. I do not recommend you do data formatting in this component (although it is doable). You should either format your data at a top level component and pass down formatted data or accept data in the correct structure. My GridRow component to this: var GridRow = React.createClass({ componentWillMount: function() { this.columndata = []; this.formatData(); }, formatData: function() { // Formats prop data into something manageable if (this.props.columns && this.props.cells) { for(var ii = 0; ii < this.props.columns.length; ii++){ this.columndata.push({ class: this.props.columns[ii].HTMLClass, contents: this.props.cells[ii] }) } this.forceUpdate(); // Forces a rerender } }, componentDidUpdate: function(prevProps, prevState) { // If this component receives the props late if (!prevProps.cells && !prevProps.columns) { this.formatData(); } }, render: function() { var columns; // Its best to map JSX elements and not store them in arrays columns = this.columndata.map(function(col) { return <div className={col.class}> {col.contents} </div>; }); return ( <div> <li> {columns} </li> </div> ); } }); I think it's important to note that you should avoid storing JSX elements in arrays. I think you were basically on the money, except you were missing classname and div tags.
React.js this.props.data.map() is not a function
I'm messing around with react and trying to parse and render a json object. Right now, I'm just setting it with a hard-coded object for testing and not getting it from an ajax call. <script type="text/jsx"> var Person = React.createClass({ render: function() { return ( <div> <p className="personName"></p> <p className="personSA1"></p> <p className="personSA2"></p> <p className="zip"></p> <p className="state"></p> <p className="country"></p> </div> ); } }); var PersonDiv = React.createClass({ render: function() { var personNodes = this.props.data.map(function(personData){ return ( <Person personName={personData.person.firstname} personSA1={personData.person.street1} personSA2={personData.person.street2} zip={personData.person.zip} state={personData.person.state} country={personData.person.country}> </Person> ) }); return ( <div> {personNodes} </div> ); } }); React.render( <PersonDiv data={data} />, document.getElementById('jsonData') ); I'm setting the data variable with <script> var data = "[" + '<%=data%>' + "]"; </script> The data object is one that I'm creating on the java side of a portlet. I know that the json is valid, because I can use JSON.parse(json) to parse and traverse the string, but I keep getting that map() is not a function.
It appears that your data is not a json object, it is a string. You probably need to run data = JSON.parse(data); to convert your data into an actual javascript object to be able to use it. An easy test for this would be to run <script> var data = "[" + '<%=data%>' + "]"; console.log(data); console.log(JSON.parse(data)); </script> You should notice the difference.
You are passing result of console.log as first parameter to React.render: React.render( console.log("inside render"), <PersonDiv data={data} />, document.getElementById('jsonData') ); It should be like: console.log("will render"); React.render( <PersonDiv data={data} />, document.getElementById('jsonData') );