Closed bobbingwide closed 2 years ago
The code should work with Gutenberg v.4.1.0 when it's released. Currently v4.1.0-rc.2
It would be nice if the JavaScript ( .js ) code was documented according to WordPress's JavaScript Documentation Standards. https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/javascript/
e.g. For the start of each file
/**
* Summary.
*
* Description.
*
* @copyright (C) Copyright Bobbing Wide 2018
* @author @bobbingwide
*/
Not sure if it's necessary to use @url, @link or others. What about @package?
oik-block is not working at all on WordPress 5.0-beta5 on my new laptop with Edge. Could be due to a problem with oik-bwtrace… which is not installed.
<b>Warning</b>: require_once(C:/apache/htdocs/wordpress/wp-content/plugins/oik-bwtrace/includes/bwtrace-actions.php):
failed to open stream: No such file or directory in
<b>C:\apache\htdocs\wordpress\wp-content\plugins\oik\libs\oik_boot.php</b> on line <b>70</b><br />
It was. Workaround was to install oik-bwtrace. It didn't need activating.
With WordPress 5.0-beta5 but NOT Gutenberg the Github Issue block produces a Console log message and none of the oik-block blocks load.
Uncaught TypeError: Cannot read property 'TextControl' of undefined
at eval (index.js?7662:25)
at Object.<anonymous> (editor.blocks.js?ver=1542566507:595)
at __webpack_require__ (editor.blocks.js?ver=1542566507:20)
at eval (index.js?8193:1)
at Object.<anonymous> (editor.blocks.js?ver=1542566507:588)
at __webpack_require__ (editor.blocks.js?ver=1542566507:20)
at editor.blocks.js?ver=1542566507:63
at editor.blocks.js?ver=1542566507:66
I mentioned this on Slack and was told I needed to add dependencies on the script registration. I needed to add wp.components and wp.editor to make it work in native WordPress 5.0-beta5. wp-editor needed for Editable used by the Person block.
It turns out that the real problem was that my code was registering the editor blocks on the front end. This also caused a problem with Autoptimize. The fix is applied in https://github.com/bobbingwide/oik-blocks
When responding to enqueue_block_editor_assets
the code currently checks if we’re doing_filter( ‘editor_replace’ )
. This test only works when Gutenberg is activated. The need for the test, to avoid enqueuing the blocks when loading the Classic editor, is no longer necessary. So the test should be removed.
I noticed a major problem when WordPress SEO was activated.
Autosave never seemed to finish.
In the console log there was a 500 response occurring.
This was due to logic in oik_blocks_editor_scripts()
that was testing if the Classic Editor was being loaded. It seems that in conversion from Gutenberg to 5.0 the enqueue_block_editor_assets
action is called for requests to display the WordPress SEO metabox.
/wp-admin/post.php?meta_box=1&action=edit&classic-editor&post=31818
The logic should not fail in this instance. Either we update the check or simply remove the ( debugging ) call to the missing function gob()
.
Gutenberg 4.8.0 was released on 7th/8th Jan 2019. WordPress 5.0.3 on 9th Jan.
It's about time we switched from alpha versions to proper semantic numbering. The next version, delivering the Block info block will be 0.2.0. This version won't be on WordPress.org since there are still many blocks that Need work.
The table should be updated to reflect the status for all the blocks under development for oik-blocks and their operational status with Gutenberg 5.1.1 and WordPress 5.1
Closing this as I'm now retesting the most recent version of the blocks with WordPress 5.9 and/or Gutenberg 12.3.2
It's been some time since I built the code with Gutenberg. It was last built with 2.9.2. There have been many changes since, with code being deprecated and so on. Some of the blocks no longer work. They need fixing. I'll use the original issues for each block, adding a comment on each on that doesn't yet work. Some of the blocks may be rewritten to reflect a better way of implementing the code in the first place.
Note: Issue references needed updating after the issues were transferred from oik-block to oik-blocks. Labels also need re-creating.