Skip to content

Commit 241d5d6

Browse files
committed
#164 feat (blocks) : JS method to deregister embed blocks + core blocks variations
1 parent 3ee7dfc commit 241d5d6

File tree

5 files changed

+91
-29
lines changed

5 files changed

+91
-29
lines changed

config/entries.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
22
app: ['./src/js/index.js', './src/scss/style.scss'],
3-
editor: ['./src/js/editor.js', './src/scss/editor.scss'],
3+
editor: ['./src/js/editor-script.js', './src/scss/editor-style.scss'],
44
}

inc/Services/Assets.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function register_assets(): void {
6464
\wp_register_script( 'global-polyfill', 'https://cdn.polyfill.io/v3/polyfill.min.js?features=es5,es6,fetch,Array.prototype.includes,CustomEvent,Element.prototype.closest,NodeList.prototype.forEach', null, null, true ); //phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
6565

6666
// Async and footer
67-
$file = ( ! defined( 'SCRIPT_DEBUG' ) || SCRIPT_DEBUG === false ) ? $this->get_min_file( 'js' ) : 'app.js';
67+
$file = ( ! defined( 'SCRIPT_DEBUG' ) || SCRIPT_DEBUG === false ) ? $this->get_min_file( 'js' ) : 'index.js';
6868
$this->assets_tools->register_script( 'scripts', 'dist/' . $file, $scripts_dependencies, $theme->get( 'Version' ), true );
6969

7070
// CSS
@@ -138,14 +138,14 @@ public function get_min_file( string $type ): string {
138138
$file = $assets['app.css'];
139139
break;
140140
case 'editor-style':
141-
$file = $assets['editor-style.css'];
142-
break;
143-
case 'admin-editor-script':
144-
$file = $assets['gutenberg-editor.js'];
141+
$file = $assets['editor.css'];
145142
break;
146143
case 'js':
147144
$file = $assets['app.js'];
148145
break;
146+
case 'editor-script':
147+
$file = $assets['editor.js'];
148+
break;
149149
default:
150150
$file = null;
151151
break;

src/js/editor-script.js

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
import lazySizes from 'lazysizes'
2+
import 'lazysizes/plugins/native-loading/ls.native-loading'
3+
import 'lazysizes/plugins/object-fit/ls.object-fit'
4+
5+
/**
6+
* LazySizes configuration
7+
* https://github.com/aFarkas/lazysizes/#js-api---options
8+
*/
9+
lazySizes.cfg.nativeLoading = {
10+
setLoadingAttribute: false,
11+
}
12+
13+
// Native Gutenberg
14+
if (typeof wp !== 'undefined') {
15+
wp.domReady(() => {
16+
// Disable block styles
17+
18+
// block image
19+
// wp.blocks.unregisterBlockStyle('core/image', 'rounded')
20+
// wp.blocks.unregisterBlockStyle('core/image', 'default')
21+
22+
// block quote
23+
// wp.blocks.unregisterBlockStyle('core/quote', 'default')
24+
// wp.blocks.unregisterBlockStyle('core/quote', 'large')
25+
26+
// block pullquote
27+
// wp.blocks.unregisterBlockStyle('core/pullquote', 'default')
28+
// wp.blocks.unregisterBlockStyle('core/pullquote', 'solid-color')
29+
30+
// block separator
31+
// wp.blocks.unregisterBlockStyle('core/separator', 'default')
32+
// wp.blocks.unregisterBlockStyle('core/separator', 'wide')
33+
// wp.blocks.unregisterBlockStyle('core/separator', 'dots')
34+
35+
// block table
36+
// wp.blocks.unregisterBlockStyle('core/table', 'regular')
37+
// wp.blocks.unregisterBlockStyle('core/table', 'stripes')
38+
39+
// Disable core embed blocks
40+
41+
var embedVariations = [
42+
'amazon-kindle',
43+
'animoto',
44+
'cloudup',
45+
'collegehumor',
46+
'crowdsignal',
47+
'dailymotion',
48+
'facebook',
49+
'flickr',
50+
'imgur',
51+
'instagram',
52+
'issuu',
53+
'kickstarter',
54+
'meetup-com',
55+
'mixcloud',
56+
'reddit',
57+
'reverbnation',
58+
'screencast',
59+
'scribd',
60+
'slideshare',
61+
'smugmug',
62+
'soundcloud',
63+
'speaker-deck',
64+
'spotify',
65+
'ted',
66+
'tiktok',
67+
'tumblr',
68+
'twitter',
69+
'videopress',
70+
'vimeo',
71+
'wordpress',
72+
'wordpress-tv',
73+
// 'youtube'
74+
]
75+
76+
for (var i = embedVariations.length - 1; i >= 0; i--) {
77+
wp.blocks.unregisterBlockVariation('core/embed', embedVariations[i])
78+
}
79+
})
80+
}
81+
82+
// ACF Blocks
83+
if (window.acf) {
84+
// Do stuff
85+
}

src/js/editor.js

-23
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)