-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Sign in with Google Gutenberg block. #10191
Conversation
Build files for 513645d have been deleted. |
This comment was marked as resolved.
This comment was marked as resolved.
Thanks @zutigrm! I've gone through and addressed/responded to all the comments, so back to you for another review 🙂 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @tofumatt LGTM
if ( Feature_Flags::enabled( 'rrmModuleV2' ) ) { | ||
$assets[] = new Script( | ||
'googlesitekit-reader-revenue-manager-block-editor', | ||
array( | ||
'src' => $base_url . 'js/googlesitekit-reader-revenue-manager-block-editor.js', | ||
'dependencies' => array(), | ||
'load_contexts' => array( Asset::CONTEXT_ADMIN_POST_EDITOR ), | ||
) | ||
); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tofumatt The suggested approach for registering and enqueuing blocks in this PR is great!
However, besides blocks, this asset in RRM is also designed to add a plugin sidebar panel to the block editor (see #9962). In this case, would you suggest we also do that in the blocks
folder, or can we continue using the approach being removed here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @nfmohit, good spot here.
@tofumatt, it would be preferable not to entirely remove the RRM block editor entry point in this PR, and rather either keep it as-is, or move it to a new location in keeping with the changes introduced in this PR. We'll be building on the RRM entry point in the issue Nahid linked above, #9962.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noted, in that case I'll keep the entry point around, though if it's a Gutenberg block/block editor code I'd suggest moving it to its own blocks/reader-revenue-manager
location in that PR. But I won't change anything else here for now to keep the PR more tightly scoped.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thanks @tofumatt.
Cc @ankitrox, who will be executing on #9962. Ankit, let's also see how this PR pans out with the other discussion under way about the blocks
location.
Co-authored-by: Eugene Manuilov <[email protected]>
…-10046' of github.com:google/site-kit-wp into siwg-gutenberg-block-10046.
Co-authored-by: Eugene Manuilov <[email protected]>
Co-authored-by: Eugene Manuilov <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @tofumatt. Mostly looks good now. Left a few more comments that we need to address and then we should be good to go.
// Check to see if the module is connected before registering the block. | ||
if ( $this->is_connected() ) { | ||
// Load the Gutenberg block for this module. | ||
$this->sign_in_with_google_block = new Sign_In_With_Google_Block( $this->context ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be instantiated in the constructor like existing_client_id
and woocommerce
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, good point, done 🙂
namespace Google\Site_Kit\Modules\Sign_In_With_Google; | ||
|
||
use Google\Site_Kit\Context; | ||
use Google\Site_Kit\Modules\Sign_In_With_Google; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @tofumatt. Looks good to me.
Summary
Addresses issue:
Relevant technical choices
Updates to asset handling for Gutenberg blocks
Gutenberg blocks use `block.json` to handle their JS and CSS loading. Previously we used `CONTEXT_ADMIN_POST_EDITOR` to handle asset loading within Site Kit, but `block.json` does this for us, including versioning the requests based on the version number in the `block.json` file. I've set up new blocks to use the Gutenberg norm for loading CSS and JS assets, instead of Site Kit's asset handling, as it's more idiomatic for block code.The above ended up meaning we couldn't load block JS with Site Kit dependencies, so it was reverted.
Also, instead of the approach mentioned in the IB with colocated block PHP code, this one moves the Block PHP to
Blocks/
folder, because otherwise dealing with composer's autoload is a huge pain. 😓I also removed the entirely empty RRM Gutenberg block, as it wasn't using the modern
block.json
approach and was set up in a way more similar to our plugin/admin assets than a block.This PR, being the first real block we ship, also cleans up/extends some configs/naming as appropriate.
PR Author Checklist
Do not alter or remove anything below. The following sections will be managed by moderators only.
Code Reviewer Checklist
Merge Reviewer Checklist