File size: 5,889 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
import { Button, Dialog } from '@automattic/components';
import { formatNumber } from '@automattic/number-formatters';
import styled from '@emotion/styled';
import { useTranslate } from 'i18n-calypso';
import { CHARACTER_LIMIT } from './section-types/constants';
const DialogContent = styled.div`
padding: 16px;
p {
font-size: 1rem;
color: var( --studio-gray-50 );
}
ul {
margin-inline-start: 1rem;
}
li {
margin-bottom: 1rem;
}
`;
const DialogButton = styled( Button )`
box-shadow: 0px 1px 2px rgba( 0, 0, 0, 0.05 );
border-radius: 5px;
padding: ${ ( props ) => ( props.primary ? '10px 64px' : '10px 32px' ) };
--color-accent: var( --studio-blue-50 );
--color-accent-60: var( --studio-blue-60 );
.gridicon {
margin-left: 10px;
}
`;
export function ConfirmDialog( {
isConfirmDialogOpen,
setIsConfirmDialogOpen,
onSubmit,
}: {
isConfirmDialogOpen: boolean;
setIsConfirmDialogOpen: ( arg0: boolean ) => void;
onSubmit: () => void;
} ) {
const translate = useTranslate();
const dialogButtons = [
<DialogButton key="cancel" onClick={ () => setIsConfirmDialogOpen( false ) }>
{ translate( 'Cancel' ) }
</DialogButton>,
<DialogButton key="submit" primary onClick={ onSubmit }>
{ translate( 'Submit' ) }
</DialogButton>,
];
return (
<Dialog
isVisible={ isConfirmDialogOpen }
onClose={ () => setIsConfirmDialogOpen( false ) }
buttons={ dialogButtons }
>
<DialogContent>
<h1>{ translate( 'Are you ready to submit your content?' ) }</h1>
<p>
{ translate(
'If you have reviewed our content guidelines and added your final content to the form, click “Submit” to send us your content. If everything meets our guidelines, we’ll build your new site and email you the details within %d business days. If adjustments are needed, we’ll reach out.',
{
args: [ 4 ],
}
) }
</p>
</DialogContent>
</Dialog>
);
}
export function ContentGuidelinesDialog( {
isContentGuidelinesDialogOpen,
setIsContentGuidelinesDialogOpen,
}: {
isContentGuidelinesDialogOpen: boolean;
setIsContentGuidelinesDialogOpen: ( arg0: boolean ) => void;
} ) {
const translate = useTranslate();
return (
<Dialog
isVisible={ isContentGuidelinesDialogOpen }
onClose={ () => setIsContentGuidelinesDialogOpen( false ) }
buttons={ [
<DialogButton
key="primary"
primary
onClick={ () => setIsContentGuidelinesDialogOpen( false ) }
>
{ translate( 'Acknowledge & Continue' ) }
</DialogButton>,
] }
>
<DialogContent>
<h1>{ translate( 'We look forward to building your site!' ) }</h1>
<p>{ translate( 'Please review the following content submission guidelines:' ) }</p>
<ul>
<li>
{ translate(
'{{strong}}Fresh Content Only:{{/strong}} Please provide original content rather than requesting migrations or content from existing pages, external websites, or files.',
{
components: {
strong: <strong />,
},
}
) }
</li>
<li>
{ translate(
"{{strong}}Timely Submission:{{/strong}} Submit your content {{strong}}within %(refundPeriodDays)d days{{/strong}} of purchase to keep things on track. If we don't receive it in time, we'll use AI-generated text and stock images based on your search terms to bring your site to life.",
{
components: {
strong: <strong />,
},
args: {
refundPeriodDays: 14,
},
}
) }
</li>
<li>
{ translate(
'{{strong}}Bite-sized Content:{{/strong}} Keep each page under %s characters. Longer content will be trimmed using AI to ensure everything looks great.',
{
components: {
strong: <strong />,
},
args: [ formatNumber( CHARACTER_LIMIT ) ],
}
) }
</li>
<li>
{ translate(
"{{strong}}Design Approach:{{/strong}} We follow established design guidelines while customizing your site to reflect your brand. With your logo, colors, and style preferences, we'll create a professional site that captures your essence using our curated design elements.",
{
components: {
strong: <strong />,
},
}
) }
</li>
<li>
{ translate(
"{{strong}}Stay Connected:{{/strong}} After you submit your content, we'll review it. If everything meets our guidelines, we'll notify you when your site is ready for launch. If adjustments are needed, we'll reach out.",
{
components: {
strong: <strong />,
},
}
) }
</li>
<li>
{ translate(
"{{strong}}Perfect As-Is:{{/strong}} We aim to get it right the first time! While revisions aren't included, you can always make updates later using the WordPress editor.",
{
components: {
strong: <strong />,
},
}
) }
</li>
<li>
{ translate(
"{{strong}}Plugin Potential:{{/strong}} The initial setup doesn't include every feature, but it's a great starting point. Add options like appointments, courses, property listings, memberships, payments, animations, and more after we finish your site. Our Happiness Engineers can make recommendations based on your plan.",
{
components: {
strong: <strong />,
},
}
) }
</li>
<li>
{ translate(
"{{strong}}Custom Requests:{{/strong}} We focus on attractive and functional designs, but we can't accommodate very specific layout requests or exact matches to designs. For fully custom solutions or pixel-perfect recreations, we can connect you with an expert WordPress agency partner, with projects starting at $5,000.",
{
components: {
strong: <strong />,
},
}
) }
</li>
</ul>
</DialogContent>
</Dialog>
);
}
|