Skip to content

Commit

Permalink
[#129] Adding block pattern and theme slug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-schmidt-viget committed Jul 24, 2024
1 parent 53d0150 commit f8f9a1b
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 4 deletions.
15 changes: 15 additions & 0 deletions wp-content/themes/wp-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@ Blocks are build using ACF and core WordPress blocks. Styles for the blocks are
* Text Image
* Video Embed

### Creating New Blocks
The theme is set up with [plop](https://plopjs.com/) which will auto generate a new block based on the options you input.
In order build a new block run:

```
ddev npm run plop block
```

It will ask you a few question:
* __What is the block name?__ - *This can be whatever you want.*
* __What is the slug for your theme?__ - *This would your theme slug. If you are unsure of what that is, you can look at `textdomain:` in side of any `block.json` files.*
* __Pick a WordPress icon for the block__ - *These are from [WordPress Icons](https://developer.wordpress.org/resource/dashicons/) and you can update the icons if you don't see one you want.*
* __Do you need block styles?__ - *Adds the option for adding a class to the block’s wrapper - [Block Styles](https://developer.wordpress.org/block-editor/reference-guides/block-api/block-styles/)*
* __Do you need block variations?__ - *Adds the option for a block variant - [Block Variations](https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/)*

## Customizing Theme 🎨
### Fonts
Fonts are pulled in by [typography.js](/src/theme-json/settings/typography.js). Update the `src` to pull in the font files in `/src/fonts`. For more info on setting up WordPress fonts check out [fullsiteediting](https://fullsiteediting.com/lessons/creating-theme-json/#h-typography).
Expand Down
2 changes: 1 addition & 1 deletion wp-content/themes/wp-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "vite build",
"format": "prettier \"./src/**/*.{css,ts,tsx,js}\" --check",
"format:fix": "prettier \"./src/**/*.{css,ts,tsx,js}\" --write",
"new:block": "plop"
"plop": "plop"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
Expand Down
2 changes: 1 addition & 1 deletion wp-content/themes/wp-starter/plop-templates/block.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Displays the {{titleCase name}}",
"icon": "{{icon}}",
"category": "components",
"textdomain": "wp-starter",
"textdomain": "{{dashCase themeslug}}",
"keywords": ["{{dashCase name}}"],
"attributes": {
"align": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php
/**
* Title: {{titleCase name}}
* Slug: {{dashCase themeslug}}/{{dashCase name}}-inner-blocks
* Viewport width: 1400
* Inserter: no
*/

?>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[
'core/pattern',
{
'slug': 'wp-starter/{{dashCase name}}-inner-blocks',
'slug': '{{dashCase themeslug}}/{{dashCase name}}-inner-blocks',
}
]
] %}
Expand Down
20 changes: 19 additions & 1 deletion wp-content/themes/wp-starter/plopfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ module.exports = function (plop) {
return "Name is required";
},
},
{
type: 'input',
name: 'themeslug',
message: 'What is the slug for your theme?',
validate: function (value) {
if (/.+/.test(value)) {
return true;
}
return "Theme slug is required";
},
},
{
type: 'list',
name: 'icon',
Expand All @@ -41,7 +52,7 @@ module.exports = function (plop) {
type: 'confirm',
name: 'variations',
message: 'Do you need block variations?'
}
},
],
actions: function(data) {
var actions = [
Expand All @@ -52,6 +63,13 @@ module.exports = function (plop) {
templateFiles: 'plop-templates/*.hbs',
abortOnFail: true,
},
{
type: 'addMany',
destination: 'blocks/{{dashCase name}}/',
base: 'plop-templates',
templateFiles: 'plop-templates/patterns/*.hbs',
abortOnFail: true,
},
{
type: "append",
path: "src/styles/main.css",
Expand Down

0 comments on commit f8f9a1b

Please sign in to comment.