2024-04-08 08:29:49 +00:00
/ * *
* External dependencies
* /
import { __ } from '@wordpress/i18n' ;
import { TourKit } from '@woocommerce/components' ;
import { createInterpolateElement } from '@wordpress/element' ;
/ * *
* Internal dependencies
* /
import './style.scss' ;
export const SiteVisibilityTour = ( { onClose } : { onClose : ( ) = > void } ) = > {
return (
< TourKit
config = { {
placement : 'bottom' ,
options : {
effects : {
arrowIndicator : true ,
autoScroll : {
behavior : 'auto' ,
block : 'center' ,
} ,
liveResize : {
mutation : true ,
resize : true ,
rootElementSelector : '#wpwrap' ,
} ,
} ,
popperModifiers : [
{
name : 'auto' ,
enabled : true ,
phase : 'beforeWrite' ,
requires : [ 'computeStyles' ] ,
} ,
{
name : 'offset' ,
options : {
offset : ( ) = > {
return [ 52 , 16 ] ;
} ,
} ,
} ,
] ,
classNames : 'woocommerce-lys-homescreen-status-tour-kit' ,
} ,
steps : [
{
referenceElements : {
2024-08-20 08:36:20 +00:00
desktop :
'#wp-admin-bar-woocommerce-site-visibility-badge' ,
2024-04-08 08:29:49 +00:00
} ,
meta : {
name : 'set-your-store-visibility' ,
heading : __ (
2024-08-20 09:13:17 +00:00
'Set your store’ s visibility' ,
2024-04-08 08:29:49 +00:00
'woocommerce'
) ,
descriptions : {
desktop : createInterpolateElement (
__ (
2024-08-20 09:13:17 +00:00
'Launch your store only when you’ re ready to by switching between "Coming soon" and "Live" modes. Build excitement by creating a custom page visitors will see before you’ re ready to go live. <link>Discover more</link>' ,
2024-04-08 08:29:49 +00:00
'woocommerce'
) ,
{
2024-06-04 02:33:39 +00:00
link : (
// eslint-disable-next-line jsx-a11y/anchor-has-content
< a
href = "https://woocommerce.com/document/configuring-woocommerce-settings/coming-soon-mode/"
target = "_blank"
rel = "noreferrer"
/ >
) ,
2024-04-08 08:29:49 +00:00
}
) ,
} ,
} ,
} ,
] ,
closeHandler : onClose ,
} }
> < / TourKit >
) ;
} ;