From e78afcec464541ff852d738fe36fcd3e858cce2e Mon Sep 17 00:00:00 2001 From: SelamawitA Date: Mon, 11 Jun 2018 16:31:32 -0700 Subject: [PATCH 1/5] built and tested Card component, renders as expected. --- src/App.js | 3 ++- src/components/Card.js | 11 +++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/App.js b/src/App.js index c4854e15..7ff28041 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import './App.css'; import Board from './components/Board'; - +import Card from './components/Card'; class App extends Component { render() { return ( @@ -13,6 +13,7 @@ class App extends Component { url="https://inspiration-board.herokuapp.com/boards/" boardName={`Ada-Lovelace`} /> + ); } diff --git a/src/components/Card.js b/src/components/Card.js index 6788cc03..38db18c9 100644 --- a/src/components/Card.js +++ b/src/components/Card.js @@ -1,21 +1,28 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import emoji from 'emoji-dictionary'; +import tempData from '../data/card-data.json'; import './Card.css'; +function convertToemoji(anEmoji){ + return emoji.getUnicode(anEmoji) +} + class Card extends Component { render() { return (
- Card +

{this.props.text}

+

{convertToemoji(this.props.emoji)}

) } } Card.propTypes = { - + text:PropTypes.string.isRequired, + emoji:PropTypes.string.isRequired, }; export default Card; From 143097e25ff9b220af6dd08b5ad1f7472df17fda Mon Sep 17 00:00:00 2001 From: SelamawitA Date: Wed, 13 Jun 2018 21:09:48 -0700 Subject: [PATCH 2/5] added ability for user to delete a card --- src/components/Board.js | 58 ++++++++++++++++++++++++++++++++++++----- src/components/Card.js | 24 +++++++++++++---- 2 files changed, 71 insertions(+), 11 deletions(-) diff --git a/src/components/Board.js b/src/components/Board.js index 9222fd88..adc9103f 100644 --- a/src/components/Board.js +++ b/src/components/Board.js @@ -10,24 +10,70 @@ import CARD_DATA from '../data/card-data.json'; class Board extends Component { constructor() { super(); - this.state = { cards: [], }; } + deleteMessage = (messageID) => { + axios.delete(`https://inspiration-board.herokuapp.com/boards/sainalem/cards/${messageID}`) + .then((response) => { + let counter = 0 + this.state.cards.forEach((aCard) => { + if (aCard.card.id === messageID){ + this.state.cards.splice(counter,1) + this.setState({ + cards:this.state.cards + }) + } + counter = counter + 1; + }); + }) + .catch((error) => { + this.setsState({ + error: error.message + }) + }); + } + componentDidMount = () => { + console.log('Component did mount'); + axios.get('https://inspiration-board.herokuapp.com/boards/sainalem/cards') + .then((response) => { + this.setState({ + cards:response.data + }) + }) + .catch((error) => { + this.setState({ + error: error.message + }) + }); + } + + renderCommentList = () => { + const componentList = this.state.cards.map((card,index) => { + + return ( + + ); + }); + return componentList +} render() { return ( -
- Board +
+ {this.renderCommentList()}
) } } -Board.propTypes = { - -}; export default Board; diff --git a/src/components/Card.js b/src/components/Card.js index 38db18c9..c200dff3 100644 --- a/src/components/Card.js +++ b/src/components/Card.js @@ -1,20 +1,33 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import emoji from 'emoji-dictionary'; -import tempData from '../data/card-data.json'; + import './Card.css'; function convertToemoji(anEmoji){ - return emoji.getUnicode(anEmoji) + if (anEmoji != null){ + return emoji.getUnicode(anEmoji) + } } + + class Card extends Component { + findID = () => { + console.log(this.props.id) + console.log('hello') + this.props.deleteCard(this.props.id) + } + render() { return (
-

{this.props.text}

-

{convertToemoji(this.props.emoji)}

+
+ +

{this.props.text}

+

{convertToemoji(this.props.emoji)}

+
) } @@ -22,7 +35,8 @@ class Card extends Component { Card.propTypes = { text:PropTypes.string.isRequired, - emoji:PropTypes.string.isRequired, + emoji:PropTypes.string, + id:PropTypes.number, }; export default Card; From 2ebcfe8225b63ce15aaa9a429d9ff9a3eb92ee3b Mon Sep 17 00:00:00 2001 From: SelamawitA Date: Thu, 14 Jun 2018 15:07:45 -0700 Subject: [PATCH 3/5] added a drop down of emojis --- src/components/Board.js | 29 ++++++++++++- src/components/Card.js | 3 +- src/components/NewCardForm.js | 77 +++++++++++++++++++++++++++++++++++ 3 files changed, 105 insertions(+), 4 deletions(-) diff --git a/src/components/Board.js b/src/components/Board.js index adc9103f..fb6aeb9f 100644 --- a/src/components/Board.js +++ b/src/components/Board.js @@ -14,9 +14,33 @@ class Board extends Component { cards: [], }; } + + addCard = (aCard) => { + const cards = this.state.cards; + let newCardID = cards.length + 1; + axios.post('https://inspiration-board.herokuapp.com/boards/sainalem/cards',aCard) + .then(() => { + cards.push({card:{id:newCardID, text:aCard.text, emoji:aCard.emoji}}) + console.log(cards) + this.setState({ + cards, + message: 'New card has been added' + }); + }) + .catch((error) => { + // cards.push(card) + // console.log(cards) + // console.log(error) + // this.setState({ + // message:error.message, + // }); + }); + + } + deleteMessage = (messageID) => { axios.delete(`https://inspiration-board.herokuapp.com/boards/sainalem/cards/${messageID}`) - .then((response) => { + .then(() => { let counter = 0 this.state.cards.forEach((aCard) => { if (aCard.card.id === messageID){ @@ -29,7 +53,7 @@ class Board extends Component { }); }) .catch((error) => { - this.setsState({ + this.setState({ error: error.message }) }); @@ -68,6 +92,7 @@ class Board extends Component { render() { return (
+ {this.renderCommentList()}
) diff --git a/src/components/Card.js b/src/components/Card.js index c200dff3..a1504e3d 100644 --- a/src/components/Card.js +++ b/src/components/Card.js @@ -12,7 +12,6 @@ function convertToemoji(anEmoji){ } - class Card extends Component { findID = () => { console.log(this.props.id) @@ -24,7 +23,7 @@ class Card extends Component { return (
- +

{this.props.text}

{convertToemoji(this.props.emoji)}

diff --git a/src/components/NewCardForm.js b/src/components/NewCardForm.js index 47331423..c4bddd87 100644 --- a/src/components/NewCardForm.js +++ b/src/components/NewCardForm.js @@ -1,6 +1,83 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; +import Card from './Card.js' import emoji from 'emoji-dictionary'; import './NewCardForm.css'; const EMOJI_LIST = ["", "heart_eyes", "beer", "clap", "sparkling_heart", "heart_eyes_cat", "dog"] + + +class NewCardForm extends Component { + constructor(){ + super(); + this.state ={ + text: '', + emoji: '' + }; + } + + + populateDropdown = () =>{ + const popItems = EMOJI_LIST.map((anEmoji) =>{ + return( + + ) + }) + return popItems + } + + onFieldChange = (event) =>{ + const fieldName = event.target.name; + const fieldValue = event.target.value; + const updateState = {}; + updateState[fieldName] = fieldValue; + this.setState(updateState); + } + + clearForm = () => { + this.setState({ + text: '', + emoji: '', + id: 0, + }); +} + + +onFormSubmit = (event) => { + event.preventDefault(); + this.props.addCardcallBack(this.state) + + this.clearForm(); +} + + + render(){ + return( +
+
+ + +
+
+ +
+ +
+ ) + } + + + +} + +NewCardForm.propTypes = { + addCardcallBack: PropTypes.func.isRequired, +} +export default NewCardForm; From 8dfb17fb98ebfef8e6d4096bf7efed73d2e31aba Mon Sep 17 00:00:00 2001 From: SelamawitA Date: Sun, 17 Jun 2018 22:03:24 -0700 Subject: [PATCH 4/5] snapshots for Board,Card,and CardForm are passing. --- src/App.test.js | 1 - src/components/Board.js | 19 +- src/components/Board.test.js | 33 + src/components/Card.js | 2 - src/components/Card.test.js | 35 + src/components/NewCardForm.js | 7 +- src/components/NewCardForm.test.js | 21 + .../__snapshots__/Board.test.js.snap | 16053 ++++++++++++++++ .../__snapshots__/Card.test.js.snap | 2553 +++ .../__snapshots__/NewCardForm.test.js.snap | 4563 +++++ src/components/setupTests.js | 5 + 11 files changed, 23273 insertions(+), 19 deletions(-) create mode 100644 src/components/Card.test.js create mode 100644 src/components/__snapshots__/Board.test.js.snap create mode 100644 src/components/__snapshots__/Card.test.js.snap create mode 100644 src/components/__snapshots__/NewCardForm.test.js.snap create mode 100644 src/components/setupTests.js diff --git a/src/App.test.js b/src/App.test.js index 5a29f6cb..806b909a 100644 --- a/src/App.test.js +++ b/src/App.test.js @@ -1,6 +1,5 @@ import React from 'react'; import ReactDOM from 'react-dom'; -import { shallow } from 'enzyme'; import App from './App'; describe('App', () => { diff --git a/src/components/Board.js b/src/components/Board.js index fb6aeb9f..1c03b24c 100644 --- a/src/components/Board.js +++ b/src/components/Board.js @@ -17,28 +17,25 @@ class Board extends Component { addCard = (aCard) => { const cards = this.state.cards; - let newCardID = cards.length + 1; axios.post('https://inspiration-board.herokuapp.com/boards/sainalem/cards',aCard) - .then(() => { - cards.push({card:{id:newCardID, text:aCard.text, emoji:aCard.emoji}}) - console.log(cards) + .then((response) => { + cards.push(response.data) this.setState({ cards, message: 'New card has been added' }); }) .catch((error) => { - // cards.push(card) - // console.log(cards) - // console.log(error) - // this.setState({ - // message:error.message, - // }); + console.log(error) + this.setState({ + message:error.message, + }); }); } deleteMessage = (messageID) => { + console.log(this.state.cards) axios.delete(`https://inspiration-board.herokuapp.com/boards/sainalem/cards/${messageID}`) .then(() => { let counter = 0 @@ -53,6 +50,7 @@ class Board extends Component { }); }) .catch((error) => { + console.log(messageID) this.setState({ error: error.message }) @@ -86,6 +84,7 @@ class Board extends Component { /> ); }); + return componentList } diff --git a/src/components/Board.test.js b/src/components/Board.test.js index e69de29b..9a4f2de5 100644 --- a/src/components/Board.test.js +++ b/src/components/Board.test.js @@ -0,0 +1,33 @@ +import React from 'react'; +import Board from './Board'; +import { mount , shallow} from 'enzyme'; + + +describe('Board', () => { + test('that it matches an existing snapshot', () => { + // First Mount the Component in the testing DOM + // Arrange + + const wrapper = mount( ) + + // Assert that it looks like the last snapshot + expect(wrapper).toMatchSnapshot(); + + // Remove the component from the DOM (save memory and prevent side effects). + wrapper.unmount(); + }); + + test('shallow mount', ()=> { + const cards = shallow( + + ); + expect(cards).toMatchSnapshot(); + }) + +}); diff --git a/src/components/Card.js b/src/components/Card.js index a1504e3d..33320e58 100644 --- a/src/components/Card.js +++ b/src/components/Card.js @@ -14,8 +14,6 @@ function convertToemoji(anEmoji){ class Card extends Component { findID = () => { - console.log(this.props.id) - console.log('hello') this.props.deleteCard(this.props.id) } diff --git a/src/components/Card.test.js b/src/components/Card.test.js new file mode 100644 index 00000000..9c0c2bd0 --- /dev/null +++ b/src/components/Card.test.js @@ -0,0 +1,35 @@ +import React from 'react'; +import Card from './Card'; +import { mount , shallow} from 'enzyme'; + + +describe('Card', () => { + test('that it matches an existing snapshot', () => { + + const wrapper = mount( {} } + id={1} + />) + + // Assert that it looks like the last snapshot + expect(wrapper).toMatchSnapshot(); + + // Remove the component from the DOM (save memory and prevent side effects). + wrapper.unmount(); + }); + + test('shallow mount', ()=> { + const aCard = shallow( + {} } + id={1} + /> + ); + expect(aCard).toMatchSnapshot(); + }) + +}); diff --git a/src/components/NewCardForm.js b/src/components/NewCardForm.js index c4bddd87..e43f4213 100644 --- a/src/components/NewCardForm.js +++ b/src/components/NewCardForm.js @@ -16,8 +16,7 @@ class NewCardForm extends Component { }; } - - populateDropdown = () =>{ +populateDropdown = () =>{ const popItems = EMOJI_LIST.map((anEmoji) =>{ return( @@ -38,7 +37,6 @@ class NewCardForm extends Component { this.setState({ text: '', emoji: '', - id: 0, }); } @@ -46,7 +44,6 @@ class NewCardForm extends Component { onFormSubmit = (event) => { event.preventDefault(); this.props.addCardcallBack(this.state) - this.clearForm(); } @@ -73,8 +70,6 @@ onFormSubmit = (event) => { ) } - - } NewCardForm.propTypes = { diff --git a/src/components/NewCardForm.test.js b/src/components/NewCardForm.test.js index e69de29b..e50d37df 100644 --- a/src/components/NewCardForm.test.js +++ b/src/components/NewCardForm.test.js @@ -0,0 +1,21 @@ +import React from 'react'; +import NewCardForm from './NewCardForm'; +import { mount} from 'enzyme'; + + +describe('NewCardForm', () => { + test('that it matches an existing snapshot', () => { + // First Mount the Component in the testing DOM + // Arrange + const wrapper = mount( {} } />); + + + // Assert that it looks like the last snapshot + expect(wrapper).toMatchSnapshot(); + + // Remove the component from the DOM (save memory and prevent side effects). + wrapper.unmount(); + }); + + +}); diff --git a/src/components/__snapshots__/Board.test.js.snap b/src/components/__snapshots__/Board.test.js.snap new file mode 100644 index 00000000..47df2b3c --- /dev/null +++ b/src/components/__snapshots__/Board.test.js.snap @@ -0,0 +1,16053 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Board shallow mount 1`] = ` +ShallowWrapper { + "length": 1, + Symbol(enzyme.__root__): [Circular], + Symbol(enzyme.__unrendered__): , + Symbol(enzyme.__renderer__): Object { + "batchedUpdates": [Function], + "getNode": [Function], + "render": [Function], + "simulateEvent": [Function], + "unmount": [Function], + }, + Symbol(enzyme.__node__): Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": null, + "type": [Function], + }, + ], + "type": "div", + }, + Symbol(enzyme.__nodes__): Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": null, + "type": [Function], + }, + ], + "type": "div", + }, + ], + Symbol(enzyme.__options__): Object { + "adapter": ReactSixteenAdapter { + "options": Object { + "enableComponentDidUpdateOnSetState": true, + }, + }, + }, +} +`; + +exports[`Board that it matches an existing snapshot 1`] = ` +ReactWrapper { + "length": 1, + Symbol(enzyme.__unrendered__): , + Symbol(enzyme.__renderer__): Object { + "batchedUpdates": [Function], + "getNode": [Function], + "render": [Function], + "simulateEvent": [Function], + "unmount": [Function], + }, + Symbol(enzyme.__root__): [Circular], + Symbol(enzyme.__node__): Object { + "instance": Board { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 54, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 55, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 14, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 56, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 11, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 15, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 20, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 21, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 22, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": , + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": , + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, + }, + "stateNode": NewCardForm { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "rendered": Object { + "instance":
+
+
+ + +
+
+ +
+ +
+
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": NewCardForm { + "_reactInternalFiber": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": [Circular], + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 54, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 55, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 14, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 56, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 11, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 15, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 20, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 21, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 22, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": , + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": , + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": [Circular], + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": [Circular], + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, + }, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": Object { + "instance":
+
+ + +
+
+ +
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ + +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "rendered": Array [ + "Text: ", + ], + "type": "label", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "div", + }, + Object { + "instance":
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": , + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": "heart_eyes", + "nodeType": "host", + "props": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "option", + }, + Object { + "instance": , + "key": "beer", + "nodeType": "host", + "props": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "rendered": Array [ + "🍺", + ], + "type": "option", + }, + Object { + "instance": , + "key": "clap", + "nodeType": "host", + "props": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "rendered": Array [ + "👏", + ], + "type": "option", + }, + Object { + "instance": , + "key": "sparkling_heart", + "nodeType": "host", + "props": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "rendered": Array [ + "💖", + ], + "type": "option", + }, + Object { + "instance": , + "key": "heart_eyes_cat", + "nodeType": "host", + "props": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "rendered": Array [ + "😻", + ], + "type": "option", + }, + Object { + "instance": , + "key": "dog", + "nodeType": "host", + "props": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "rendered": Array [ + "🐶", + ], + "type": "option", + }, + ], + "type": "select", + }, + ], + "type": "div", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "form", + }, + "type": [Function], + }, + null, + ], + "type": "div", + }, + "type": [Function], + }, + Symbol(enzyme.__nodes__): Array [ + Object { + "instance": Board { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 54, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 55, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 14, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 56, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 11, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 15, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 20, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 21, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 22, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": , + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": , + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, + }, + "stateNode": NewCardForm { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "rendered": Object { + "instance":
+
+
+ + +
+
+ +
+ +
+
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": NewCardForm { + "_reactInternalFiber": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": [Circular], + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 54, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 55, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 14, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 56, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 11, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 15, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 20, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 21, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 22, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": , + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": , + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": [Circular], + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": [Circular], + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+
+ + +
+
+ +
+ +
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+
+ + +
+
+ +
+ +
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, + }, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": Object { + "instance":
+
+ + +
+
+ +
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ + +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "rendered": Array [ + "Text: ", + ], + "type": "label", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "div", + }, + Object { + "instance":
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": , + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": "heart_eyes", + "nodeType": "host", + "props": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "option", + }, + Object { + "instance": , + "key": "beer", + "nodeType": "host", + "props": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "rendered": Array [ + "🍺", + ], + "type": "option", + }, + Object { + "instance": , + "key": "clap", + "nodeType": "host", + "props": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "rendered": Array [ + "👏", + ], + "type": "option", + }, + Object { + "instance": , + "key": "sparkling_heart", + "nodeType": "host", + "props": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "rendered": Array [ + "💖", + ], + "type": "option", + }, + Object { + "instance": , + "key": "heart_eyes_cat", + "nodeType": "host", + "props": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "rendered": Array [ + "😻", + ], + "type": "option", + }, + Object { + "instance": , + "key": "dog", + "nodeType": "host", + "props": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "rendered": Array [ + "🐶", + ], + "type": "option", + }, + ], + "type": "select", + }, + ], + "type": "div", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "form", + }, + "type": [Function], + }, + null, + ], + "type": "div", + }, + "type": [Function], + }, + ], + Symbol(enzyme.__options__): Object { + "adapter": ReactSixteenAdapter { + "options": Object { + "enableComponentDidUpdateOnSetState": true, + }, + }, + }, +} +`; diff --git a/src/components/__snapshots__/Card.test.js.snap b/src/components/__snapshots__/Card.test.js.snap new file mode 100644 index 00000000..3454d3a1 --- /dev/null +++ b/src/components/__snapshots__/Card.test.js.snap @@ -0,0 +1,2553 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Card shallow mount 1`] = ` +ShallowWrapper { + "length": 1, + Symbol(enzyme.__root__): [Circular], + Symbol(enzyme.__unrendered__): , + Symbol(enzyme.__renderer__): Object { + "batchedUpdates": [Function], + "getNode": [Function], + "render": [Function], + "simulateEvent": [Function], + "unmount": [Function], + }, + Symbol(enzyme.__node__): Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "ref": null, + "rendered": Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "ref": null, + "rendered": "x", + "type": "button", + }, + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "ref": null, + "rendered": "hey, friend", + "type": "p", + }, + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "ref": null, + "rendered": "😍", + "type": "p", + }, + ], + "type": "section", + }, + "type": "div", + }, + Symbol(enzyme.__nodes__): Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "ref": null, + "rendered": Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "ref": null, + "rendered": "x", + "type": "button", + }, + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "ref": null, + "rendered": "hey, friend", + "type": "p", + }, + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "ref": null, + "rendered": "😍", + "type": "p", + }, + ], + "type": "section", + }, + "type": "div", + }, + ], + Symbol(enzyme.__options__): Object { + "adapter": ReactSixteenAdapter { + "options": Object { + "enableComponentDidUpdateOnSetState": true, + }, + }, + }, +} +`; + +exports[`Card that it matches an existing snapshot 1`] = ` +ReactWrapper { + "length": 1, + Symbol(enzyme.__unrendered__): , + Symbol(enzyme.__renderer__): Object { + "batchedUpdates": [Function], + "getNode": [Function], + "render": [Function], + "simulateEvent": [Function], + "unmount": [Function], + }, + Symbol(enzyme.__root__): [Circular], + Symbol(enzyme.__node__): Object { + "instance": Card { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 22, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 23, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 24, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 25, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 26, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":

+ 😍 +

, + "tag": 5, + "treeBaseTime": 0, + "type": "p", + "updateQueue": null, + }, + "stateNode":

+ hey, friend +

, + "tag": 5, + "treeBaseTime": 0, + "type": "p", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "button", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "tag": 5, + "treeBaseTime": 0, + "type": "section", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "context": Object {}, + "findID": [Function], + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "refs": Object {}, + "state": null, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "ref": null, + "rendered": Object { + "instance":
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "ref": null, + "rendered": Array [ + "x", + ], + "type": "button", + }, + Object { + "instance":

+ hey, friend +

, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "ref": null, + "rendered": Array [ + "hey, friend", + ], + "type": "p", + }, + Object { + "instance":

+ 😍 +

, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "p", + }, + ], + "type": "section", + }, + ], + "type": "div", + }, + "type": [Function], + }, + Symbol(enzyme.__nodes__): Array [ + Object { + "instance": Card { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 22, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 23, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 24, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 25, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Card.js", + "lineNumber": 26, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":

+ 😍 +

, + "tag": 5, + "treeBaseTime": 0, + "type": "p", + "updateQueue": null, + }, + "stateNode":

+ hey, friend +

, + "tag": 5, + "treeBaseTime": 0, + "type": "p", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "button", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "tag": 5, + "treeBaseTime": 0, + "type": "section", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "context": Object {}, + "findID": [Function], + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "refs": Object {}, + "state": null, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "deleteCard": [Function], + "emoji": "heart_eyes", + "id": 1, + "text": "hey, friend", + }, + "ref": null, + "rendered": Object { + "instance":
+
+ +

+ hey, friend +

+

+ 😍 +

+
+
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "className": "card", + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ +

+ hey, friend +

+

+ 😍 +

+
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , +

+ hey, friend +

, +

+ 😍 +

, + ], + "className": "card__content", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "x", + "className": "card__delete", + "onClick": [Function], + }, + "ref": null, + "rendered": Array [ + "x", + ], + "type": "button", + }, + Object { + "instance":

+ hey, friend +

, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "hey, friend", + "className": "card__content-text", + }, + "ref": null, + "rendered": Array [ + "hey, friend", + ], + "type": "p", + }, + Object { + "instance":

+ 😍 +

, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "😍", + "className": "card__content-emoji", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "p", + }, + ], + "type": "section", + }, + ], + "type": "div", + }, + "type": [Function], + }, + ], + Symbol(enzyme.__options__): Object { + "adapter": ReactSixteenAdapter { + "options": Object { + "enableComponentDidUpdateOnSetState": true, + }, + }, + }, +} +`; diff --git a/src/components/__snapshots__/NewCardForm.test.js.snap b/src/components/__snapshots__/NewCardForm.test.js.snap new file mode 100644 index 00000000..08b6f224 --- /dev/null +++ b/src/components/__snapshots__/NewCardForm.test.js.snap @@ -0,0 +1,4563 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`NewCardForm that it matches an existing snapshot 1`] = ` +ReactWrapper { + "length": 1, + Symbol(enzyme.__unrendered__): , + Symbol(enzyme.__renderer__): Object { + "batchedUpdates": [Function], + "getNode": [Function], + "render": [Function], + "simulateEvent": [Function], + "unmount": [Function], + }, + Symbol(enzyme.__root__): [Circular], + Symbol(enzyme.__node__): Object { + "instance": NewCardForm { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 54, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 55, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 11, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 56, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 14, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 15, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": , + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": , + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": Object { + "instance":
+
+ + +
+
+ +
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ + +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "rendered": Array [ + "Text: ", + ], + "type": "label", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "div", + }, + Object { + "instance":
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": , + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": "heart_eyes", + "nodeType": "host", + "props": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "option", + }, + Object { + "instance": , + "key": "beer", + "nodeType": "host", + "props": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "rendered": Array [ + "🍺", + ], + "type": "option", + }, + Object { + "instance": , + "key": "clap", + "nodeType": "host", + "props": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "rendered": Array [ + "👏", + ], + "type": "option", + }, + Object { + "instance": , + "key": "sparkling_heart", + "nodeType": "host", + "props": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "rendered": Array [ + "💖", + ], + "type": "option", + }, + Object { + "instance": , + "key": "heart_eyes_cat", + "nodeType": "host", + "props": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "rendered": Array [ + "😻", + ], + "type": "option", + }, + Object { + "instance": , + "key": "dog", + "nodeType": "host", + "props": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "rendered": Array [ + "🐶", + ], + "type": "option", + }, + ], + "type": "select", + }, + ], + "type": "div", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "form", + }, + "type": [Function], + }, + Symbol(enzyme.__nodes__): Array [ + Object { + "instance": NewCardForm { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 54, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 55, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 11, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 56, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 8, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 14, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 15, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": , + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": , + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+
+ + +
+
+ +
+ +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "addCardcallBack": [Function], + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": Object { + "instance":
+
+ + +
+
+ +
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ + +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + ], + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "Text: ", + "htmlFor": "text", + }, + "ref": null, + "rendered": Array [ + "Text: ", + ], + "type": "label", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "div", + }, + Object { + "instance":
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": , + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": "heart_eyes", + "nodeType": "host", + "props": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "option", + }, + Object { + "instance": , + "key": "beer", + "nodeType": "host", + "props": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "rendered": Array [ + "🍺", + ], + "type": "option", + }, + Object { + "instance": , + "key": "clap", + "nodeType": "host", + "props": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "rendered": Array [ + "👏", + ], + "type": "option", + }, + Object { + "instance": , + "key": "sparkling_heart", + "nodeType": "host", + "props": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "rendered": Array [ + "💖", + ], + "type": "option", + }, + Object { + "instance": , + "key": "heart_eyes_cat", + "nodeType": "host", + "props": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "rendered": Array [ + "😻", + ], + "type": "option", + }, + Object { + "instance": , + "key": "dog", + "nodeType": "host", + "props": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "rendered": Array [ + "🐶", + ], + "type": "option", + }, + ], + "type": "select", + }, + ], + "type": "div", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "form", + }, + "type": [Function], + }, + ], + Symbol(enzyme.__options__): Object { + "adapter": ReactSixteenAdapter { + "options": Object { + "enableComponentDidUpdateOnSetState": true, + }, + }, + }, +} +`; diff --git a/src/components/setupTests.js b/src/components/setupTests.js new file mode 100644 index 00000000..338521da --- /dev/null +++ b/src/components/setupTests.js @@ -0,0 +1,5 @@ +// src/setupTests.js +import { configure } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; + +configure({ adapter: new Adapter() }); From 044c80ffd9680749f992b0cfba8b4234706b433b Mon Sep 17 00:00:00 2001 From: SelamawitA Date: Sun, 17 Jun 2018 23:15:59 -0700 Subject: [PATCH 5/5] updated tests --- src/components/Board.js | 1 + src/components/NewCardForm.js | 8 +- .../__snapshots__/Board.test.js.snap | 15858 ++++++++++------ .../__snapshots__/Card.test.js.snap | 2553 --- .../__snapshots__/NewCardForm.test.js.snap | 264 +- 5 files changed, 10397 insertions(+), 8287 deletions(-) delete mode 100644 src/components/__snapshots__/Card.test.js.snap diff --git a/src/components/Board.js b/src/components/Board.js index 1c03b24c..e1e09c99 100644 --- a/src/components/Board.js +++ b/src/components/Board.js @@ -91,6 +91,7 @@ class Board extends Component { render() { return (
+

