“Let’s Build A Gutenberg Block” at WordCamp EU, 2018!

This Github project will provide the reference files and roadmap for our workshop today. Each portion will be introduced with a short lecture followed by an exercise.

Learning Goals:

Prerequisites:

Please have the following prepared for the workshop:

Part 0: Introductions (start 10:15)

    • Name
    • Your experience with WordPress
    • A frustrating moment in development

Part 1: Orientation (start 10:25)

Lecture: SPA

  1. Network panel

Debrief:

Part 2: Scaffold a block with Create Guten Block (start 10:35)

Lecture: Modern JavaScript Workflow

  1. If your node and npm versions are out of date: Join a different pair programming group with a working machine! Or, if you are comfortable doing so, try updating node/npm via this blog post. You can also raise your hand for help!

Part 3: Our block files (start 10:45)

  1. Perform these changes to the code:
  2. To see changes, remember to save and reload the editor!

Debrief:

Lecture: Anatomy of a block.

Part 4: Finding Answers in Gutenberg’s Source (start 10:55)

    • HINT: it’s very important

Debrief:

Part 5: Building the Block (remainder of time - 11:05 start)

Lecture: Block Attributes

The exercises are organized as branches in Github. Each branch’s code contains an implementation of the feature, and your task is to figure out which changes you need to apply to your own block from the code in the branch.

Start here for the first challenge, then change branches using the dropdown on the left below the project menu as you move to each exercise. Note that I have removed most of the comments on each branch’s example code for legibility. You do not have to do this, but you can!

Remeber also to delete and recreate blocks that show the “This block appears to have been modified externally” error. Refer to Debugging Techniques below for more information, and most importantly, raise your hand if you get stuck!

Reference src/block/block.js on the branch 1-editable.

Switch to the branch 2-alignment-toolbar and reference src/block/block.js, as well as one of the scss files.

We have the ability to have nested blocks, or “inner block” areas, in Gutenberg blocks. Perhaps we want to have an area for some free-form content below our editable, say an image or maybe a quote? Rather than writing those blocks ourselves, we can use the InnerBlocks component to allow for an area of nested blocks! Switch to the branch 3-inner-blocks and figure out how to apply that code to your own block.

For general block options, we can use the Inspector Controls component. This is the settings area that shows up in the sidebar, like that of the paragraph block. Switch to branch 4-border-color-control to apply the functionality to your own block to modify the block’s border color.

Let’s use the same strategy to create an option for changing the block’s background color, and employ the contrast checker component to make sure our colors choices are readable.

As I was creating this exercise, I realized the initial p element we created would be better as a heading element. Then, we could use this block as a callout style block with a heading. We can also utilize the focus states Gutenebrg provides to make the editing experience more smooth.

This is shaping up to be a pretty useful callout or section block! Let’s make the markup in our save function a bit more semantic.

Clean up the edit and style CSS (rather, Sass) to have less harsh initial colors, and apply a border to the header. Apply some CSS organizational practices and tweak the display of the edit view.

And now…I think we have a pretty useful block! Whether or not you made it this far in the workshop, this Github project will be online for you to reference at any time you like. And, if you go beyond what I’ve done, feel free to submit a Pull Request and I’ll take a look!

Part 6: Q&A + Conclusion (last 15 mins)

Individually, and in your own words, write 1-3 paragraphs explaining the core components of a block.

Debugging techniques: