From 9ce0bc383849695b6e349843c46becb607f36b5d Mon Sep 17 00:00:00 2001 From: Xiao Yijun Date: Fri, 17 Nov 2023 17:18:11 +0800 Subject: [PATCH] refactor(console): update dev tenant migration phrases (#4907) --- .../DevelopmentTenantFeatures/index.tsx | 36 -------- .../index.module.scss | 18 ---- .../DevelopmentTenantMigrationHint/index.tsx | 46 ---------- .../TenantEnvMigrationModal/index.module.scss | 31 ++++--- .../TenantEnvMigrationModal/index.tsx | 89 +++++++------------ .../DevelopmentTenantNotification/index.tsx | 6 +- .../de/translation/admin-console/tenants.ts | 37 ++++---- .../en/translation/admin-console/tenants.ts | 29 +++--- .../es/translation/admin-console/tenants.ts | 37 ++++---- .../fr/translation/admin-console/tenants.ts | 38 ++++---- .../it/translation/admin-console/tenants.ts | 37 ++++---- .../ja/translation/admin-console/tenants.ts | 37 ++++---- .../ko/translation/admin-console/tenants.ts | 36 ++++---- .../translation/admin-console/tenants.ts | 37 ++++---- .../translation/admin-console/tenants.ts | 37 ++++---- .../translation/admin-console/tenants.ts | 37 ++++---- .../ru/translation/admin-console/tenants.ts | 37 ++++---- .../translation/admin-console/tenants.ts | 38 ++++---- .../translation/admin-console/tenants.ts | 34 ++++--- .../translation/admin-console/tenants.ts | 34 ++++--- .../translation/admin-console/tenants.ts | 34 ++++--- 21 files changed, 358 insertions(+), 407 deletions(-) delete mode 100644 packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantFeatures/index.tsx delete mode 100644 packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.module.scss delete mode 100644 packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.tsx diff --git a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantFeatures/index.tsx b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantFeatures/index.tsx deleted file mode 100644 index 00e5bc2df..000000000 --- a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantFeatures/index.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import PlanQuotaList from '@/components/PlanQuotaList'; -import { comingSoonQuotaKeys } from '@/consts/plan-quotas'; -import { ReservedPlanId } from '@/consts/subscriptions'; -import useSubscriptionPlans from '@/hooks/use-subscription-plans'; -import { type SubscriptionPlanQuota } from '@/types/subscriptions'; - -const featuredQuotaKeys: Array = [ - 'mauLimit', - 'machineToMachineLimit', - 'mfaEnabled', - 'ssoEnabled', - 'organizationEnabled', - 'rolesLimit', - 'scopesPerRoleLimit', - 'auditLogsRetentionDays', -]; - -function DevelopmentTenantFeatures() { - const { data: plans } = useSubscriptionPlans(); - const proPlan = plans?.find(({ id }) => id === ReservedPlanId.pro); - - if (!proPlan) { - return null; - } - - return ( - - ); -} - -export default DevelopmentTenantFeatures; diff --git a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.module.scss b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.module.scss deleted file mode 100644 index 2f32bb6cf..000000000 --- a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.module.scss +++ /dev/null @@ -1,18 +0,0 @@ -@use '@/scss/underscore' as _; - -.title { - font: var(--font-title-3); -} - -.hint { - font: var(--font-body-2); - margin-top: _.unit(3); - - .strong { - font: var(--font-label-2); - } - - ol { - padding-inline-start: _.unit(4); - } -} diff --git a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.tsx b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.tsx deleted file mode 100644 index 4662a67dd..000000000 --- a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/DevelopmentTenantMigrationHint/index.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { useTranslation, Trans } from 'react-i18next'; - -import DynamicT from '@/ds-components/DynamicT'; - -import * as styles from './index.module.scss'; - -type Props = { - type: 'freeStagingTenant' | 'paidTenant'; -}; - -function DevelopmentTenantMigrationHint({ type }: Props) { - const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); - - return ( -
-
- -
-
- {type === 'freeStagingTenant' && ( - }}> - {t('tenants.notification.staging_env_hint')} - - )} - {type === 'paidTenant' && ( - <> - }}> - {t('tenants.notification.paid_tenant_hint_1')} - -
    -
  1. - -
  2. -
  3. - -
  4. -
