Change text font with `figlet` inside a `react-blessed` Application

Elijah Manor
InstructorElijah Manor
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

In order to make text a bit more interesting in a react-blessed terminal app, we'll use the figlet node module to spice up our text with a bit of fancy ASCII Art. We'll define an array of various fonts and iterate through them every second as we experiment with this feature.

Elijah Manor: [0:00] Here, we have code for our React terminal app. We could come to the terminal and run npm start to kick it up and see the date, time, and a counter updating. However, let's spice up things a little bit and change the font of the time with some fancy ASCII art.

[0:19] To do this, we'll be using the figlet Node module, which will let us pick between different fonts and has a lot of built-in options for us to use.

[0:28] Let's go to our terminal and npm install figlet. Then, we'll come back into our app, and at the top of the file, we'll import figlet from "figlet."

[0:39] Then to have some fun, we'll define a fonts array, including 12 fonts that we'll iterate over -- Straight, ANSI Shadow, Shimrod, doom, Big, Ogre, Small, Standard, Bigfig, Mini, Small Script, and Small Shadow. Now that we have our fonts array, let's go and use it.

[1:14] First, let's split apart our time from our date so that we can render them separately. We'll copy our dateTime definition and paste it below. We'll make the first one our date and remove the time options, and we'll make the second one our time and remove the date options.

[1:34] Now, we'll update the return statement of our component. For now, just return the date field and the time field separately. We won't show the count variable visually, but we'll use that to determine our font choice.

[1:48] Let's come back up to our time declaration and wrap it with figlet.textSync. We'll give it a second parameter of object that defines the font choice. In our case, we'll take our fonts array, grab our current count, and mod that with the length of the FONTS array.

[2:07] Now, if we come to our terminal and run our app, we'll see the date and time rendered separately, and each time the count is updated, a new font is used.

[2:17] One last bit of cleanup. Our count variable is a fun index, so let's change that. We'll call it fontIndex and change our setter to setFontIndex. Then, we'll update the references in our React.useEffect, and finally, where we pick the font for our time.

[2:43] Now, we should be able to run our app again, and it'll execute just like it did before.

egghead
egghead
~ 2 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today