-
Notifications
You must be signed in to change notification settings - Fork 295
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
Enhancement/9846 fpm setup banner error handling #9969
Changes from 4 commits
265afaa
95f3834
2192776
1ff11aa
7a7d72c
4cf1dae
72216fc
a50e276
b48a6ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -36,6 +36,7 @@ import { | |||||||||||||||||||||||||||
} from '../../googlesitekit/notifications/datastore/constants'; | ||||||||||||||||||||||||||||
import { VIEW_CONTEXT_MAIN_DASHBOARD } from '../../googlesitekit/constants'; | ||||||||||||||||||||||||||||
import { FPM_SETUP_CTA_BANNER_NOTIFICATION } from '../../googlesitekit/notifications/constants'; | ||||||||||||||||||||||||||||
import { CORE_SITE } from '../../googlesitekit/datastore/site/constants'; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const NotificationWithComponentProps = withNotificationComponentProps( | ||||||||||||||||||||||||||||
FPM_SETUP_CTA_BANNER_NOTIFICATION | ||||||||||||||||||||||||||||
|
@@ -48,11 +49,59 @@ function Template() { | |||||||||||||||||||||||||||
export const Default = Template.bind(); | ||||||||||||||||||||||||||||
Default.storyName = 'FirstPartyModeSetupBanner'; | ||||||||||||||||||||||||||||
Default.scenario = {}; | ||||||||||||||||||||||||||||
Default.args = { | ||||||||||||||||||||||||||||
setupRegistry: () => { | ||||||||||||||||||||||||||||
fetchMock.post( | ||||||||||||||||||||||||||||
new RegExp( '^/google-site-kit/v1/core/site/data/fpm-settings' ), | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
body: JSON.stringify( { | ||||||||||||||||||||||||||||
isEnabled: true, | ||||||||||||||||||||||||||||
isFPMHealthy: true, | ||||||||||||||||||||||||||||
isScriptAccessEnabled: true, | ||||||||||||||||||||||||||||
} ), | ||||||||||||||||||||||||||||
status: 200, | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
export const ErrorOnCTAClick = Template.bind(); | ||||||||||||||||||||||||||||
ErrorOnCTAClick.storyName = 'ErrorOnCTAClick'; | ||||||||||||||||||||||||||||
ErrorOnCTAClick.scenario = {}; | ||||||||||||||||||||||||||||
ErrorOnCTAClick.args = { | ||||||||||||||||||||||||||||
setupRegistry: ( registry ) => { | ||||||||||||||||||||||||||||
fetchMock.post( | ||||||||||||||||||||||||||||
new RegExp( '^/google-site-kit/v1/core/site/data/fpm-settings' ), | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
body: JSON.stringify( { | ||||||||||||||||||||||||||||
code: 'test_error', | ||||||||||||||||||||||||||||
message: 'Test Error', | ||||||||||||||||||||||||||||
data: { | ||||||||||||||||||||||||||||
reason: 'test_reason', | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
} ), | ||||||||||||||||||||||||||||
status: 500, | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
registry.dispatch( CORE_SITE ).receiveError( | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
code: 'test_error', | ||||||||||||||||||||||||||||
message: 'Test Error', | ||||||||||||||||||||||||||||
data: {}, | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
'notificationAction', | ||||||||||||||||||||||||||||
[ FPM_SETUP_CTA_BANNER_NOTIFICATION ] | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
export default { | ||||||||||||||||||||||||||||
title: 'Modules/FirstPartyMode/Dashboard/FirstPartyModeSetupBanner', | ||||||||||||||||||||||||||||
decorators: [ | ||||||||||||||||||||||||||||
( Story ) => { | ||||||||||||||||||||||||||||
( Story, { args } ) => { | ||||||||||||||||||||||||||||
fetchMock.restore(); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can remove this.
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const setupRegistry = ( registry ) => { | ||||||||||||||||||||||||||||
provideModules( registry, [ | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
|
@@ -87,6 +136,8 @@ export default { | |||||||||||||||||||||||||||
status: 200, | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
args.setupRegistry?.( registry ); | ||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -247,6 +247,47 @@ describe( 'FirstPartyModeSetupBanner', () => { | |||||
} ); | ||||||
} ); | ||||||
|
||||||
it( 'should display the error when CTA is clicked', async () => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's make it more descriptive
Suggested change
|
||||||
fetchMock.postOnce( fpmSettingsEndpoint, { | ||||||
body: JSON.stringify( { | ||||||
code: 'test_error', | ||||||
message: 'Test Error', | ||||||
data: { | ||||||
reason: 'test_reason', | ||||||
}, | ||||||
} ), | ||||||
status: 500, | ||||||
} ); | ||||||
|
||||||
const { getByRole, getByText, waitForRegistry } = render( | ||||||
<FPMBannerComponent />, | ||||||
{ | ||||||
registry, | ||||||
viewContext: VIEW_CONTEXT_MAIN_DASHBOARD, | ||||||
} | ||||||
); | ||||||
|
||||||
await waitForRegistry(); | ||||||
|
||||||
fetchMock.post( dismissItemEndpoint, { | ||||||
body: JSON.stringify( [ FPM_SETUP_CTA_BANNER_NOTIFICATION ] ), | ||||||
status: 200, | ||||||
} ); | ||||||
|
||||||
fireEvent.click( | ||||||
getByRole( 'button', { | ||||||
name: 'Enable First-party mode', | ||||||
} ) | ||||||
); | ||||||
|
||||||
await waitFor( () => { | ||||||
expect( fetchMock ).toHaveFetched( fpmSettingsEndpoint ); | ||||||
expect( fetchMock ).not.toHaveFetched( dismissItemEndpoint ); | ||||||
} ); | ||||||
|
||||||
expect( getByText( 'Error: Test Error' ) ).toBeInTheDocument(); | ||||||
} ); | ||||||
|
||||||
it( 'should set FPM_SHOW_SETUP_SUCCESS_NOTIFICATION to true and invalidate the notifications queue resolution when the CTA button is clicked', async () => { | ||||||
const { getByRole, waitForRegistry } = render( <FPMBannerComponent />, { | ||||||
registry, | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,13 +33,16 @@ import { CORE_NOTIFICATIONS } from '../../datastore/constants'; | |
import { CORE_LOCATION } from '../../../datastore/location/constants'; | ||
import useNotificationEvents from '../../hooks/useNotificationEvents'; | ||
import { SpinnerButton } from 'googlesitekit-components'; | ||
import { CORE_SITE } from '../../../datastore/site/constants'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's move it below |
||
|
||
export default function CTALink( { | ||
id, | ||
ctaLink, | ||
ctaLabel, | ||
onCTAClick, | ||
dismissExpires = -1, | ||
dismissOnCTAClick = false, | ||
dismissExpires = 0, | ||
dismissOptions = { skipHidingFromQueue: true }, | ||
} ) { | ||
const [ isAwaitingCTAResponse, setIsAwaitingCTAResponse ] = | ||
useState( false ); | ||
|
@@ -53,28 +56,39 @@ export default function CTALink( { | |
: false; | ||
} ); | ||
|
||
const { clearError, receiveError } = useDispatch( CORE_SITE ); | ||
|
||
const { dismissNotification } = useDispatch( CORE_NOTIFICATIONS ); | ||
const { navigateTo } = useDispatch( CORE_LOCATION ); | ||
|
||
const handleCTAClick = async ( event ) => { | ||
clearError( 'notificationAction', [ id ] ); | ||
|
||
event.persist(); | ||
if ( ! event.defaultPrevented && ctaLink ) { | ||
event.preventDefault(); | ||
} | ||
|
||
setIsAwaitingCTAResponse( true ); | ||
await onCTAClick?.( event ); | ||
|
||
const { error } = ( await onCTAClick?.( event ) ) || {}; | ||
|
||
if ( isMounted() ) { | ||
setIsAwaitingCTAResponse( false ); | ||
} | ||
|
||
if ( error ) { | ||
receiveError( error, 'notificationAction', [ id ] ); | ||
return; | ||
} | ||
|
||
const ctaClickActions = [ trackEvents.confirm() ]; | ||
|
||
if ( dismissExpires >= 0 ) { | ||
if ( dismissOnCTAClick ) { | ||
ctaClickActions.push( | ||
dismissNotification( id, { | ||
...dismissOptions, | ||
expiresInSeconds: dismissExpires, | ||
skipHidingFromQueue: true, | ||
} ) | ||
); | ||
} | ||
|
@@ -105,5 +119,7 @@ CTALink.propTypes = { | |
ctaLink: PropTypes.string, | ||
ctaLabel: PropTypes.string, | ||
onCTAClick: PropTypes.func, | ||
dismissOnCTAClick: PropTypes.bool, | ||
dismissExpires: PropTypes.number, | ||
dismissOptions: PropTypes.object, | ||
}; |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,53 @@ | ||||||
/** | ||||||
* Site Kit by Google, Copyright 2024 Google LLC | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
* | ||||||
* 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. | ||||||
*/ | ||||||
|
||||||
/** | ||||||
* External dependencies | ||||||
*/ | ||||||
import PropTypes from 'prop-types'; | ||||||
|
||||||
/* | ||||||
* WordPress dependencies | ||||||
*/ | ||||||
import { useEffect } from '@wordpress/element'; | ||||||
|
||||||
/** | ||||||
* Internal dependencies | ||||||
*/ | ||||||
import { useDispatch, useSelect } from 'googlesitekit-data'; | ||||||
import { CORE_SITE } from '../../../datastore/site/constants'; | ||||||
import ErrorText from '../../../../components/ErrorText'; | ||||||
|
||||||
export default function Error( { id } ) { | ||||||
const ctaError = useSelect( ( select ) => { | ||||||
return select( CORE_SITE ).getError( 'notificationAction', [ id ] ); | ||||||
} ); | ||||||
|
||||||
const { clearError } = useDispatch( CORE_SITE ); | ||||||
|
||||||
useEffect( () => { | ||||||
return () => { | ||||||
clearError( 'notificationAction', [ id ] ); | ||||||
}; | ||||||
}, [ clearError, id ] ); | ||||||
|
||||||
return ctaError ? <ErrorText message={ ctaError.message } /> : null; | ||||||
} | ||||||
|
||||||
// eslint-disable-next-line sitekit/acronym-case | ||||||
Error.propTypes = { | ||||||
id: PropTypes.string, | ||||||
}; |
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 unnecessary. We can remove it.