- - - )} -
-
- ); -} - -export default DevelopmentTenantMigrationHint; diff --git a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.module.scss b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.module.scss index 001258acd..44a121ec9 100644 --- a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.module.scss +++ b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.module.scss @@ -9,18 +9,27 @@ height: 48px; } -.highlight { - color: var(--color-text-link); -} - -.linkButton { - text-decoration: none; -} - .content { padding: _.unit(6); background-color: var(--color-layer-light); border-radius: 12px; + + .title { + font: var(--font-title-3); + } + + .hint { + font: var(--font-body-2); + margin-top: _.unit(3); + + > div:not(:last-child) { + margin-bottom: _.unit(4); + } + + .strong { + font: var(--font-label-2); + } + } } .fireworks { @@ -29,10 +38,6 @@ pointer-events: none; .fireworksImage { - transform: translateX(-10.5%) translateY(-17%); - } - - .stagingFireworksImage { - transform: translateX(-10.5%) translateY(-38%); + transform: translateX(-10.5%) translateY(-18%); } } diff --git a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.tsx b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.tsx index 4cb8a2e89..8886cf2c9 100644 --- a/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.tsx +++ b/packages/console/src/containers/AppContent/TenantNotificationContainer/TenantEnvMigrationModal/index.tsx @@ -1,4 +1,4 @@ -import { Theme, TenantTag } from '@logto/schemas'; +import { Theme } from '@logto/schemas'; import { useCallback } from 'react'; import Confetti from 'react-confetti'; import { Trans, useTranslation } from 'react-i18next'; @@ -7,34 +7,24 @@ import ReactModal from 'react-modal'; import CongratsDark from '@/assets/images/congrats-dark.svg'; import Congrats from '@/assets/images/congrats.svg'; import Fireworks from '@/assets/images/tenant-modal-fireworks.svg'; -import { contactEmailLink } from '@/consts'; -import Button from '@/ds-components/Button'; -import DangerousRaw from '@/ds-components/DangerousRaw'; +import { envTagsFeatureLink } from '@/consts'; +import Button, { LinkButton } from '@/ds-components/Button'; +import DynamicT from '@/ds-components/DynamicT'; import ModalLayout from '@/ds-components/ModalLayout'; import useConfigs from '@/hooks/use-configs'; +import useDocumentationUrl from '@/hooks/use-documentation-url'; import useTheme from '@/hooks/use-theme'; import * as modalStyles from '@/scss/modal.module.scss'; -import DevelopmentTenantFeatures from './DevelopmentTenantFeatures'; -import DevelopmentTenantMigrationHint from './DevelopmentTenantMigrationHint'; import * as styles from './index.module.scss'; -const isFreeTenantWithDevelopmentOrProductionEnvTag = ( - originalTenantTag: TenantTag, - isPaidTenant: boolean -) => !isPaidTenant && [TenantTag.Development, TenantTag.Production].includes(originalTenantTag); - /** * This modal is used to notify the user that the tenant env has been migrated. * * In our new development tenant feature, the old tenant env `staging` is deprecated, * we migrated the existing paid tenant's env to 'production', and the existing free 'staging' tenant's env to 'production'. * - * For the original free tenant: - * - If the tenant env is 'dev' or 'production', we will show the development tenant's available feature list. - * - If the tenant env is 'staging', we will show the migration hint to notify the user that the tenant env has been migrated to 'production'. - * - * For the original paid tenant, we will show the migration hint to notify the user that the tenant env has been migrated to 'production'. + * For the original paid and free staging tenants, we will show the migration hint to notify the user that the tenant env has been migrated to 'production'. */ function TenantEnvMigrationModal() { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -42,6 +32,7 @@ function TenantEnvMigrationModal() { const HeaderIcon = theme === Theme.Light ? Congrats : CongratsDark; const { configs, updateConfigs } = useConfigs(); const { developmentTenantMigrationNotification: migrationData } = configs ?? {}; + const { getDocumentationUrl } = useDocumentationUrl(); const onClose = useCallback(async () => { if (!migrationData) { @@ -59,13 +50,6 @@ function TenantEnvMigrationModal() { return null; } - const { tag: originalTenantTag, isPaidTenant } = migrationData; - - const shouldDisplayDevelopmentTenantFeatureList = isFreeTenantWithDevelopmentOrProductionEnvTag( - originalTenantTag, - isPaidTenant - ); - return ( } - title={ - - }}> - {t('tenants.notification.allow_pro_features_title')} - - - } - subtitle="tenants.notification.allow_pro_features_description" + title="tenants.dev_tenant_migration.title" footer={ <> - {!shouldDisplayDevelopmentTenantFeatureList && ( - -