{this.state.error}

{this.renderCommentList()}
diff --git a/src/components/NewCardForm.js b/src/components/NewCardForm.js index e43f4213..4ec0ccef 100644 --- a/src/components/NewCardForm.js +++ b/src/components/NewCardForm.js @@ -51,16 +51,16 @@ onFormSubmit = (event) => { render(){ return(
-
- - + +
-
+
diff --git a/src/components/__snapshots__/Board.test.js.snap b/src/components/__snapshots__/Board.test.js.snap index 47df2b3c..8cf2998a 100644 --- a/src/components/__snapshots__/Board.test.js.snap +++ b/src/components/__snapshots__/Board.test.js.snap @@ -21,6 +21,9 @@ ShallowWrapper { "nodeType": "host", "props": Object { "children": Array [ +

, , @@ -30,6 +33,18 @@ ShallowWrapper { }, "ref": null, "rendered": Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": undefined, + "className": "warning", + }, + "ref": null, + "rendered": null, + "type": "h3", + }, Object { "instance": null, "key": undefined, @@ -51,6 +66,9 @@ ShallowWrapper { "nodeType": "host", "props": Object { "children": Array [ +

, , @@ -60,6 +78,18 @@ ShallowWrapper { }, "ref": null, "rendered": Array [ + Object { + "instance": null, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": undefined, + "className": "warning", + }, + "ref": null, + "rendered": null, + "type": "h3", + }, Object { "instance": null, "key": undefined, @@ -177,22 +207,31 @@ ReactWrapper {
+

-
+
-
+
-
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , "tag": 5, "treeBaseTime": 0, - "type": "input", + "type": "label", "updateQueue": null, }, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "label", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": Array [ - , - , - ], - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ - , - , - ], - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 11, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 63, + ], + "className": "new-card-form__form", }, - "alternate": null, - "child": FiberNode { - "_debugID": 15, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 64, + "lineNumber": 63, }, "alternate": null, "child": FiberNode { @@ -666,31 +747,10 @@ ReactWrapper { "_debugOwner": [Circular], "_debugSource": Object { "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, + "lineNumber": 64, }, "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": "", - "lastEffect": null, - "memoizedProps": Object { - "children": undefined, - "value": "", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": undefined, - "value": "", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { + "child": FiberNode { "_debugID": 17, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], @@ -703,19 +763,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 1, - "key": "heart_eyes", + "index": 0, + "key": "", "lastEffect": null, "memoizedProps": Object { - "children": "😍", - "value": "heart_eyes", + "children": undefined, + "value": "", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "😍", - "value": "heart_eyes", + "children": undefined, + "value": "", }, "ref": null, "return": [Circular], @@ -733,19 +793,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 2, - "key": "beer", + "index": 1, + "key": "heart_eyes", "lastEffect": null, "memoizedProps": Object { - "children": "🍺", - "value": "beer", + "children": "😍", + "value": "heart_eyes", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "🍺", - "value": "beer", + "children": "😍", + "value": "heart_eyes", }, "ref": null, "return": [Circular], @@ -763,19 +823,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 3, - "key": "clap", + "index": 2, + "key": "beer", "lastEffect": null, "memoizedProps": Object { - "children": "👏", - "value": "clap", + "children": "🍺", + "value": "beer", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "👏", - "value": "clap", + "children": "🍺", + "value": "beer", }, "ref": null, "return": [Circular], @@ -793,19 +853,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 4, - "key": "sparkling_heart", + "index": 3, + "key": "clap", "lastEffect": null, "memoizedProps": Object { - "children": "💖", - "value": "sparkling_heart", + "children": "👏", + "value": "clap", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "💖", - "value": "sparkling_heart", + "children": "👏", + "value": "clap", }, "ref": null, "return": [Circular], @@ -823,19 +883,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 5, - "key": "heart_eyes_cat", + "index": 4, + "key": "sparkling_heart", "lastEffect": null, "memoizedProps": Object { - "children": "😻", - "value": "heart_eyes_cat", + "children": "💖", + "value": "sparkling_heart", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "😻", - "value": "heart_eyes_cat", + "children": "💖", + "value": "sparkling_heart", }, "ref": null, "return": [Circular], @@ -853,28 +913,68 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 6, - "key": "dog", + "index": 5, + "key": "heart_eyes_cat", "lastEffect": null, "memoizedProps": Object { - "children": "🐶", - "value": "dog", + "children": "😻", + "value": "heart_eyes_cat", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "🐶", - "value": "dog", + "children": "😻", + "value": "heart_eyes_cat", }, "ref": null, "return": [Circular], "selfBaseTime": 0, - "sibling": null, + "sibling": FiberNode { + "_debugID": 23, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -882,9 +982,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -892,9 +992,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -902,9 +1002,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -912,9 +1012,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -922,633 +1022,657 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , + value="" +/>, "tag": 5, "treeBaseTime": 0, "type": "option", "updateQueue": null, }, - "stateNode": , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ - , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "select", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": , - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": , - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 12, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 68, + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, }, - "alternate": null, - "child": null, "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 2, + "index": 1, "key": null, "lastEffect": null, "memoizedProps": Object { - "type": "submit", - "value": "Add Message", + "children": , + "className": "new-card-form__form", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "type": "submit", - "value": "Add Message", + "children": , + "className": "new-card-form__form", }, "ref": null, "return": [Circular], "selfBaseTime": 0, - "sibling": null, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "input", - "updateQueue": null, - }, - "stateNode":
- -
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "stateNode":
- - + "sibling": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": Array [ -
+ "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
, -
- -
, - , - ], - "className": "new-card-form", - "onSubmit": [Function], - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ -
- - + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ +
, -
- +
+
, - , - ], - "className": "new-card-form", - "onSubmit": [Function], + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": +
+ + +
+
+ +
+ +, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], }, "ref": null, "return": [Circular], "selfBaseTime": 0, - "sibling": null, - "stateNode":
-
- - -
-
- -
- -
, - "tag": 5, - "treeBaseTime": 0, - "type": "form", - "updateQueue": null, - }, - "effectTag": 1, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "addCardcallBack": [Function], - }, - "memoizedState": Object { - "emoji": "", - "text": "", - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "addCardcallBack": [Function], - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 8, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Array [], - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Array [], - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": null, - "tag": 10, - "treeBaseTime": 0, - "type": null, - "updateQueue": null, - }, - "stateNode": NewCardForm { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "clearForm": [Function], - "context": Object {}, - "onFieldChange": [Function], - "onFormSubmit": [Function], - "populateDropdown": [Function], - "props": Object { - "addCardcallBack": [Function], - }, - "refs": Object {}, - "state": Object { - "emoji": "", - "text": "", + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], + "stateNode": NewCardForm { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, - "tag": 2, + "stateNode":

, + "tag": 5, "treeBaseTime": 0, - "type": [Function], + "type": "h3", "updateQueue": null, }, "effectTag": 0, @@ -1559,6 +1683,9 @@ ReactWrapper { "lastEffect": null, "memoizedProps": Object { "children": Array [ +

, , @@ -1571,6 +1698,9 @@ ReactWrapper { "nextEffect": null, "pendingProps": Object { "children": Array [ +

, , @@ -1585,22 +1715,31 @@ ReactWrapper { "stateNode":
+

-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Text: @@ -3185,17 +3465,20 @@ ReactWrapper { "memoizedProps": Object { "children": Array [ , , ], + "className": "new-card-form__form", }, "memoizedState": null, "mode": 0, @@ -3203,23 +3486,26 @@ ReactWrapper { "pendingProps": Object { "children": Array [ , , ], + "className": "new-card-form__form", }, "ref": null, "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 11, + "_debugID": 12, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3228,7 +3514,7 @@ ReactWrapper { }, "alternate": null, "child": FiberNode { - "_debugID": 15, + "_debugID": 16, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3237,7 +3523,7 @@ ReactWrapper { }, "alternate": null, "child": FiberNode { - "_debugID": 16, + "_debugID": 17, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3267,7 +3553,7 @@ ReactWrapper { "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 17, + "_debugID": 18, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3297,7 +3583,7 @@ ReactWrapper { "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 18, + "_debugID": 19, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3327,7 +3613,7 @@ ReactWrapper { "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 19, + "_debugID": 20, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3357,7 +3643,7 @@ ReactWrapper { "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 20, + "_debugID": 21, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3387,7 +3673,7 @@ ReactWrapper { "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 21, + "_debugID": 22, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3417,7 +3703,7 @@ ReactWrapper { "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 22, + "_debugID": 23, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3696,6 +3982,7 @@ ReactWrapper { 🐶 , + "className": "new-card-form__form", }, "memoizedState": null, "mode": 0, @@ -3740,12 +4027,13 @@ ReactWrapper { 🐶 , + "className": "new-card-form__form", }, "ref": null, "return": [Circular], "selfBaseTime": 0, "sibling": FiberNode { - "_debugID": 12, + "_debugID": 13, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { @@ -3784,7 +4072,9 @@ ReactWrapper { "type": "input", "updateQueue": null, }, - "stateNode":
+ "stateNode":
+
, -
+
, -
+
-
+
-
+
-
+
-
+
-
+
-
-
- -
- - -
-
, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": null, - "expirationTime": 1, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - }, - }, + "alternate": null, "child": [Circular], - "effectTag": 32, + "effectTag": 1, "expirationTime": 0, "firstEffect": [Circular], "index": 0, "key": null, "lastEffect": [Circular], - "memoizedProps": null, - "memoizedState": Object { - "element": , - }, - "mode": 0, - "nextEffect": null, - "pendingProps": null, - "ref": null, - "return": null, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Object { - "containerInfo":
-
-
-
- - -
-
- -
- -
-
-
, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": Object { - "element": , - }, - "expirationTime": 0, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": null, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": null, - }, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": WrapperComponent { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "context": Object {}, - "props": Object { + "memoizedProps": Object { "Component": [Function], "context": null, "props": Object { @@ -5260,8 +5252,7 @@ ReactWrapper { "url": "https://inspiration-board.herokuapp.com/boards/", }, }, - "refs": Object {}, - "state": Object { + "memoizedState": Object { "context": null, "mount": true, "props": Object { @@ -5269,129 +5260,244 @@ ReactWrapper { "url": "https://inspiration-board.herokuapp.com/boards/", }, }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], - }, - }, - "tag": 2, - "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, - }, - "_debugSource": null, - "alternate": null, - "child": [Circular], - "effectTag": 5, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - "memoizedState": Object { - "cards": Array [], - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - "ref": null, - "return": FiberNode { - "_debugID": 4, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": [Circular], - "effectTag": 1, - "expirationTime": 0, - "firstEffect": [Circular], - "index": 0, - "key": null, - "lastEffect": [Circular], - "memoizedProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "memoizedState": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, - }, - "ref": null, - "return": FiberNode { - "_debugID": 1, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": FiberNode { + "ref": null, + "return": FiberNode { "_debugID": 1, "_debugIsCurrentlyTiming": false, "_debugOwner": null, "_debugSource": null, - "alternate": [Circular], - "child": null, - "effectTag": 0, - "expirationTime": 1, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": null, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": null, - "ref": null, - "return": null, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Object { - "containerInfo":
-
-
-
- - +
+

+ +
+ + +
+
+ +
+ + +

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ +
-
+
-
-
- -
- - -
-

, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": Object { - "element": , + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], }, - "expirationTime": 0, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": null, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": null, }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": WrapperComponent { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "context": Object {}, - "props": Object { + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { "Component": [Function], "context": null, "props": Object { @@ -5655,8 +5665,7 @@ ReactWrapper { "url": "https://inspiration-board.herokuapp.com/boards/", }, }, - "refs": Object {}, - "state": Object { + "memoizedState": Object { "context": null, "mount": true, "props": Object { @@ -5664,182 +5673,15 @@ ReactWrapper { "url": "https://inspiration-board.herokuapp.com/boards/", }, }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], - }, - }, - "tag": 2, - "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Board { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "addCard": [Function], - "componentDidMount": [Function], - "context": Object {}, - "deleteMessage": [Function], - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - "refs": Object {}, - "renderCommentList": [Function], - "state": Object { - "cards": Array [], - }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], - }, - }, - "tag": 2, - "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode":
-
-
- - -
-
- -
- -
-
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 8, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Array [], - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Array [], - "ref": null, - "return": FiberNode { - "_debugID": 6, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 5, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 4, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": [Circular], - "effectTag": 1, - "expirationTime": 0, - "firstEffect": [Circular], - "index": 0, - "key": null, - "lastEffect": [Circular], - "memoizedProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "memoizedState": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, "ref": null, "return": FiberNode { @@ -5874,22 +5716,31 @@ ReactWrapper {
+

-
+
-
+
-
+
-
-
- -
- - -
-
, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": null, - "expirationTime": 1, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - }, - }, - "child": [Circular], - "effectTag": 32, - "expirationTime": 0, - "firstEffect": [Circular], + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, "index": 0, "key": null, - "lastEffect": [Circular], + "lastEffect": null, "memoizedProps": null, - "memoizedState": Object { - "element": , - }, + "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": null, @@ -6430,22 +6208,31 @@ ReactWrapper {
+

-
+
-
+
+
+
+ +
+ + +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, }, "selfBaseTime": 0, "sibling": null, - "stateNode": Board { + "stateNode": WrapperComponent { "_reactInternalFiber": [Circular], "_reactInternalInstance": Object {}, - "addCard": [Function], - "componentDidMount": [Function], "context": Object {}, - "deleteMessage": [Function], "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, "refs": Object {}, - "renderCommentList": [Function], "state": Object { - "cards": Array [], + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, "updater": Object { "enqueueForceUpdate": [Function], @@ -6599,264 +6526,89 @@ ReactWrapper { "type": [Function], "updateQueue": null, }, - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", - "lineNumber": 93, - }, + "_debugSource": null, "alternate": null, "child": [Circular], - "effectTag": 0, + "effectTag": 5, "expirationTime": 0, "firstEffect": null, "index": 0, "key": null, "lastEffect": null, "memoizedProps": Object { - "children": Array [ - , - Array [], - ], - "className": "board", + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], }, - "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": Array [ - , - Array [], - ], - "className": "board", + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, "ref": null, "return": FiberNode { - "_debugID": 5, + "_debugID": 4, "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 4, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": [Circular], - "effectTag": 1, - "expirationTime": 0, - "firstEffect": [Circular], - "index": 0, - "key": null, - "lastEffect": [Circular], - "memoizedProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, - "memoizedState": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, - "ref": null, - "return": FiberNode { + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { "_debugID": 1, "_debugIsCurrentlyTiming": false, "_debugOwner": null, "_debugSource": null, - "alternate": FiberNode { - "_debugID": 1, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": [Circular], - "child": null, - "effectTag": 0, - "expirationTime": 1, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": null, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": null, - "ref": null, - "return": null, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Object { - "containerInfo":
-
-
-
- - -
-
- -
- -
-
-
, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": null, - "expirationTime": 1, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - }, - }, - "child": [Circular], - "effectTag": 32, - "expirationTime": 0, - "firstEffect": [Circular], + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, "index": 0, "key": null, - "lastEffect": [Circular], + "lastEffect": null, "memoizedProps": null, - "memoizedState": Object { - "element": , - }, + "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": null, @@ -6869,22 +6621,31 @@ ReactWrapper {
+

-
+
-
+
+
+
+ +
+ + +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { "Component": [Function], "context": null, "props": Object { @@ -7052,7 +6918,8 @@ ReactWrapper { "url": "https://inspiration-board.herokuapp.com/boards/", }, }, - "memoizedState": Object { + "refs": Object {}, + "state": Object { "context": null, "mount": true, "props": Object { @@ -7060,15 +6927,191 @@ ReactWrapper { "url": "https://inspiration-board.herokuapp.com/boards/", }, }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+

+
+
+ + +
+
+ +
+ +
+

, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, "ref": null, "return": FiberNode { @@ -7103,22 +7146,31 @@ ReactWrapper {
+

-
+
-
+
-
+
+
+

-

-
- -
- - +
+ + +
+
+ +
+ + +
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": null, - "tag": 10, - "treeBaseTime": 0, - "type": null, - "updateQueue": null, - }, - "stateNode": [Circular], - "tag": 2, - "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, - }, - "_reactInternalInstance": Object {}, - "clearForm": [Function], - "context": Object {}, - "onFieldChange": [Function], - "onFormSubmit": [Function], - "populateDropdown": [Function], - "props": Object { - "addCardcallBack": [Function], - }, - "refs": Object {}, - "state": Object { - "emoji": "", - "text": "", - }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], - }, - }, - "key": undefined, - "nodeType": "class", - "props": Object { - "addCardcallBack": [Function], - }, - "ref": null, - "rendered": Object { - "instance":
-
- - -
-
- -
- -
, - "key": undefined, - "nodeType": "host", - "props": Object { - "children": Array [ -
- - -
, -
- -
, - , - ], - "className": "new-card-form", - "onSubmit": [Function], - }, - "ref": null, - "rendered": Array [ - Object { - "instance":
- - -
, - "key": undefined, - "nodeType": "host", - "props": Object { - "children": Array [ - , - , - ], - }, - "ref": null, - "rendered": Array [ - Object { - "instance": , - "key": undefined, - "nodeType": "host", - "props": Object { - "children": "Text: ", - "htmlFor": "text", - }, - "ref": null, - "rendered": Array [ - "Text: ", - ], - "type": "label", - }, - Object { - "instance": , - "key": undefined, - "nodeType": "host", - "props": Object { - "name": "text", - "onChange": [Function], - "type": "text", - "value": "", - }, - "ref": null, - "rendered": Array [ - undefined, - ], - "type": "input", - }, - ], - "type": "div", - }, - Object { - "instance":
- -
, - "key": undefined, - "nodeType": "host", - "props": Object { - "children": , - }, - "ref": null, - "rendered": Array [ - Object { - "instance": , - "key": undefined, - "nodeType": "host", - "props": Object { - "children": Array [ - , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", - }, - "ref": null, - "rendered": Array [ - Object { - "instance": , - "key": "heart_eyes", - "nodeType": "host", - "props": Object { - "children": "😍", - "value": "heart_eyes", + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, }, - "ref": null, - "rendered": Array [ - "😍", - ], - "type": "option", - }, - Object { - "instance": , - "key": "beer", - "nodeType": "host", - "props": Object { - "children": "🍺", - "value": "beer", + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, }, - "ref": null, - "rendered": Array [ - "🍺", - ], - "type": "option", }, - Object { - "instance": , - "key": "clap", - "nodeType": "host", + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, "props": Object { - "children": "👏", - "value": "clap", + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, - "ref": null, - "rendered": Array [ - "👏", - ], - "type": "option", - }, - Object { - "instance": , - "key": "sparkling_heart", - "nodeType": "host", - "props": Object { - "children": "💖", - "value": "sparkling_heart", + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, - "ref": null, - "rendered": Array [ - "💖", - ], - "type": "option", - }, - Object { - "instance": , - "key": "heart_eyes_cat", - "nodeType": "host", - "props": Object { - "children": "😻", - "value": "heart_eyes_cat", + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], }, - "ref": null, - "rendered": Array [ - "😻", - ], - "type": "option", }, - Object { - "instance": , - "key": "dog", - "nodeType": "host", - "props": Object { - "children": "🐶", - "value": "dog", - }, - "ref": null, - "rendered": Array [ - "🐶", - ], - "type": "option", + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, - ], - "type": "select", + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, - ], - "type": "div", - }, - Object { - "instance": , - "key": undefined, - "nodeType": "host", - "props": Object { - "type": "submit", - "value": "Add Message", - }, - "ref": null, - "rendered": Array [ - undefined, - ], - "type": "input", - }, - ], - "type": "form", - }, - "type": [Function], - }, - null, - ], - "type": "div", - }, - "type": [Function], - }, - Symbol(enzyme.__nodes__): Array [ - Object { - "instance": Board { - "_reactInternalFiber": FiberNode { - "_debugID": 5, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 4, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": [Circular], - "effectTag": 1, - "expirationTime": 0, - "firstEffect": [Circular], - "index": 0, - "key": null, - "lastEffect": [Circular], - "memoizedProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "memoizedState": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "ref": null, - "return": FiberNode { - "_debugID": 1, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": FiberNode { - "_debugID": 1, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "className": "warning", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "className": "warning", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": [Circular], + "stateNode":

, + "tag": 5, + "treeBaseTime": 0, + "type": "h3", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +

, + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +

, + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+

+
+
+ + +
+
+ +
+ +
+

, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, + }, + "stateNode": [Circular], + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "key": undefined, + "nodeType": "class", + "props": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "rendered": Object { + "instance":
+
+ + +
+
+ +
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "rendered": Array [ + Object { + "instance":
+ + +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + ], + "className": "new-card-form__form", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": "Text: ", + "className": "new-card-form__form-label", + "htmlFor": "text", + }, + "ref": null, + "rendered": Array [ + "Text: ", + ], + "type": "label", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "className": "new-card-form__form-textarea", + "name": "text", + "onChange": [Function], + "type": "text", + "value": "", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "div", + }, + Object { + "instance":
+ +
, + "key": undefined, + "nodeType": "host", + "props": Object { + "children": , + "className": "new-card-form__form", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", + "onChange": [Function], + "value": "", + }, + "ref": null, + "rendered": Array [ + Object { + "instance": , + "key": "heart_eyes", + "nodeType": "host", + "props": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "rendered": Array [ + "😍", + ], + "type": "option", + }, + Object { + "instance": , + "key": "beer", + "nodeType": "host", + "props": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "rendered": Array [ + "🍺", + ], + "type": "option", + }, + Object { + "instance": , + "key": "clap", + "nodeType": "host", + "props": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "rendered": Array [ + "👏", + ], + "type": "option", + }, + Object { + "instance": , + "key": "sparkling_heart", + "nodeType": "host", + "props": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "rendered": Array [ + "💖", + ], + "type": "option", + }, + Object { + "instance": , + "key": "heart_eyes_cat", + "nodeType": "host", + "props": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "rendered": Array [ + "😻", + ], + "type": "option", + }, + Object { + "instance": , + "key": "dog", + "nodeType": "host", + "props": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "rendered": Array [ + "🐶", + ], + "type": "option", + }, + ], + "type": "select", + }, + ], + "type": "div", + }, + Object { + "instance": , + "key": undefined, + "nodeType": "host", + "props": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "rendered": Array [ + undefined, + ], + "type": "input", + }, + ], + "type": "form", + }, + "type": [Function], + }, + null, + ], + "type": "div", + }, + "type": [Function], + }, + Symbol(enzyme.__nodes__): Array [ + Object { + "instance": Board { + "_reactInternalFiber": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, "alternate": [Circular], "child": null, "effectTag": 0, @@ -8148,22 +10406,31 @@ ReactWrapper {
+

-
+
-
+
-
+
, - "tag": 5, - "treeBaseTime": 0, - "type": "input", - "updateQueue": null, - }, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "label", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": Array [ - , - , - ], - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ - , - , - ], + "child": FiberNode { + "_debugID": 10, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 53, }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { + "alternate": null, + "child": FiberNode { "_debugID": 11, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 63, + "lineNumber": 54, }, "alternate": null, "child": FiberNode { - "_debugID": 15, + "_debugID": 14, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 64, + "lineNumber": 55, }, "alternate": null, - "child": FiberNode { - "_debugID": 16, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": "Text: ", + "className": "new-card-form__form-label", + "htmlFor": "text", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "Text: ", + "className": "new-card-form__form-label", + "htmlFor": "text", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 15, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, + "lineNumber": 56, }, "alternate": null, "child": null, "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 0, - "key": "", + "index": 1, + "key": null, "lastEffect": null, "memoizedProps": Object { - "children": undefined, + "className": "new-card-form__form-textarea", + "name": "text", + "onChange": [Function], + "type": "text", "value": "", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": undefined, + "className": "new-card-form__form-textarea", + "name": "text", + "onChange": [Function], + "type": "text", "value": "", }, "ref": null, "return": [Circular], "selfBaseTime": 0, - "sibling": FiberNode { + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + "className": "new-card-form__form", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + "className": "new-card-form__form", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 16, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { "_debugID": 17, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], @@ -8674,19 +10962,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 1, - "key": "heart_eyes", + "index": 0, + "key": "", "lastEffect": null, "memoizedProps": Object { - "children": "😍", - "value": "heart_eyes", + "children": undefined, + "value": "", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "😍", - "value": "heart_eyes", + "children": undefined, + "value": "", }, "ref": null, "return": [Circular], @@ -8704,19 +10992,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 2, - "key": "beer", + "index": 1, + "key": "heart_eyes", "lastEffect": null, "memoizedProps": Object { - "children": "🍺", - "value": "beer", + "children": "😍", + "value": "heart_eyes", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "🍺", - "value": "beer", + "children": "😍", + "value": "heart_eyes", }, "ref": null, "return": [Circular], @@ -8734,19 +11022,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 3, - "key": "clap", + "index": 2, + "key": "beer", "lastEffect": null, "memoizedProps": Object { - "children": "👏", - "value": "clap", + "children": "🍺", + "value": "beer", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "👏", - "value": "clap", + "children": "🍺", + "value": "beer", }, "ref": null, "return": [Circular], @@ -8764,19 +11052,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 4, - "key": "sparkling_heart", + "index": 3, + "key": "clap", "lastEffect": null, "memoizedProps": Object { - "children": "💖", - "value": "sparkling_heart", + "children": "👏", + "value": "clap", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "💖", - "value": "sparkling_heart", + "children": "👏", + "value": "clap", }, "ref": null, "return": [Circular], @@ -8794,19 +11082,19 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 5, - "key": "heart_eyes_cat", + "index": 4, + "key": "sparkling_heart", "lastEffect": null, "memoizedProps": Object { - "children": "😻", - "value": "heart_eyes_cat", + "children": "💖", + "value": "sparkling_heart", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "😻", - "value": "heart_eyes_cat", + "children": "💖", + "value": "sparkling_heart", }, "ref": null, "return": [Circular], @@ -8824,28 +11112,68 @@ ReactWrapper { "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 6, - "key": "dog", + "index": 5, + "key": "heart_eyes_cat", "lastEffect": null, "memoizedProps": Object { - "children": "🐶", - "value": "dog", + "children": "😻", + "value": "heart_eyes_cat", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "children": "🐶", - "value": "dog", + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 23, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -8853,9 +11181,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -8863,9 +11191,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -8873,9 +11201,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -8883,9 +11211,9 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , "tag": 5, "treeBaseTime": 0, @@ -8893,633 +11221,657 @@ ReactWrapper { "updateQueue": null, }, "stateNode": , + value="" +/>, "tag": 5, "treeBaseTime": 0, "type": "option", "updateQueue": null, }, - "stateNode": , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ - , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "select", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": , - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": + + + + + + , - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 12, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 68, + "tag": 5, + "treeBaseTime": 0, + "type": "select", + "updateQueue": null, }, - "alternate": null, - "child": null, "effectTag": 0, "expirationTime": 0, "firstEffect": null, - "index": 2, + "index": 1, "key": null, "lastEffect": null, "memoizedProps": Object { - "type": "submit", - "value": "Add Message", + "children": , + "className": "new-card-form__form", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "type": "submit", - "value": "Add Message", + "children": , + "className": "new-card-form__form", }, "ref": null, "return": [Circular], "selfBaseTime": 0, - "sibling": null, - "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
+ +
, "tag": 5, "treeBaseTime": 0, - "type": "input", + "type": "div", "updateQueue": null, }, - "stateNode":
- -
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "stateNode":
- - -
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": Array [ -
+ "stateNode":
, -
- -
, - , - ], - "className": "new-card-form", - "onSubmit": [Function], - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ -
- - + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
+ +
, -
- +
+
, - , - ], - "className": "new-card-form", - "onSubmit": [Function], - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": -
- - -
-
- +
, +
+ -
- -, - "tag": 5, - "treeBaseTime": 0, - "type": "form", - "updateQueue": null, - }, - "effectTag": 1, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "addCardcallBack": [Function], - }, - "memoizedState": Object { - "emoji": "", - "text": "", - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "addCardcallBack": [Function], - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 8, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Array [], - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Array [], - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": null, - "tag": 10, - "treeBaseTime": 0, - "type": null, - "updateQueue": null, - }, - "stateNode": NewCardForm { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "clearForm": [Function], - "context": Object {}, - "onFieldChange": [Function], - "onFormSubmit": [Function], - "populateDropdown": [Function], - "props": Object { + + +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode":
+
+ + +
+
+ +
+ +
, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { "addCardcallBack": [Function], }, - "refs": Object {}, - "state": Object { + "memoizedState": Object { "emoji": "", "text": "", }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": null, + "tag": 10, + "treeBaseTime": 0, + "type": null, + "updateQueue": null, + }, + "stateNode": NewCardForm { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "clearForm": [Function], + "context": Object {}, + "onFieldChange": [Function], + "onFormSubmit": [Function], + "populateDropdown": [Function], + "props": Object { + "addCardcallBack": [Function], + }, + "refs": Object {}, + "state": Object { + "emoji": "", + "text": "", + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, - "tag": 2, + "stateNode":

, + "tag": 5, "treeBaseTime": 0, - "type": [Function], + "type": "h3", "updateQueue": null, }, "effectTag": 0, @@ -9530,6 +11882,9 @@ ReactWrapper { "lastEffect": null, "memoizedProps": Object { "children": Array [ +

, , @@ -9542,6 +11897,9 @@ ReactWrapper { "nextEffect": null, "pendingProps": Object { "children": Array [ +

, , @@ -9556,22 +11914,31 @@ ReactWrapper { "stateNode":
+

-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
, + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "label", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ + , + , + ], + "className": "new-card-form__form", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ + , + , + ], + "className": "new-card-form__form", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 12, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 63, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 16, "_debugIsCurrentlyTiming": false, "_debugOwner": [Circular], "_debugSource": Object { "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 56, + "lineNumber": 64, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 17, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": "", + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "value": "", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "value": "", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 18, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": "heart_eyes", + "lastEffect": null, + "memoizedProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😍", + "value": "heart_eyes", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 19, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": "beer", + "lastEffect": null, + "memoizedProps": Object { + "children": "🍺", + "value": "beer", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🍺", + "value": "beer", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 20, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 3, + "key": "clap", + "lastEffect": null, + "memoizedProps": Object { + "children": "👏", + "value": "clap", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "👏", + "value": "clap", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 21, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 4, + "key": "sparkling_heart", + "lastEffect": null, + "memoizedProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "💖", + "value": "sparkling_heart", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 22, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 5, + "key": "heart_eyes_cat", + "lastEffect": null, + "memoizedProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "😻", + "value": "heart_eyes_cat", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 23, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 22, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 6, + "key": "dog", + "lastEffect": null, + "memoizedProps": Object { + "children": "🐶", + "value": "dog", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": "🐶", + "value": "dog", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "option", + "updateQueue": null, + }, + "stateNode": , + , + , + , + , + , + ], + "name": "emoji", "onChange": [Function], - "type": "text", "value": "", }, "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "name": "text", + "children": Array [ + , + , + , + , + , + , + ], + "name": "emoji", "onChange": [Function], - "type": "text", "value": "", }, "ref": null, "return": [Circular], "selfBaseTime": 0, "sibling": null, - "stateNode": , + "stateNode": , "tag": 5, "treeBaseTime": 0, - "type": "input", + "type": "select", "updateQueue": null, }, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "label", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": Array [ - , - , - ], - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ - , - , - ], - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 11, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 63, + + + + + + +, + "className": "new-card-form__form", }, - "alternate": null, - "child": FiberNode { - "_debugID": 15, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 64, - }, - "alternate": null, - "child": FiberNode { - "_debugID": 16, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": "", - "lastEffect": null, - "memoizedProps": Object { - "children": undefined, - "value": "", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": undefined, - "value": "", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 17, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": "heart_eyes", - "lastEffect": null, - "memoizedProps": Object { - "children": "😍", - "value": "heart_eyes", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": "😍", - "value": "heart_eyes", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 18, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 2, - "key": "beer", - "lastEffect": null, - "memoizedProps": Object { - "children": "🍺", - "value": "beer", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": "🍺", - "value": "beer", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 19, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 3, - "key": "clap", - "lastEffect": null, - "memoizedProps": Object { - "children": "👏", - "value": "clap", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": "👏", - "value": "clap", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 20, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 4, - "key": "sparkling_heart", - "lastEffect": null, - "memoizedProps": Object { - "children": "💖", - "value": "sparkling_heart", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": "💖", - "value": "sparkling_heart", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 21, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 5, - "key": "heart_eyes_cat", - "lastEffect": null, - "memoizedProps": Object { - "children": "😻", - "value": "heart_eyes_cat", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": "😻", - "value": "heart_eyes_cat", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 22, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 22, - }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 6, - "key": "dog", - "lastEffect": null, - "memoizedProps": Object { - "children": "🐶", - "value": "dog", - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": "🐶", - "value": "dog", - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": + + + + + +, + "className": "new-card-form__form", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 13, + "_debugIsCurrentlyTiming": false, + "_debugOwner": [Circular], + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", + "lineNumber": 68, + }, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "type": "submit", + "value": "Add Message", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "type": "submit", + "value": "Add Message", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": , + "tag": 5, + "treeBaseTime": 0, + "type": "input", + "updateQueue": null, + }, + "stateNode":
- 🐶 -, - "tag": 5, - "treeBaseTime": 0, - "type": "option", - "updateQueue": null, - }, - "stateNode": + + + + + + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "stateNode":
- 😻 -, - "tag": 5, - "treeBaseTime": 0, - "type": "option", - "updateQueue": null, - }, - "stateNode":
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +
- 💖 -, - "tag": 5, - "treeBaseTime": 0, - "type": "option", - "updateQueue": null, - }, - "stateNode":
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +
+ + +
, +
+ +
, + , + ], + "className": "new-card-form", + "onSubmit": [Function], + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": null, + "stateNode": - 👏 -, - "tag": 5, - "treeBaseTime": 0, - "type": "option", - "updateQueue": null, +
+ + +
+
+ +
+ +, + "tag": 5, + "treeBaseTime": 0, + "type": "form", + "updateQueue": null, + }, + "effectTag": 1, + "expirationTime": 0, + "firstEffect": null, + "index": 1, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "addCardcallBack": [Function], + }, + "memoizedState": Object { + "emoji": "", + "text": "", + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "addCardcallBack": [Function], + }, + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , }, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "option", - "updateQueue": null, + "tag": 0, }, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "option", - "updateQueue": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { + "element": , + }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "memoizedState": Object { + "cards": Array [], + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "ref": null, + "return": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, }, - "stateNode": , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ - , - , - , - , - , - , - ], - "name": "emoji", - "onChange": [Function], - "value": "", }, + "mode": 0, + "nextEffect": null, + "pendingProps": null, "ref": null, - "return": [Circular], + "return": null, "selfBaseTime": 0, "sibling": null, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "select", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": , - }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": , + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, }, - "ref": null, - "return": [Circular], "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 12, - "_debugIsCurrentlyTiming": false, - "_debugOwner": [Circular], - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/NewCardForm.js", - "lineNumber": 68, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 2, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "type": "submit", - "value": "Add Message", + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "type": "submit", - "value": "Add Message", + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode": , - "tag": 5, - "treeBaseTime": 0, - "type": "input", - "updateQueue": null, }, - "stateNode":
- -
, - "tag": 5, + "tag": 2, "treeBaseTime": 0, - "type": "div", + "type": [Function], "updateQueue": null, }, - "stateNode":
- - -
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "children": Array [ -
- - -
, -
- -
, - , - ], - "className": "new-card-form", - "onSubmit": [Function], + "selfBaseTime": 0, + "sibling": null, + "stateNode": Board { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], + "context": Object {}, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + "refs": Object {}, + "renderCommentList": [Function], + "state": Object { + "cards": Array [], + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "children": Array [ -
- - -
, -
- + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 93, + }, + "alternate": null, + "child": FiberNode { + "_debugID": 7, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 4, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

, - , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , - ], - "className": "new-card-form", - "onSubmit": [Function], - }, - "ref": null, - "return": [Circular], - "selfBaseTime": 0, - "sibling": null, - "stateNode":
-
- - -
-
- -
- -
, - "tag": 5, - "treeBaseTime": 0, - "type": "form", - "updateQueue": null, - }, - "effectTag": 1, - "expirationTime": 0, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": Object { - "addCardcallBack": [Function], - }, - "memoizedState": Object { - "emoji": "", - "text": "", - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "addCardcallBack": [Function], - }, - "ref": null, - "return": FiberNode { - "_debugID": 6, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 5, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 4, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, +
+ + +
+
+ +
+ + +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, + }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, + }, "_debugSource": null, "alternate": null, "child": [Circular], - "effectTag": 1, + "effectTag": 5, "expirationTime": 0, - "firstEffect": [Circular], + "firstEffect": null, "index": 0, "key": null, - "lastEffect": [Circular], + "lastEffect": null, "memoizedProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, "memoizedState": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "cards": Array [], }, "mode": 0, "nextEffect": null, "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, "ref": null, "return": FiberNode { - "_debugID": 1, + "_debugID": 4, "_debugIsCurrentlyTiming": false, "_debugOwner": null, "_debugSource": null, - "alternate": FiberNode { + "alternate": null, + "child": [Circular], + "effectTag": 1, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "memoizedState": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "ref": null, + "return": FiberNode { "_debugID": 1, "_debugIsCurrentlyTiming": false, "_debugOwner": null, "_debugSource": null, - "alternate": [Circular], - "child": null, - "effectTag": 0, - "expirationTime": 1, - "firstEffect": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], "index": 0, "key": null, - "lastEffect": null, + "lastEffect": [Circular], "memoizedProps": null, - "memoizedState": null, + "memoizedState": Object { + "element": , + }, "mode": 0, "nextEffect": null, "pendingProps": null, @@ -12118,22 +16085,31 @@ ReactWrapper {
+

-
+
-
+
-
-
- -
- - -
-
, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": Object { - "element": , + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], }, - "expirationTime": 0, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": null, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": null, }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, "selfBaseTime": 0, "sibling": null, - "stateNode": WrapperComponent { + "stateNode": Board { "_reactInternalFiber": [Circular], "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], "context": Object {}, - "props": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "deleteMessage": [Function], + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, "refs": Object {}, + "renderCommentList": [Function], "state": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "cards": Array [], }, "updater": Object { "enqueueForceUpdate": [Function], @@ -12418,30 +16263,79 @@ ReactWrapper { "type": [Function], "updateQueue": null, }, - "_debugSource": null, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, + }, "alternate": null, - "child": [Circular], - "effectTag": 5, + "child": null, + "effectTag": 0, "expirationTime": 0, "firstEffect": null, "index": 0, "key": null, "lastEffect": null, "memoizedProps": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - "memoizedState": Object { - "cards": Array [], + "children": undefined, + "className": "warning", }, + "memoizedState": null, "mode": 0, "nextEffect": null, "pendingProps": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", + "children": undefined, + "className": "warning", }, "ref": null, - "return": FiberNode { + "return": [Circular], + "selfBaseTime": 0, + "sibling": [Circular], + "stateNode":

, + "tag": 5, + "treeBaseTime": 0, + "type": "h3", + "updateQueue": null, + }, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": Array [ +

, + , + Array [], + ], + "className": "board", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": Array [ +

, + , + Array [], + ], + "className": "board", + }, + "ref": null, + "return": FiberNode { + "_debugID": 5, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { "_debugID": 4, "_debugIsCurrentlyTiming": false, "_debugOwner": null, @@ -12513,22 +16407,31 @@ ReactWrapper {
+

-
+
-
+
-
+
-
+
-
+
+
+
+ +
+ + +
, + "tag": 5, + "treeBaseTime": 0, + "type": "div", + "updateQueue": null, + }, + "selfBaseTime": 0, + "sibling": FiberNode { + "_debugID": 9, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 2, + "key": null, + "lastEffect": null, + "memoizedProps": Array [], + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Array [], + "ref": null, + "return": FiberNode { + "_debugID": 6, + "_debugIsCurrentlyTiming": false, + "_debugOwner": FiberNode { + "_debugID": 5, "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": [Circular], - "effectTag": 1, - "expirationTime": 0, - "firstEffect": [Circular], - "index": 0, - "key": null, - "lastEffect": [Circular], - "memoizedProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "memoizedState": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "mode": 0, - "nextEffect": null, - "pendingProps": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - }, - "ref": null, - "return": FiberNode { - "_debugID": 1, + "_debugOwner": FiberNode { + "_debugID": 4, "_debugIsCurrentlyTiming": false, "_debugOwner": null, "_debugSource": null, - "alternate": FiberNode { - "_debugID": 1, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": [Circular], - "child": null, - "effectTag": 0, - "expirationTime": 1, - "firstEffect": null, - "index": 0, - "key": null, - "lastEffect": null, - "memoizedProps": null, - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": null, - "ref": null, - "return": null, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Object { - "containerInfo":
-
-
-
- - -
-
- -
- -
-
-
, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": null, - "expirationTime": 1, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": Object { - "callback": null, - "expirationTime": 1, - "next": null, - "nextEffect": null, - "payload": Object { - "element": , - }, - "tag": 0, - }, - }, - }, + "alternate": null, "child": [Circular], - "effectTag": 32, + "effectTag": 1, "expirationTime": 0, "firstEffect": [Circular], "index": 0, "key": null, "lastEffect": [Circular], - "memoizedProps": null, + "memoizedProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, "memoizedState": Object { - "element": , + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, "mode": 0, "nextEffect": null, - "pendingProps": null, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, "ref": null, - "return": null, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Object { - "containerInfo":
-
-
-
- - -
-
- -
- -
-
+ "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, - }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": Object { + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { "element": , }, - "expirationTime": 0, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": null, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": null, - }, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": WrapperComponent { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "context": Object {}, - "props": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, }, }, - "refs": Object {}, - "state": Object { - "context": null, - "mount": true, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], }, }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], - }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, - "tag": 2, - "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Board { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "addCard": [Function], - "componentDidMount": [Function], - "context": Object {}, - "deleteMessage": [Function], - "props": Object { + "_debugSource": null, + "alternate": null, + "child": [Circular], + "effectTag": 5, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { "boardName": "Ada-Lovelace", "url": "https://inspiration-board.herokuapp.com/boards/", }, - "refs": Object {}, - "renderCommentList": [Function], - "state": Object { + "memoizedState": Object { "cards": Array [], }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, - }, - "tag": 2, - "treeBaseTime": 0, - "type": [Function], - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": null, - "stateNode":
-
-
- - -
-
- -
- -
-
, - "tag": 5, - "treeBaseTime": 0, - "type": "div", - "updateQueue": null, - }, - "selfBaseTime": 0, - "sibling": FiberNode { - "_debugID": 8, - "_debugIsCurrentlyTiming": false, - "_debugOwner": null, - "_debugSource": null, - "alternate": null, - "child": null, - "effectTag": 0, - "expirationTime": 0, - "firstEffect": null, - "index": 1, - "key": null, - "lastEffect": null, - "memoizedProps": Array [], - "memoizedState": null, - "mode": 0, - "nextEffect": null, - "pendingProps": Array [], - "ref": null, - "return": FiberNode { - "_debugID": 6, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { - "_debugID": 5, - "_debugIsCurrentlyTiming": false, - "_debugOwner": FiberNode { + "ref": null, + "return": FiberNode { "_debugID": 4, "_debugIsCurrentlyTiming": false, "_debugOwner": null, @@ -13845,22 +17758,31 @@ ReactWrapper {
+

-
+
-
+
-
+
+
+
+ +
+ + +
+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], "index": 0, "key": null, - "lastEffect": null, + "lastEffect": [Circular], "memoizedProps": null, - "memoizedState": null, + "memoizedState": Object { + "element": , + }, "mode": 0, "nextEffect": null, "pendingProps": null, @@ -14240,22 +18359,31 @@ ReactWrapper {
+

-
+
-
+
-
-
- -
- - -
-
, - "context": Object {}, - "current": [Circular], - "earliestPendingTime": 0, - "earliestSuspendedTime": 0, - "finishedWork": null, - "firstBatch": null, - "hydrate": false, - "latestPendingTime": 0, - "latestPingedTime": 0, - "latestSuspendedTime": 0, - "nextScheduledRoot": null, - "pendingChildren": null, - "pendingCommitExpirationTime": 0, - "pendingContext": null, - "remainingExpirationTime": 0, + "pendingProps": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, }, - "tag": 3, - "treeBaseTime": 0, - "type": null, - "updateQueue": Object { - "baseState": Object { + "ref": null, + "return": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": FiberNode { + "_debugID": 1, + "_debugIsCurrentlyTiming": false, + "_debugOwner": null, + "_debugSource": null, + "alternate": [Circular], + "child": null, + "effectTag": 0, + "expirationTime": 1, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": null, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": null, + "expirationTime": 1, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": Object { + "callback": null, + "expirationTime": 1, + "next": null, + "nextEffect": null, + "payload": Object { + "element": , + }, + "tag": 0, + }, + }, + }, + "child": [Circular], + "effectTag": 32, + "expirationTime": 0, + "firstEffect": [Circular], + "index": 0, + "key": null, + "lastEffect": [Circular], + "memoizedProps": null, + "memoizedState": Object { "element": , }, - "expirationTime": 0, - "firstCapturedEffect": null, - "firstCapturedUpdate": null, - "firstEffect": null, - "firstUpdate": null, - "lastCapturedEffect": null, - "lastCapturedUpdate": null, - "lastEffect": null, - "lastUpdate": null, + "mode": 0, + "nextEffect": null, + "pendingProps": null, + "ref": null, + "return": null, + "selfBaseTime": 0, + "sibling": null, + "stateNode": Object { + "containerInfo":
+
+

+
+
+ + +
+
+ +
+ +
+

+
, + "context": Object {}, + "current": [Circular], + "earliestPendingTime": 0, + "earliestSuspendedTime": 0, + "finishedWork": null, + "firstBatch": null, + "hydrate": false, + "latestPendingTime": 0, + "latestPingedTime": 0, + "latestSuspendedTime": 0, + "nextScheduledRoot": null, + "pendingChildren": null, + "pendingCommitExpirationTime": 0, + "pendingContext": null, + "remainingExpirationTime": 0, + }, + "tag": 3, + "treeBaseTime": 0, + "type": null, + "updateQueue": Object { + "baseState": Object { + "element": , + }, + "expirationTime": 0, + "firstCapturedEffect": null, + "firstCapturedUpdate": null, + "firstEffect": null, + "firstUpdate": null, + "lastCapturedEffect": null, + "lastCapturedUpdate": null, + "lastEffect": null, + "lastUpdate": null, + }, + }, + "selfBaseTime": 0, + "sibling": null, + "stateNode": WrapperComponent { + "_reactInternalFiber": [Circular], + "_reactInternalInstance": Object {}, + "context": Object {}, + "props": Object { + "Component": [Function], + "context": null, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "refs": Object {}, + "state": Object { + "context": null, + "mount": true, + "props": Object { + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", + }, + }, + "updater": Object { + "enqueueForceUpdate": [Function], + "enqueueReplaceState": [Function], + "enqueueSetState": [Function], + "isMounted": [Function], + }, }, + "tag": 2, + "treeBaseTime": 0, + "type": [Function], + "updateQueue": null, }, "selfBaseTime": 0, "sibling": null, - "stateNode": WrapperComponent { + "stateNode": Board { "_reactInternalFiber": [Circular], "_reactInternalInstance": Object {}, + "addCard": [Function], + "componentDidMount": [Function], "context": Object {}, + "deleteMessage": [Function], "props": Object { - "Component": [Function], - "context": null, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "boardName": "Ada-Lovelace", + "url": "https://inspiration-board.herokuapp.com/boards/", }, "refs": Object {}, + "renderCommentList": [Function], "state": Object { - "context": null, - "mount": true, - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, + "cards": Array [], }, "updater": Object { "enqueueForceUpdate": [Function], @@ -14540,42 +18950,41 @@ ReactWrapper { "type": [Function], "updateQueue": null, }, - "selfBaseTime": 0, - "sibling": null, - "stateNode": Board { - "_reactInternalFiber": [Circular], - "_reactInternalInstance": Object {}, - "addCard": [Function], - "componentDidMount": [Function], - "context": Object {}, - "deleteMessage": [Function], - "props": Object { - "boardName": "Ada-Lovelace", - "url": "https://inspiration-board.herokuapp.com/boards/", - }, - "refs": Object {}, - "renderCommentList": [Function], - "state": Object { - "cards": Array [], - }, - "updater": Object { - "enqueueForceUpdate": [Function], - "enqueueReplaceState": [Function], - "enqueueSetState": [Function], - "isMounted": [Function], - }, + "_debugSource": Object { + "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", + "lineNumber": 94, }, - "tag": 2, + "alternate": null, + "child": null, + "effectTag": 0, + "expirationTime": 0, + "firstEffect": null, + "index": 0, + "key": null, + "lastEffect": null, + "memoizedProps": Object { + "children": undefined, + "className": "warning", + }, + "memoizedState": null, + "mode": 0, + "nextEffect": null, + "pendingProps": Object { + "children": undefined, + "className": "warning", + }, + "ref": null, + "return": [Circular], + "selfBaseTime": 0, + "sibling": [Circular], + "stateNode":

, + "tag": 5, "treeBaseTime": 0, - "type": [Function], + "type": "h3", "updateQueue": null, }, - "_debugSource": Object { - "fileName": "/Users/owner/Documents/ada/homework/react/inspiration-board/src/components/Board.js", - "lineNumber": 93, - }, - "alternate": null, - "child": [Circular], "effectTag": 0, "expirationTime": 0, "firstEffect": null, @@ -14584,6 +18993,9 @@ ReactWrapper { "lastEffect": null, "memoizedProps": Object { "children": Array [ +

, , @@ -14596,6 +19008,9 @@ ReactWrapper { "nextEffect": null, "pendingProps": Object { "children": Array [ +

, , @@ -14679,22 +19094,31 @@ ReactWrapper {
+

-
+
-
+
-
+
-
+
-
+
-
+
-
+
, -
+
Text: , , ], + "className": "new-card-form__form", }, "ref": null, "rendered": Array [ Object { "instance":