mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-25 23:58:15 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
39 lines
1.9 KiB
TypeScript
39 lines
1.9 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import CustomWebAppBrand from '../custom-web-app-brand'
|
|
import { useProviderContext } from '@/context/provider-context'
|
|
import { Plan } from '@/app/components/billing/type'
|
|
import { contactSalesUrl } from '@/app/components/billing/config'
|
|
import { useModalContext } from '@/context/modal-context'
|
|
|
|
const CustomPage = () => {
|
|
const { t } = useTranslation()
|
|
const { plan, enableBilling } = useProviderContext()
|
|
const { setShowPricingModal } = useModalContext()
|
|
const showBillingTip = enableBilling && plan.type === Plan.sandbox
|
|
const showContact = enableBilling && (plan.type === Plan.professional || plan.type === Plan.team)
|
|
|
|
return (
|
|
<div className='flex flex-col'>
|
|
{showBillingTip && (
|
|
<div className='mb-1 flex justify-between rounded-xl bg-gradient-to-r from-components-input-border-active-prompt-1 to-components-input-border-active-prompt-2 p-4 pl-6 shadow-lg backdrop-blur-sm'>
|
|
<div className='space-y-1 text-text-primary-on-surface'>
|
|
<div className='title-xl-semi-bold'>{t('custom.upgradeTip.title')}</div>
|
|
<div className='system-sm-regular'>{t('custom.upgradeTip.des')}</div>
|
|
</div>
|
|
<div className='system-md-semibold flex h-10 w-[120px] cursor-pointer items-center justify-center rounded-3xl bg-white text-text-accent shadow-xs hover:opacity-95' onClick={() => setShowPricingModal()}>{t('billing.upgradeBtn.encourageShort')}</div>
|
|
</div>
|
|
)}
|
|
<CustomWebAppBrand />
|
|
{showContact && (
|
|
<div className='absolute bottom-0 h-[50px] text-xs leading-[50px] text-text-quaternary'>
|
|
{t('custom.customize.prefix')}
|
|
<a className='text-text-accent' href={contactSalesUrl} target='_blank' rel='noopener noreferrer'>{t('custom.customize.contactUs')}</a>
|
|
{t('custom.customize.suffix')}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default CustomPage
|