Skip to content

Commit 9b8096f

Browse files
authored
Merge pull request #159 from alleyinteractive/typescript
Switching to using Typescript by default
2 parents fd360da + 4de472b commit 9b8096f

19 files changed

+194
-10
lines changed

bin/create-block/index.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,22 @@ module.exports = {
1111
description: '',
1212
dashicon: 'palmtree',
1313
category: 'widgets',
14-
editorScript: 'file:index.js',
14+
editorScript: 'file:index.ts',
1515
editorStyle: 'file:index.css',
1616
style: ['file:style-index.css'],
17-
render: 'file:render.php',
1817
},
1918
variants: {
2019
static: {},
21-
dynamic: {},
20+
'static-javascript': {
21+
blockTemplatesPath: path.join(__dirname, 'templates', 'block', 'javascript'),
22+
},
23+
dynamic: {
24+
render: 'file:render.php',
25+
},
26+
'dynamic-javascript': {
27+
blockTemplatesPath: path.join(__dirname, 'templates', 'block', 'javascript'),
28+
render: 'file:render.php',
29+
},
2230
},
23-
blockTemplatesPath: path.join(__dirname, 'templates', 'block'),
31+
blockTemplatesPath: path.join(__dirname, 'templates', 'block', 'typescript'),
2432
};

bin/create-block/templates/block/save.jsx.mustache bin/create-block/templates/block/javascript/save.jsx.mustache

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import { useBlockProps } from '@wordpress/block-editor';
1818
*/
1919
export default function save() {
2020
return (
21-
<p { ...useBlockProps.save() }>
22-
{ '{{title}} – hello from the saved content!' }
21+
<p {...useBlockProps.save()}>
22+
{'{{title}} – hello from the saved content!'}
2323
</p>
2424
);
2525
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* Retrieves the translation of text.
3+
*
4+
* @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-i18n/
5+
*/
6+
import { __ } from '@wordpress/i18n';
7+
8+
/**
9+
* React hook that is used to mark the block wrapper element.
10+
* It provides all the necessary props like the class name.
11+
*
12+
* @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-block-editor/#useblockprops
13+
*/
14+
import { useBlockProps } from '@wordpress/block-editor';
15+
16+
/**
17+
* Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.
18+
* Those files can contain any CSS code that gets applied to the editor.
19+
*
20+
* @see https://www.npmjs.com/package/@wordpress/scripts#using-css
21+
*/
22+
import './index.scss';
23+
24+
/**
25+
* The edit function describes the structure of your block in the context of the
26+
* editor. This represents what the editor will render when the block is used.
27+
*
28+
* @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-edit-save/#edit
29+
*
30+
* @return {WPElement} Element to render.
31+
*/
32+
export default function Edit() {
33+
return (
34+
<p {...useBlockProps()}>
35+
{ __('Block Title – hello from the editor!', 'create-wordpress-plugin') }
36+
</p>
37+
);
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
/**
3+
* Block Name: {{title}}.
4+
*
5+
* @package create-wordpress-plugin
6+
*/
7+
8+
/**
9+
* Registers the block using the metadata loaded from the `block.json` file.
10+
* Behind the scenes, it registers also all assets so they can be enqueued
11+
* through the block editor in the corresponding context.
12+
*
13+
* @see https://developer.wordpress.org/reference/functions/register_block_type/
14+
*/
15+
function {{namespaceSnakeCase}}_{{slugSnakeCase}}_block_init() {
16+
// Register the block by passing the location of block.json.
17+
register_block_type(
18+
__DIR__
19+
);
20+
21+
}
22+
add_action( 'init', '{{namespaceSnakeCase}}_{{slugSnakeCase}}_block_init' );
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* The following styles get applied inside the editor only.
3+
*
4+
* All imported CSS files are bundled into one chunk named after the entry point,
5+
* which defaults to index.js, and thus the file created becomes index.css.
6+
* This is for styles used only in the editor.
7+
*
8+
* Replace them with your own styles or remove the file completely.
9+
*/
10+
11+
.wp-block-{{namespace}}-{{slug}} {
12+
border: 1px dotted #f00;
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/**
2+
* Registers a new block provided a unique name and an object defining its behavior.
3+
*
4+
* @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/
5+
*/
6+
import { registerBlockType } from '@wordpress/blocks';
7+
8+
/**
9+
* Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.
10+
* All files containing `style` keyword are bundled together. The code used
11+
* gets applied both to the front of your site and to the editor.
12+
*
13+
* @see https://www.npmjs.com/package/@wordpress/scripts#using-css
14+
*/
15+
import './style.scss';
16+
17+
/**
18+
* Internal dependencies
19+
*/
20+
import edit from './edit';
21+
{{#isStaticVariant}}
22+
import save from './save';
23+
{{/isStaticVariant}}
24+
import metadata from './block.json';
25+
26+
/**
27+
* Every block starts by registering a new block type definition.
28+
*
29+
* @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/
30+
*/
31+
registerBlockType(
32+
/* @ts-expect-error Provided types are inaccurate to the actual plugin API. */
33+
metadata,
34+
{
35+
apiVersion: 2,
36+
edit,
37+
{{#isStaticVariant}}
38+
save,
39+
{{/isStaticVariant}}
40+
title: metadata.title,
41+
},
42+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{{#isDynamicVariant}}
2+
<?php
3+
/**
4+
* All of the parameters passed to the function where this file is being required are accessible in this scope:
5+
*
6+
* @param array $attributes The array of attributes for this block.
7+
* @param string $content Rendered block output. ie. <InnerBlocks.Content />.
8+
* @param WP_Block $block_instance The instance of the WP_Block class that represents the block being rendered.
9+
*
10+
* @package create-wordpress-plugin
11+
*/
12+
13+
?>
14+
<p <?php echo wp_kses_data( get_block_wrapper_attributes() ); ?>>
15+
<?php esc_html_e( '{{title}} – hello from a dynamic block!', 'create-wordpress-plugin' ); ?>
16+
</p>
17+
{{/isDynamicVariant}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{{#isStaticVariant}}
2+
/**
3+
* React hook that is used to mark the block wrapper element.
4+
* It provides all the necessary props like the class name.
5+
*
6+
* @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-block-editor/#useblockprops
7+
*/
8+
import { useBlockProps } from '@wordpress/block-editor';
9+
10+
/**
11+
* The save function defines the way in which the different attributes should
12+
* be combined into the final markup, which is then serialized by the block
13+
* editor into `post_content`.
14+
*
15+
* @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-edit-save/#save
16+
*
17+
* @return {WPElement} Element to render.
18+
*/
19+
export default function save() {
20+
return (
21+
<p {...useBlockProps.save()}>
22+
{'{{title}} – hello from the saved content!'}
23+
</p>
24+
);
25+
}
26+
{{/isStaticVariant}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* The following styles get applied both on the front of your site
3+
* and in the editor.
4+
*
5+
* Imported style.css file(s) (applies to SASS and SCSS extensions)
6+
* get bundled into one style-index.css file that is meant to be
7+
* used both on the front-end and in the editor.
8+
*
9+
* Replace them with your own styles or remove the file completely.
10+
*
11+
* @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-metadata/#block-styles
12+
*/
13+
14+
.wp-block-{{namespace}}-{{slug}} {
15+
background-color: #21759b;
16+
color: #fff;
17+
padding: 2px;
18+
}
File renamed without changes.

entries/example-slotfills/index.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function register_example_slotfills_scripts() {
3636
|
3737
*/
3838
// Automatically load dependencies and version.
39-
$asset_file = include plugin_dir_path( __FILE__ ) . 'index.asset.php';
39+
$asset_file = include __DIR__ . 'index.asset.php';
4040

4141
/* phpcs:ignore Squiz.PHP.CommentedOutCode.Found
4242
* wp_register_script(
@@ -46,7 +46,7 @@ function register_example_slotfills_scripts() {
4646
* $asset_file['version'],
4747
* true
4848
* );
49-
* wp_set_script_translations( 'create-wordpress-plugin-example_slotfills', 'hollywoodlife-plugin' );
49+
* wp_set_script_translations( 'create-wordpress-plugin-example_slotfills', 'create-wordpress-plugin' );
5050
*/
5151
}
5252
add_action( 'init', __NAMESPACE__ . '\register_example_slotfills_scripts' );
File renamed without changes.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"build": "wp-scripts build --webpack-copy-php --webpack-src-dir=blocks",
1616
"dev": "npm run start",
1717
"create-block": "cd blocks && npx @wordpress/create-block --template ../bin/create-block --no-plugin",
18-
"lint:fix": "eslint --ext .jsx --ext .js . --fix",
19-
"lint": "eslint --ext .jsx --ext .js .",
18+
"lint:fix": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx . --fix",
19+
"lint": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx .",
2020
"postinstall": "rm -rf node_modules/.cache/babel-loader && rm -rf node_modules/.cache/webpack",
2121
"prebuild": "check-node-version --package",
2222
"predev": "check-node-version --package",

0 commit comments

Comments
 (0)