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).
Brief: In this article, you will find the best applications that can be used to create PDF files with fillable fields, also known as interactive forms, on Linux. If you need a powerful…
In practice, a managed dedicated environment includes a fully managed FortiGate firewall with intrusion prevention, server management, bi-weekly vulnerability scans, managed VPN access, Veeam on-site and off-site daily backups, and migration support. Higher…
Destructive operations, such as dropping columns or renaming fields, should only occur after verifying that no active code still references them. Coordinating the timing of schema changes with code releases ensures consistency and…
AI-assisted landing page builders are regarded as potential “killer apps” for their ability to shorten campaign launch times by streamlining or removing need for development skills.For the organizations that are already using AI,…
Today we are talking about Drupal CMS Analytics, Recipes, and how to use both with guest Dharizza Espinach. We’ll also cover Field Data as our module of the week. Nic Laflin – nLighteneddevelopment.com…