The one where I build the Draft widget in React. Today seems as good a day as any to write a full-dress React widget and actually host it somewhere. I maintain a little website called WidgetWonk (https://www.widgetwonk.com/) where I host such things. I'll be happy to take you through the entire process. I probably need … Continue reading React Widget from 0 to Launch
Tag: git
React Lesson 2 (Part 3): Unit Testing
Let's add some unit testing to our little text editing widget that we began in React Lesson 2. At this point I'm going to create a new branch from my existing setstate-horror branch. While currently on the setstate-horror branch, I type git checkout -b tiny-text-commit. This creates a new branch copied from the old one … Continue reading React Lesson 2 (Part 3): Unit Testing
React Lesson 2: Dealing with React’s Would-Be Immutable States
Let's discuss setState further. As usual, along the way we will create a little widget and try to learn some things by doing. Like the others, the code I make for this lesson will be hosted on my GitHub repo react-examples, which is located here: https://github.com/xerocross/react-examples. Let me include a tiny bit of git instruction … Continue reading React Lesson 2: Dealing with React’s Would-Be Immutable States