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).
This is the final part of the five-part series entitled: Linux Commands frequently used by Linux Sysadmins. So far, we’ve covered over 50 commands regularly used by Linux sysadmins and power users. Refer…
The Vector Institute is an independent, not-for-profit corporation dedicated to advancing artificial intelligence, excelling in machine learning and deep learning. Our vision is to drive excellence and leadership in Canada’s knowledge, creation, and…
DrupalCon Atlanta will be held next year from 24-27 March 2025 in Atlanta, Georgia, and the Call for Speakers is now open! Do you have Drupal knowledge to share? We invite you to…
MongoDB is an open-source NoSQL database management system that stores data in JSON-like documents. It’s designed to handle large volumes of data with a document-oriented architecture and can operate without a predefined schema,…
Dec 12, 2025 Larassatti D. Summarize with: A minimum viable product (MVP) is the simplest version of a product, designed to validate a business idea and gather feedback from early users. Startups rely…
Chris Wells – chrisfromredfin.dev chrisfromredfin Nic Laflin – nLighteneddevelopment.com nicxvanJohn Picozzi – epam.com johnpicozziMatthew Grasmick – grasmash Topics Drupal FL Camp talk Fundamentals of Agile How do you square long term planning What…