| import { isEnabled } from '@automattic/calypso-config'; | |
| import { SelectItem, SelectItemAlt } from '@automattic/onboarding'; | |
| import { useTranslate } from 'i18n-calypso'; | |
| import { build, write, shoppingCart } from '../../icons'; | |
| import type { IntentFlag } from './types'; | |
| type Intent = SelectItem< IntentFlag >; | |
| type IntentAlt = SelectItemAlt< IntentFlag >; | |
| export const useIntents = (): Intent[] => { | |
| const translate = useTranslate(); | |
| const intents: Intent[] = [ | |
| { | |
| key: 'write', | |
| title: translate( 'Write' ), | |
| description: <p>{ translate( 'Share your ideas with the world' ) }</p>, | |
| icon: write, | |
| value: 'write', | |
| actionText: translate( 'Start writing' ), | |
| }, | |
| { | |
| key: 'build', | |
| title: translate( 'Build' ), | |
| description: <p>{ translate( 'Begin creating your website' ) }</p>, | |
| icon: build, | |
| value: 'build', | |
| actionText: translate( 'Start building' ), | |
| }, | |
| ]; | |
| if ( isEnabled( 'seller-experience' ) ) { | |
| intents.push( { | |
| key: 'sell', | |
| title: translate( 'Sell' ), | |
| description: <p>{ translate( 'Set up an online store' ) }</p>, | |
| icon: shoppingCart, | |
| value: 'sell', | |
| actionText: translate( 'Start selling' ), | |
| } ); | |
| } | |
| return intents; | |
| }; | |
| export const useIntentsAlt = ( canImport: boolean ): IntentAlt[] => { | |
| const translate = useTranslate(); | |
| return [ | |
| { | |
| show: true, | |
| key: 'wpadmin', | |
| description: translate( "Know what you're doing?" ), | |
| value: 'wpadmin', | |
| disable: false, | |
| disableText: '', | |
| actionText: translate( 'Start from scratch' ), | |
| }, | |
| { | |
| show: isEnabled( 'onboarding/import' ), | |
| key: 'import', | |
| description: translate( 'Already have an existing website?' ), | |
| value: 'import', | |
| actionText: translate( 'Import your site content' ), | |
| disable: ! canImport, | |
| disableText: translate( | |
| "You're not authorized to import content.{{br/}}Please check with your site admin.", | |
| { | |
| components: { | |
| br: <br />, | |
| }, | |
| } | |
| ), | |
| }, | |
| ]; | |
| }; | |