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
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
297909f
Add Sign in with Google Gutenberg block.
tofumatt Feb 6, 2025
94e914e
Merge branch 'develop' into siwg-gutenberg-block-10046.
tofumatt Feb 11, 2025
9a3d0f2
Add Gutenberg block for Sign in with Google.
tofumatt Feb 13, 2025
4444472
Remove empty/unused RRM Gutenberg block.
tofumatt Feb 13, 2025
5ec3934
Remove Gutenberg asset management.
tofumatt Feb 13, 2025
99363b1
Remove empty tests.
tofumatt Feb 13, 2025
2a69339
Ignore all `dist/` folders when running lint.
tofumatt Feb 13, 2025
327053d
Update SiwG JS test.
tofumatt Feb 13, 2025
eb6503c
Add version string test to block code.
tofumatt Feb 13, 2025
ec3df6e
Improve one tap handling.
tofumatt Feb 13, 2025
6d3bd26
Revert "Remove Gutenberg asset management."
tofumatt Feb 13, 2025
98346be
Add Feature flag checks to SiwG block.
tofumatt Feb 13, 2025
abf3158
Add copy webpack plugin.
tofumatt Feb 13, 2025
ae15a2e
Add blocks autoload to build step.
tofumatt Feb 13, 2025
059b99e
Move block to `Includes/` folder.
tofumatt Feb 13, 2025
b2d4a70
Use valid ID strings for assets.
tofumatt Feb 13, 2025
d199b85
Add wildcard to `node_modules` ignore.
tofumatt Feb 17, 2025
06bc0e9
Use glob pattern for `block.json`.
tofumatt Feb 17, 2025
410c5db
Improve WordPress core import handling.
tofumatt Feb 17, 2025
15ff04a
Revert composer changes.
tofumatt Feb 17, 2025
af5c879
Merge branch 'develop' into siwg-gutenberg-block-10046
tofumatt Feb 17, 2025
a44ee11
Update path to block file JSON.
tofumatt Feb 17, 2025
006f0a8
Remove ignore changes.
tofumatt Feb 17, 2025
0597b53
Merge branches 'siwg-gutenberg-block-10046' and 'siwg-gutenberg-block…
tofumatt Feb 17, 2025
1059f3d
Use `$is_wp_login` instead of `is_user_logged_in()`.
tofumatt Feb 17, 2025
20abab0
Update includes/Modules/Sign_In_With_Google.php
tofumatt Feb 17, 2025
0016617
Add `<?php` around comment to hide it from HTML output.
tofumatt Feb 17, 2025
f5138d6
Move connection check to module.
tofumatt Feb 17, 2025
4117a86
Restore RRM block.
tofumatt Feb 17, 2025
19b5e59
Restore `/dist` gitignore.
tofumatt Feb 17, 2025
d6c237a
Restore tab indentation in `settings.json`.
tofumatt Feb 17, 2025
d1161c5
Remove feature flag checks.
tofumatt Feb 17, 2025
5936ce8
Move WooCommerce "magic div" to WordPress hook.
tofumatt Feb 17, 2025
7da3abb
Remove unneeded import.
tofumatt Feb 18, 2025
f3a74dd
Move SiwG instance instantiation to constructor.
tofumatt Feb 18, 2025
513645d
Conditionally render the SiwG button in WooCommerce contexts.
tofumatt Feb 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
"fetchMock": false
},
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": [
"^@wordpress-core\/?.*"
]
}
],
"jsdoc/check-tag-names": "error",
"jsdoc/check-types": "error",
"jsdoc/check-line-alignment": [
Expand Down
20 changes: 13 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"search.exclude": {
".storybook/data": true,
"dist/": true,
"node_modules/": true,
"**/dist": true,
"**/node_modules/": true,
"**/composer.lock": true,
"**/package-lock.json": true,
"third-party/": true,
"vendor/": true
"**/vendor/": true
},
"files.exclude": {
"dist/": true,
"node_modules/": true,
"**/dist": true,
"coverage/": true,
"**/node_modules/": true,
"third-party/": true,
"vendor/": true
"**/vendor/": true
},
"jest.autoEnable": false,
"jest.pathToConfig": "./tests/js/jest.config.js",
Expand All @@ -28,5 +31,8 @@
},
"phpcs.enable": true,
"phpcs.executablePath": "vendor/bin/phpcs",
"stylelint.validate": [ "css", "scss" ]
"stylelint.validate": [
"css",
"scss"
]
}
44 changes: 44 additions & 0 deletions blocks/sign-in-with-google/Edit.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* Site Kit by Google, Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
* WordPress dependencies
*/
import { useBlockProps } from '@wordpress-core/block-editor';

/**
* Internal dependencies
*/
import SignInWithGoogleIcon from './icon.svg';

/**
* Sign in with Google Block Edit component.
*
* @since n.e.x.t
*
* @return {Element} Element to render.
*/
export default function Edit() {
const blockProps = useBlockProps();

return (
<div { ...blockProps }>
<div className="googlesitekit-blocks-sign-in-with-google">
<SignInWithGoogleIcon />
</div>
</div>
);
}
11 changes: 11 additions & 0 deletions blocks/sign-in-with-google/block.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "google-site-kit/sign-in-with-google",
"version": "1.146.0",
"title": "Sign in with Google",
"category": "widgets",
"icon": "google",
"description": "Allow users to sign in to your site using their Google Account.",
"textdomain": "google-site-kit/sign-in-with-google"
}
21 changes: 21 additions & 0 deletions blocks/sign-in-with-google/editor-styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* Sign in with Google block.
*
* Site Kit by Google, Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

.googlesitekit-blocks-sign-in-with-google {
max-width: 180px;
}
10 changes: 10 additions & 0 deletions blocks/sign-in-with-google/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions blocks/sign-in-with-google/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
* Site Kit by Google, Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import { registerBlockType } from '@wordpress-core/blocks';

/**
* Internal dependencies
*/
import Edit from './Edit';
import metadata from './block.json';

/**
* Registers the Sign in with Google block.
*
* @since n.e.x.t
*/
registerBlockType( metadata.name, {
edit: Edit,
} );
2 changes: 1 addition & 1 deletion includes/Modules/Reader_Revenue_Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ protected function setup_assets() {
$assets[] = new Script(
'googlesitekit-reader-revenue-manager-block-editor',
array(
'src' => $base_url . 'js/googlesitekit-reader-revenue-manager-block-editor.js',
'src' => $base_url . 'js/blocks/googlesitekit-reader-revenue-manager-block-editor.js',
'dependencies' => array(),
'load_contexts' => array( Asset::CONTEXT_ADMIN_POST_EDITOR ),
)
Expand Down
Loading
Loading