2023-08-28 01:28:05 +00:00
/ * *
* WordPress dependencies
* /
/* eslint-disable @woocommerce/dependency-group */
/* eslint-disable @typescript-eslint/ban-ts-comment */
import { createInterpolateElement } from '@wordpress/element' ;
import {
// @ts-ignore No types for this exist yet.
__experimentalItemGroup as ItemGroup ,
// @ts-ignore No types for this exist yet.
__experimentalNavigatorButton as NavigatorButton ,
// @ts-ignore No types for this exist yet.
__experimentalHeading as Heading ,
} from '@wordpress/components' ;
import { __ } from '@wordpress/i18n' ;
import {
siteLogo ,
color ,
typography ,
header ,
home ,
footer ,
} from '@wordpress/icons' ;
// @ts-ignore No types for this exist yet.
import SidebarNavigationItem from '@wordpress/edit-site/build-module/components/sidebar-navigation-item' ;
import { Link } from '@woocommerce/components' ;
2023-09-19 03:37:46 +00:00
import { recordEvent } from '@woocommerce/tracks' ;
2023-08-28 01:28:05 +00:00
/ * *
* Internal dependencies
* /
import { SidebarNavigationScreen } from './sidebar-navigation-screen' ;
import { ADMIN_URL } from '~/utils/admin-settings' ;
export const SidebarNavigationScreenMain = ( ) = > {
return (
< SidebarNavigationScreen
isRoot
title = { __ ( "Let's get creative" , 'woocommerce' ) }
description = { createInterpolateElement (
__ (
'Use our style and layout tools to customize the design of your store. Content and images can be added or changed via the <EditorLink>Editor</EditorLink> later.' ,
'woocommerce'
) ,
{
EditorLink : (
< Link
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_editor_link_click' ,
{
source : 'main' ,
}
) ;
window . open (
` ${ ADMIN_URL } site-editor.php ` ,
'_blank'
) ;
return false ;
} }
href = ""
2023-08-28 01:28:05 +00:00
/ >
) ,
}
) }
content = {
< >
< div className = "edit-site-sidebar-navigation-screen-patterns__group-header" >
< Heading level = { 2 } >
{ __ ( 'Style' , 'woocommerce' ) }
< / Heading >
< / div >
< ItemGroup >
< NavigatorButton
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/logo"
2023-08-28 01:28:05 +00:00
withChevron
icon = { siteLogo }
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_sidebar_item_click' ,
{
item : 'logo' ,
}
) ;
} }
2023-08-28 01:28:05 +00:00
>
{ __ ( 'Add your logo' , 'woocommerce' ) }
< / NavigatorButton >
< NavigatorButton
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/color-palette"
2023-08-28 01:28:05 +00:00
withChevron
icon = { color }
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_sidebar_item_click' ,
{
item : 'color-palette' ,
}
) ;
} }
2023-08-28 01:28:05 +00:00
>
{ __ ( 'Change the color palette' , 'woocommerce' ) }
< / NavigatorButton >
< NavigatorButton
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/typography"
2023-08-28 01:28:05 +00:00
withChevron
icon = { typography }
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_sidebar_item_click' ,
{
item : 'typography' ,
}
) ;
} }
2023-08-28 01:28:05 +00:00
>
{ __ ( 'Change fonts' , 'woocommerce' ) }
< / NavigatorButton >
< / ItemGroup >
< div className = "edit-site-sidebar-navigation-screen-patterns__group-header" >
< Heading level = { 2 } >
{ __ ( 'Layout' , 'woocommerce' ) }
< / Heading >
< / div >
< ItemGroup >
< NavigatorButton
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/header"
2023-08-28 01:28:05 +00:00
withChevron
icon = { header }
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_sidebar_item_click' ,
{
item : 'header' ,
}
) ;
} }
2023-08-28 01:28:05 +00:00
>
{ __ ( 'Change your header' , 'woocommerce' ) }
< / NavigatorButton >
< NavigatorButton
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/homepage"
2023-08-28 01:28:05 +00:00
withChevron
icon = { home }
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_sidebar_item_click' ,
{
item : 'home' ,
}
) ;
} }
2023-08-28 01:28:05 +00:00
>
{ __ ( 'Change your homepage' , 'woocommerce' ) }
< / NavigatorButton >
< NavigatorButton
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/footer"
2023-08-28 01:28:05 +00:00
withChevron
icon = { footer }
2023-09-19 03:37:46 +00:00
onClick = { ( ) = > {
recordEvent (
'customize_your_store_assembler_hub_sidebar_item_click' ,
{
item : 'footer' ,
}
) ;
} }
2023-08-28 01:28:05 +00:00
>
{ __ ( 'Change your footer' , 'woocommerce' ) }
< / NavigatorButton >
2023-09-19 03:37:46 +00:00
{ /* TODO: Turn on this in Phrase 2 */ }
{ / * < N a v i g a t o r B u t t o n
2023-08-28 01:28:05 +00:00
as = { SidebarNavigationItem }
2023-09-12 06:32:50 +00:00
path = "/customize-store/assembler-hub/pages"
2023-08-28 01:28:05 +00:00
withChevron
icon = { pages }
>
{ __ ( 'Add and edit other pages' , 'woocommerce' ) }
2023-09-19 03:37:46 +00:00
< / NavigatorButton > * / }
2023-08-28 01:28:05 +00:00
< / ItemGroup >
< / >
}
/ >
) ;
} ;