mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
73bc3418a2
GitOrigin-RevId: fcc88a362c3e97c9fddf85d47c3a83a0a0b89432
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
import { useTranslation } from 'react-i18next'
|
|
import { useEditorContext } from '../../../shared/context/editor-context'
|
|
import PreviewLogsPaneEntry from '../../preview/components/preview-logs-pane-entry'
|
|
import Icon from '../../../shared/components/icon'
|
|
import StartFreeTrialButton from '../../../shared/components/start-free-trial-button'
|
|
import { memo } from 'react'
|
|
|
|
function TimeoutUpgradePrompt() {
|
|
const { t } = useTranslation()
|
|
|
|
const { hasPremiumCompile, isProjectOwner } = useEditorContext()
|
|
|
|
if (!window.ExposedSettings.enableSubscriptions || hasPremiumCompile) {
|
|
return
|
|
}
|
|
|
|
return (
|
|
<PreviewLogsPaneEntry
|
|
headerTitle={
|
|
isProjectOwner
|
|
? t('upgrade_for_longer_compiles')
|
|
: t('ask_proj_owner_to_upgrade_for_longer_compiles')
|
|
}
|
|
formattedContent={
|
|
<>
|
|
<p>{t('free_accounts_have_timeout_upgrade_to_increase')}</p>
|
|
<p>{t('plus_upgraded_accounts_receive')}:</p>
|
|
<div>
|
|
<ul className="list-unstyled">
|
|
<li>
|
|
<Icon type="check" />
|
|
|
|
{t('unlimited_projects')}
|
|
</li>
|
|
<li>
|
|
<Icon type="check" />
|
|
|
|
{t('collabs_per_proj', { collabcount: 'Multiple' })}
|
|
</li>
|
|
<li>
|
|
<Icon type="check" />
|
|
|
|
{t('full_doc_history')}
|
|
</li>
|
|
<li>
|
|
<Icon type="check" />
|
|
|
|
{t('sync_to_dropbox')}
|
|
</li>
|
|
<li>
|
|
<Icon type="check" />
|
|
|
|
{t('sync_to_github')}
|
|
</li>
|
|
<li>
|
|
<Icon type="check" />
|
|
|
|
{t('compile_larger_projects')}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{isProjectOwner && (
|
|
<p className="text-center">
|
|
<StartFreeTrialButton
|
|
source="compile-timeout"
|
|
buttonStyle="success"
|
|
classes={{ button: 'row-spaced-small' }}
|
|
/>
|
|
</p>
|
|
)}
|
|
</>
|
|
}
|
|
entryAriaLabel={
|
|
isProjectOwner
|
|
? t('upgrade_for_longer_compiles')
|
|
: t('ask_proj_owner_to_upgrade_for_longer_compiles')
|
|
}
|
|
level="success"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default memo(TimeoutUpgradePrompt)
|