Skip to content
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

Merged
merged 36 commits into from
Feb 18, 2025

Conversation

tofumatt
Copy link
Collaborator

@tofumatt tofumatt commented Feb 6, 2025

Summary

Addresses issue:

Relevant technical choices

  • Always output the Sign in with Google render JS, so that any page can output a button.
  • Still conditionally renders the WordPress login and WooCommerce login code.

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

  • Run the code.
  • Ensure the acceptance criteria are satisfied.
  • Reassess the implementation with the IB.
  • Ensure no unrelated changes are included.
  • Ensure CI checks pass.
  • Check Storybook where applicable.
  • Ensure there is a QA Brief.
  • Ensure there are no unexpected significant changes to file sizes.

Merge Reviewer Checklist

  • Ensure the PR has the correct target branch.
  • Double-check that the PR is okay to be merged.
  • Ensure the corresponding issue has a ZenHub release assigned.
  • Add a changelog message to the issue.

@tofumatt tofumatt marked this pull request as ready for review February 13, 2025 00:52
Copy link

github-actions bot commented Feb 13, 2025

Build files for 513645d have been deleted.

This comment was marked as resolved.

zutigrm

This comment was marked as resolved.

@tofumatt
Copy link
Collaborator Author

Thanks @zutigrm! I've gone through and addressed/responded to all the comments, so back to you for another review 🙂

zutigrm

This comment was marked as resolved.

Copy link
Collaborator

@zutigrm zutigrm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @tofumatt LGTM

eugene-manuilov

This comment was marked as resolved.

Comment on lines 421 to 431
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 ),
)
);
}

Copy link
Collaborator

@nfmohit nfmohit Feb 17, 2025

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?

CC: @eugene-manuilov @zutigrm @techanvil

Copy link
Collaborator

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.

Copy link
Collaborator Author

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.

Copy link
Collaborator

@techanvil techanvil Feb 17, 2025

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.

@techanvil techanvil mentioned this pull request Feb 17, 2025
5 tasks
Copy link
Collaborator

@eugene-manuilov eugene-manuilov left a 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 );
Copy link
Collaborator

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.

Copy link
Collaborator Author

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;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not needed.

Copy link
Collaborator

@eugene-manuilov eugene-manuilov left a 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.

@eugene-manuilov eugene-manuilov merged commit 033cbb9 into develop Feb 18, 2025
22 of 28 checks passed
@eugene-manuilov eugene-manuilov deleted the siwg-gutenberg-block-10046 branch February 18, 2025 12:19
@techanvil techanvil mentioned this pull request Feb 21, 2025
19 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants