These three files are the most important:
Enjoy an ad-free experience and access exclusive courses when you join the WebWash Premium Community.
Learn about Premium
SDCs live in web/themes/contrib/byte_theme/components/.
npm run build
ddev wp plugin activate ww-blocks
Compile src/ into build/, then activate the plugin. The PHP loop from Step 2 picks up the block on its own.
Standard
Gutenberg vs Canvas
Step 8:
One thing to note is where the component lives. In the video we add the component to the byte theme, which is the theme that ships with Drupal CMS and Canvas. The same steps work in your own custom theme. Just swap the theme path for your theme folder and create the component inside its components directory.
import { useBlockProps, RichText } from '@wordpress/block-editor';
Both WordPress and Drupal, with Canvas, let you build pages from blocks and components instead of using just a text area. But the way they go about it is very different.
block.json is the ID card for the block. It holds the name, the attributes, and where the scripts and styles live.
edit.js is what you see and edit inside the admin editor.
save.js is the HTML that is saved to the post and shown on the front end.
<?php
/**
* Plugin Name: WW Blocks
* Description: A collection of custom blocks. Currently: Hero.
* Version: 1.0.0
* Text Domain: ww-blocks
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // No direct access.
}
function ww_blocks_register_blocks() {
$build_dir = __DIR__ . '/build';
Create components/ww_hero/ww_hero.component.yml. The props are the editable fields like heading, content, and image. The slot lets editors drop other components inside this one, in this case buttons below the content.
Create components/ww_hero/ww_hero.component.yml. The props are the editable fields like heading, content, and image. The slot lets editors drop other components inside this one, in this case buttons below the content.
Don’t forget to subscribe to our YouTube channel to stay up-to-date.
Table of Contents
import { registerBlockType } from '@wordpress/blocks';
import metadata from './block.json';
import Edit from './edit';
import save from './save';
Create components/ww_hero/ww_hero.twig. The markup is Twig rendered on the server, and the classes like flex, gap-6, and md:flex-row are Tailwind utilities, which is why there’s a CSS build step next.
There’s no single winner, because the two editors are built for different people.
First we look at the main difference between the two editors. Then we build the hero as a Gutenberg block. Then we build the same hero as a Drupal SDC.
That’s the whole component. Two files in a folder, a CSS build because of Tailwind, and a cache clear. No JavaScript, no React, and no per-component build step.
The simplest way to describe the difference is that Gutenberg is content-first and Canvas is component-first.
cd web/themes/contrib/byte_theme
import { __ } from '@wordpress/i18n';
import {
useBlockProps,
RichText,
MediaUpload,
MediaUploadCheck,
} from '@wordpress/block-editor';
import { Button } from '@wordpress/components';
Go ahead and create a folder for the hero component.
Create src/hero/save.js. This is a static block, so what you return here is the front-end HTML that gets saved into the post.
We build the hero inside a custom plugin called ww-blocks. The plugin is a container for blocks. Today it holds one block called hero, but you can drop in more blocks later and they register on their own.
Canvas is built for site builders. It doesn’t come with a set of generic content blocks. Instead, the Canvas components you see in the editor are the ones defined in modules or your theme. A Canvas component can be a block, a views block, a single directory component (SDC), or a code component (JavaScript file you build with Canvas). The most common approach is to create an SDC in your theme, define your props and slots, and then build pages from those components.
Step 2:
Add an SCSS file for the side-by-side layout. It loads on both the front end and inside the editor. You can also add an editor.scss file for editor-only tweaks.
Which One Should You Use?
If you want a typed system of server-rendered components that site builders own and editors put together, Canvas and SDCs are a clean fit. The downside is that you have to define your components up front before editors can build anything.
The “WW Hero” component now shows up in the Canvas component list under the Hero group. Add it to a page, fill in the heading, content, and image, and it renders.
The two editors look similar, but they work in opposite ways. The easiest way to see the difference is to build the same thing in both. In the video, we build a hero component twice: first as a custom Gutenberg block, then as a Drupal Single Directory Component (SDC).
Jan 19, 2026 Ariffud M. & Maria S. Summarize with: There’s a brutal fact in the fitness industry: most New Year’s resolutions don’t survive January. There’s even a name for it: Quitter’s Day….
Observability is a critical aspect of modern software development, providing teams with the ability to monitor and understand the performance of their applications and infrastructure. Recently, several companies have emerged as leaders in…
If you’ve been part of Drupal’s story, whether for decades or just a few months, I’d love for you to be there. It’s shaping up to become a memorable night. Know someone who…
If you’re curious what AI-assisted Drupal development actually feels like, this video captures the experience. I didn’t touch my IDE once or write a single line of code myself. Claude handled everything from…
Regular review and updatesWe review these pages quarterly to ensure they showcase the best current work. However, if an exceptional case study is posted to Drupal.org between reviews, we may add it immediately….
As a Linux newbie looking for DIY projects, you have plenty to choose from. Linux is full of hands-on learning and experimentation opportunities. From virtualization to server management and security, there’s a project…