File size: 15,224 Bytes
ec4551b | 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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | 'use client';
import React, { FC, useCallback, useEffect, useMemo, useState } from 'react';
import useSWR from 'swr';
import { useFetch } from '@gitroom/helpers/utils/custom.fetch';
import { useVariables } from '@gitroom/react/helpers/variable.context';
import { loadStripe, Stripe } from '@stripe/stripe-js';
import { OrganizationSelector } from '@gitroom/frontend/components/layout/organization.selector';
import { LanguageComponent } from '@gitroom/frontend/components/layout/language.component';
import { AttachToFeedbackIcon } from '@gitroom/frontend/components/new-layout/sentry.feedback.component';
import NotificationComponent from '@gitroom/frontend/components/notifications/notification.component';
import dynamic from 'next/dynamic';
import { LogoTextComponent } from '@gitroom/frontend/components/ui/logo-text.component';
import { pricing } from '@gitroom/nestjs-libraries/database/prisma/subscriptions/pricing';
import { capitalize } from 'lodash';
import clsx from 'clsx';
import { LoadingComponent } from '@gitroom/frontend/components/layout/loading';
import { CheckIconComponent } from '@gitroom/frontend/components/ui/check.icon.component';
import {
FAQComponent,
FAQSection,
} from '@gitroom/frontend/components/billing/faq.component';
import { useT } from '@gitroom/react/translation/get.transation.service.client';
import { useUser } from '@gitroom/frontend/components/layout/user.context';
import { useDubClickId } from '@gitroom/frontend/components/layout/dubAnalytics';
import SafeImage from '@gitroom/react/helpers/safe.image';
import { useModals } from '@gitroom/frontend/components/layout/new-modal';
import useCookie from 'react-use-cookie';
import { LogoutComponent } from '@gitroom/frontend/components/layout/logout.component';
import { DeveloperIconComponent } from '@gitroom/frontend/components/developer/developer.icon.component';
const ModeComponent = dynamic(
() => import('@gitroom/frontend/components/layout/mode.component'),
{
ssr: false,
}
);
const EmbeddedBilling = dynamic(
() =>
import('@gitroom/frontend/components/billing/embedded.billing').then(
(mod) => mod.EmbeddedBilling
),
{
ssr: false,
}
);
export const FirstBillingComponent = () => {
const { stripeClient } = useVariables();
const user = useUser();
const dub = useDubClickId();
const [stripe, setStripe] = useState<null | Promise<Stripe>>(null);
const [tier, setTier] = useState('STANDARD');
const [period, setPeriod] = useState('MONTHLY');
const fetch = useFetch();
const modals = useModals();
const t = useT();
const [datafast_visitor_id] = useCookie('datafast_visitor_id', '');
const [datafast_session_id] = useCookie('datafast_session_id', '');
useEffect(() => {
setStripe(loadStripe(stripeClient));
}, []);
const loadCheckout = useCallback(async () => {
return (
await fetch('/billing/embedded', {
method: 'POST',
body: JSON.stringify({
billing: tier,
period: period,
...(datafast_visitor_id && datafast_session_id
? { datafast_visitor_id, datafast_session_id }
: {}),
...(dub ? { dub } : {}),
}),
})
).json();
}, [tier, period]);
const showYouTube = () => {
modals.openModal({
title: 'Grow Fast With Postiz (Play the video)',
children: (
<iframe
className="h-full aspect-video min-w-[800px]"
src="https://www.youtube.com/embed/BdsCVvEYgHU?si=vvhaZJ8I5oXXvVJS?autoplay=1"
title="Postiz Tutorial"
allow="autoplay"
allowFullScreen
/>
),
});
};
const { data, isLoading } = useSWR(
`/billing-${tier}-${period}`,
loadCheckout,
{
revalidateOnFocus: false,
revalidateOnReconnect: false,
revalidateIfStale: false,
refreshWhenOffline: false,
refreshWhenHidden: false,
}
);
const price = useMemo(
() => Object.entries(pricing).filter(([key, value]) => key !== 'FREE'),
[]
);
const JoinOver = () => {
return (
<>
<div className="text-[46px] font-[600] leading-[110%] tablet:text-[36px] mobile:!text-[30px] whitespace-pre-line text-balance">
{t('billing_join_over', 'Join Over')}{' '}
<span className="text-[#FC69FF]">
{t('billing_entrepreneurs_count', '20,000+ Entrepreneurs')}
</span>{' '}
{t('billing_who_use', 'who use')}{' '}
{t(
'billing_postiz_grow_social',
'Postiz To Grow Their Social Presence'
)}
</div>
<div className="flex" onClick={showYouTube}>
<div className="tablet:mb-[32px] cursor-pointer mt-[32px] flex gap-[10px] items-center underline hover:font-[700]">
<div>
<SafeImage
className="text-[12px]"
src="/icons/platforms/youtube.svg"
width={22.5}
height={16}
alt="YouTube"
/>
</div>
<div>See the power of Postiz (click here)</div>
</div>
</div>
{!!user?.allowTrial && (
<div className="flex mt-[32px] mb-[10px] gap-[15px] tablet:mt-[32px] tablet:mb-[32px] text-[16px] font-[500] mobile:flex-col">
<div className="flex gap-[8px]">
<div>
<CheckIconComponent />
</div>
<div>{t('billing_no_risk_trial', '100% No-Risk Free Trial')}</div>
</div>
<div className="flex-1 flex gap-[8px] justify-center mobile:justify-start">
<div>
<CheckIconComponent />
</div>
<div>
{t(
'billing_pay_nothing_7_days',
'Pay NOTHING for the first 7-days'
)}
</div>
</div>
<div className="flex gap-[8px]">
<div>
<CheckIconComponent />
</div>
<div>
{t('billing_cancel_anytime', 'Cancel anytime, from settings')}
</div>
</div>
</div>
)}
</>
);
};
return (
<div className="blurMe flex flex-1 flex-col bg-newBgColorInner pb-[60px] mobile:pb-[100px]">
<div className="h-[92px] px-[80px] tablet:px-[32px] mobile:!px-[16px] py-[20px] flex border-b border-newColColor">
<div className="flex-1 flex items-center text-textColor">
<LogoTextComponent />
</div>
<div className="flex items-center">
<div className="flex gap-[20px] text-textItemBlur">
<OrganizationSelector />
<div className="hover:text-newTextColor">
<ModeComponent />
</div>
<div className="w-[1px] h-[20px] bg-blockSeparator" />
<LanguageComponent />
<div className="w-[1px] h-[20px] bg-blockSeparator" />
<AttachToFeedbackIcon />
<DeveloperIconComponent />
{/*<NotificationComponent />*/}
<div className="hover:text-newTextColor">
{user?.tier.current === 'FREE' && (
<LogoutComponent isIcon={true} />
)}
</div>
</div>
</div>
</div>
<div className="flex px-[80px] tablet:px-[32px] mobile:!px-[16px] flex-1 flex-row tablet:flex-none tablet:flex-col-reverse">
<div className="flex-1 py-[40px] tablet:pt-[80px] flex flex-col pe-[40px] tablet:pe-0">
<div className="block tablet:hidden">
<JoinOver />
</div>
{!isLoading && data && stripe ? (
<EmbeddedBilling
stripe={stripe}
secret={data.client_secret}
showCoupon={period === 'MONTHLY'}
autoApplyCoupon={data.auto_apply_coupon}
/>
) : (
<LoadingComponent />
)}
</div>
<div className="flex flex-col ps-[40px] tablet:!ps-[0] border-l border-newColColor py-[40px] mobile:!pt-[24px] tablet:border-none tablet:pb-0">
<div className="top-[20px] sticky">
<div className="hidden tablet:block">
<JoinOver />
</div>
<div className="flex mb-[24px] mobile:flex-col">
<div className="flex-1 text-[24px] font-[700]">
{t('billing_choose_plan', 'Choose a Plan')}
</div>
<div className="h-[44px] px-[6px] mobile:px-0 flex items-center justify-center mobile:justify-start gap-[12px] border border-newColColor rounded-[12px] select-none">
<div
className={clsx(
'h-[32px] mobile:flex-1 rounded-[6px] text-[16px] px-[12px] flex justify-center items-center',
period === 'MONTHLY'
? 'bg-boxFocused text-textItemFocused'
: 'cursor-pointer'
)}
onClick={() => setPeriod('MONTHLY')}
>
{t('billing_monthly', 'Monthly')}
</div>
<div
className={clsx(
'gap-[10px] h-[32px] mobile:flex-1 rounded-[6px] text-[16px] px-[12px] flex justify-center items-center',
period === 'YEARLY'
? 'bg-boxFocused text-textItemFocused'
: 'cursor-pointer'
)}
onClick={() => setPeriod('YEARLY')}
>
<div>{t('billing_yearly', 'Yearly')}</div>
<div className="bg-[#AA0FA4] text-[white] px-[8px] rounded-[4px] mobile:hidden">
{t('billing_20_percent_off', '20% Off')}
</div>
</div>
</div>
</div>
<div className="grid grid-cols-2 gap-[8px] mobile:!grid-cols-2 tablet:grid-cols-4">
{price.map(
([key, value]) => (
<div
onClick={() => setTier(key)}
key={key}
className={clsx(
'cursor-pointer select-none w-[266px] h-[138px] tablet:w-full tablet:h-[124px] p-[24px] tablet:p-[15px] rounded-[20px] flex flex-col',
key === tier
? 'border-[1.5px] border-[#618DFF]'
: 'border-[1.5px] border-newColColor'
)}
>
<div className="text-[20px] mobile:text-[18px] font-[500]">
{capitalize(key)}
</div>
<div className="text-[24px] mobile:text-[18px] font-[400]">
<span className="text-[44px] mobile:text-[30px] font-[600]">
$
{
value[
period === 'MONTHLY' ? 'month_price' : 'year_price'
]
}
</span>{' '}
{period === 'MONTHLY'
? t('billing_per_month', '/ month')
: t('billing_per_year', '/ year')}
</div>
</div>
),
[]
)}
</div>
<div className="flex flex-col mt-[54px] gap-[24px] tablet:mt-[40px]">
<div className="text-[24px] font-[700]">
{t('billing_features', 'Features')}
</div>
<BillingFeatures tier={tier} />
</div>
<div className="flex flex-col mobile:hidden tablet:hidden">
{/*<div>asd</div>*/}
<FAQComponent />
</div>
</div>
</div>
</div>
</div>
);
};
type FeatureItem = {
key: string;
defaultValue: string;
prefix?: string | number;
};
export const BillingFeatures: FC<{ tier: string }> = ({ tier }) => {
const t = useT();
const features = useMemo(() => {
const currentPricing = pricing[tier];
const channelsOr = currentPricing.channel;
const list: FeatureItem[] = [];
list.push({
key: channelsOr === 1 ? 'billing_channel' : 'billing_channels',
defaultValue: channelsOr === 1 ? 'channel' : 'channels',
prefix: channelsOr,
});
list.push({
key: 'billing_posts_per_month',
defaultValue: 'posts per month',
prefix:
currentPricing.posts_per_month > 10000
? 'unlimited'
: currentPricing.posts_per_month,
});
if (currentPricing.team_members) {
list.push({
key: 'billing_unlimited_team_members',
defaultValue: 'Unlimited team members',
});
}
if (currentPricing?.ai) {
list.push({
key: 'billing_ai_auto_complete',
defaultValue: 'AI auto-complete',
});
list.push({ key: 'billing_ai_copilots', defaultValue: 'AI copilots' });
list.push({
key: 'billing_ai_autocomplete',
defaultValue: 'AI Autocomplete',
});
}
list.push({
key: 'billing_advanced_picture_editor',
defaultValue: 'Advanced Picture Editor',
});
if (currentPricing?.image_generator) {
list.push({
key: 'billing_ai_images_per_month',
defaultValue: 'AI Images per month',
prefix: currentPricing?.image_generation_count,
});
}
if (currentPricing?.generate_videos) {
list.push({
key: 'billing_ai_videos_per_month',
defaultValue: 'AI Videos per month',
prefix: currentPricing?.generate_videos,
});
}
return list;
}, [tier]);
const renderFeature = (feature: FeatureItem) => {
const translatedText = t(feature.key, feature.defaultValue);
if (feature.prefix === 'unlimited') {
return `${t('billing_unlimited', 'Unlimited')} ${translatedText}`;
}
if (feature.prefix !== undefined) {
return `${feature.prefix} ${translatedText}`;
}
return translatedText;
};
return (
<div className="grid grid-cols-2 mobile:grid-cols-1 gap-y-[8px] gap-x-[32px]">
{features.map((feature) => (
<div key={feature.key} className="flex items-center gap-[8px]">
<div>
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
>
<path
d="M11.825 0H4.84167C1.80833 0 0 1.80833 0 4.84167V11.8167C0 14.8583 1.80833 16.6667 4.84167 16.6667H11.8167C14.85 16.6667 16.6583 14.8583 16.6583 11.825V4.84167C16.6667 1.80833 14.8583 0 11.825 0ZM12.3167 6.41667L7.59167 11.1417C7.475 11.2583 7.31667 11.325 7.15 11.325C6.98333 11.325 6.825 11.2583 6.70833 11.1417L4.35 8.78333C4.10833 8.54167 4.10833 8.14167 4.35 7.9C4.59167 7.65833 4.99167 7.65833 5.23333 7.9L7.15 9.81667L11.4333 5.53333C11.675 5.29167 12.075 5.29167 12.3167 5.53333C12.5583 5.775 12.5583 6.16667 12.3167 6.41667Z"
fill="currentColor"
/>
</svg>
</div>
<div>{renderFeature(feature)}</div>
</div>
))}
</div>
);
};
|