diff --git a/packages/console/src/components/AppContent/components/Sidebar/components/Contact/index.tsx b/packages/console/src/components/AppContent/components/Sidebar/components/Contact/index.tsx index fbbc18fc0..5904145c0 100644 --- a/packages/console/src/components/AppContent/components/Sidebar/components/Contact/index.tsx +++ b/packages/console/src/components/AppContent/components/Sidebar/components/Contact/index.tsx @@ -31,8 +31,8 @@ const Contact = ({ isOpen, onCancel }: Props) => {
-
{String(t(title))}
-
{String(t(description))}
+
{t(title)}
+
{t(description)}
); }; diff --git a/packages/console/src/components/CardTitle/index.tsx b/packages/console/src/components/CardTitle/index.tsx index e5c6fa7ea..686bdd117 100644 --- a/packages/console/src/components/CardTitle/index.tsx +++ b/packages/console/src/components/CardTitle/index.tsx @@ -20,10 +20,10 @@ const CardTitle = ({ title, subtitle, size = 'large' }: Props) => { return (
-
{typeof title === 'string' ? String(t(title)) : title}
+
{typeof title === 'string' ? t(title) : title}
{subtitle && (
- {typeof subtitle === 'string' ? String(t(subtitle)) : subtitle} + {typeof subtitle === 'string' ? t(subtitle) : subtitle}
)}
diff --git a/packages/console/src/components/Dropdown/DropdownItem.tsx b/packages/console/src/components/Dropdown/DropdownItem.tsx index 85802f635..d174d8901 100644 --- a/packages/console/src/components/Dropdown/DropdownItem.tsx +++ b/packages/console/src/components/Dropdown/DropdownItem.tsx @@ -1,5 +1,5 @@ import classNames from 'classnames'; -import React, { MouseEvent, ReactNode } from 'react'; +import { MouseEvent, ReactNode } from 'react'; import * as styles from './DropdownItem.module.scss'; @@ -22,7 +22,7 @@ const DropdownItem = ({ }: Props) => (
  • {icon && {icon}} - {React.isValidElement(children) ? children : String(children)} + {children}
  • ); diff --git a/packages/console/src/components/FormField/index.tsx b/packages/console/src/components/FormField/index.tsx index 377aacdf2..f5f4c9965 100644 --- a/packages/console/src/components/FormField/index.tsx +++ b/packages/console/src/components/FormField/index.tsx @@ -25,7 +25,7 @@ const FormField = ({ title, children, isRequired, className, tooltip }: Props) = return (
    -
    {typeof title === 'string' ? String(t(title)) : title}
    +
    {typeof title === 'string' ? t(title) : title}
    {tooltip && (
    diff --git a/packages/console/src/components/LinkButton/index.tsx b/packages/console/src/components/LinkButton/index.tsx index 63f7a1765..3ab773a79 100644 --- a/packages/console/src/components/LinkButton/index.tsx +++ b/packages/console/src/components/LinkButton/index.tsx @@ -20,7 +20,7 @@ const LinkButton = ({ to, title, icon, className }: Props) => { return ( {icon} - {typeof title === 'string' ? {String(t(title))} : title} + {typeof title === 'string' ? {t(title)} : title} ); }; diff --git a/packages/console/src/components/RadioGroup/Radio.tsx b/packages/console/src/components/RadioGroup/Radio.tsx index 0e7ac3c5f..8791c4d4f 100644 --- a/packages/console/src/components/RadioGroup/Radio.tsx +++ b/packages/console/src/components/RadioGroup/Radio.tsx @@ -76,9 +76,9 @@ const Radio = ({ {type === 'card' && } {children} {type === 'plain' &&
    } - {title && String(t(title))} + {title && t(title)} {isDisabled && disabledLabel && ( -
    {String(t(disabledLabel))}
    +
    {t(disabledLabel)}
    )}
    ); diff --git a/packages/console/src/components/Tooltip/index.tsx b/packages/console/src/components/Tooltip/index.tsx index efe848a0a..2466e95ba 100644 --- a/packages/console/src/components/Tooltip/index.tsx +++ b/packages/console/src/components/Tooltip/index.tsx @@ -1,5 +1,5 @@ import classNames from 'classnames'; -import React, { ReactNode, RefObject, useEffect, useLayoutEffect, useRef, useState } from 'react'; +import { ReactNode, RefObject, useEffect, useLayoutEffect, useRef, useState } from 'react'; import { createPortal } from 'react-dom'; import usePosition, { HorizontalAlignment } from '@/hooks/use-position'; @@ -131,9 +131,7 @@ const Tooltip = ({ )} style={{ ...position }} > -
    - {React.isValidElement(content) ? content : String(content)} -
    +
    {content}
    , tooltipDom ); diff --git a/packages/console/src/include.d/react-i18next.d.ts b/packages/console/src/include.d/react-i18next.d.ts index adbe43039..4220b8a6c 100644 --- a/packages/console/src/include.d/react-i18next.d.ts +++ b/packages/console/src/include.d/react-i18next.d.ts @@ -1,11 +1,14 @@ // https://react.i18next.com/latest/typescript#create-a-declaration-file -// eslint-disable-next-line import/no-unassigned-import -import 'react-i18next'; -import en from '@logto/phrases/lib/locales/en.js'; +import { Translation, Errors } from '@logto/phrases'; +import { CustomTypeOptions } from 'react-i18next'; declare module 'react-i18next' { interface CustomTypeOptions { - resources: typeof en; + allowObjectInHTMLChildren: true; + resources: { + translation: Translation; + errors: Errors; + }; } } diff --git a/packages/console/src/pages/ConnectorDetails/components/ConnectorTabs/index.tsx b/packages/console/src/pages/ConnectorDetails/components/ConnectorTabs/index.tsx index 17bf8f87c..d27b77c1f 100644 --- a/packages/console/src/pages/ConnectorDetails/components/ConnectorTabs/index.tsx +++ b/packages/console/src/pages/ConnectorDetails/components/ConnectorTabs/index.tsx @@ -48,7 +48,7 @@ const ConnectorTabs = ({ target, connectorId }: Props) => {
    )} - {connector.platform && String(t(connectorPlatformLabel[connector.platform]))} + {connector.platform && t(connectorPlatformLabel[connector.platform])} ))}
    diff --git a/packages/console/src/pages/Connectors/components/ConnectorName/index.tsx b/packages/console/src/pages/Connectors/components/ConnectorName/index.tsx index c8004b707..5d34bf52e 100644 --- a/packages/console/src/pages/Connectors/components/ConnectorName/index.tsx +++ b/packages/console/src/pages/Connectors/components/ConnectorName/index.tsx @@ -34,7 +34,7 @@ const ConnectorName = ({ type, connectors, onClickSetup }: Props) => { -
    {String(t(connectorTitlePlaceHolder[type]))}
    +
    {t(connectorTitlePlaceHolder[type])}
    {type !== ConnectorType.Social && (
    diff --git a/packages/console/src/i18n/react-i18next.d.ts b/packages/demo-app/src/include.d/react-i18next.d.ts similarity index 69% rename from packages/console/src/i18n/react-i18next.d.ts rename to packages/demo-app/src/include.d/react-i18next.d.ts index 741c7b9c6..4220b8a6c 100644 --- a/packages/console/src/i18n/react-i18next.d.ts +++ b/packages/demo-app/src/include.d/react-i18next.d.ts @@ -1,8 +1,11 @@ +// https://react.i18next.com/latest/typescript#create-a-declaration-file + import { Translation, Errors } from '@logto/phrases'; import { CustomTypeOptions } from 'react-i18next'; declare module 'react-i18next' { interface CustomTypeOptions { + allowObjectInHTMLChildren: true; resources: { translation: Translation; errors: Errors; diff --git a/packages/ui/src/components/Button/index.tsx b/packages/ui/src/components/Button/index.tsx index a565b48aa..97c16f050 100644 --- a/packages/ui/src/components/Button/index.tsx +++ b/packages/ui/src/components/Button/index.tsx @@ -1,5 +1,5 @@ import classNames from 'classnames'; -import React, { ReactNode } from 'react'; +import { ReactNode } from 'react'; import * as styles from './index.module.scss'; @@ -34,7 +34,7 @@ const Button = ({ type={htmlType} onClick={onClick} > - {React.isValidElement(children) ? children : String(children)} + {children} ); diff --git a/packages/ui/src/components/Divider/index.tsx b/packages/ui/src/components/Divider/index.tsx index 3df19c15e..7964bb498 100644 --- a/packages/ui/src/components/Divider/index.tsx +++ b/packages/ui/src/components/Divider/index.tsx @@ -14,7 +14,7 @@ const Divider = ({ className, label }: Props) => { return (
    - {label && String(t(label))} + {label && t(label)}
    ); diff --git a/packages/ui/src/components/TextLink/index.tsx b/packages/ui/src/components/TextLink/index.tsx index 9f7b6fa17..8e10648f6 100644 --- a/packages/ui/src/components/TextLink/index.tsx +++ b/packages/ui/src/components/TextLink/index.tsx @@ -19,14 +19,14 @@ const TextLink = ({ className, children, text, type = 'primary', to, ...rest }: if (to) { return ( - {children ?? (text ? String(t(text)) : '')} + {children ?? (text ? t(text) : '')} ); } return ( - {children ?? (text ? String(t(text)) : '')} + {children ?? (text ? t(text) : '')} ); }; diff --git a/packages/ui/src/include.d/react-i18next.d.ts b/packages/ui/src/include.d/react-i18next.d.ts index 816fe0207..4b99b1185 100644 --- a/packages/ui/src/include.d/react-i18next.d.ts +++ b/packages/ui/src/include.d/react-i18next.d.ts @@ -6,6 +6,7 @@ import en from '@logto/phrases-ui/lib/locales/en.js'; declare module 'react-i18next' { interface CustomTypeOptions { + allowObjectInHTMLChildren: true; resources: typeof en; } } diff --git a/packages/ui/src/pages/ErrorPage/index.tsx b/packages/ui/src/pages/ErrorPage/index.tsx index fcda12f8c..23efdbf27 100644 --- a/packages/ui/src/pages/ErrorPage/index.tsx +++ b/packages/ui/src/pages/ErrorPage/index.tsx @@ -24,7 +24,7 @@ const ErrorPage = ({ title = 'description.not_found', message, rawMessage }: Pro
    -
    {String(t(title))}
    +
    {t(title)}
    {errorMessage &&
    {String(errorMessage)}
    }