From 540c41ff64a3fb03a60152760816b12709d0f049 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Wed, 22 Mar 2023 16:45:10 +0800 Subject: [PATCH] refactor(console): use function-declaration for named components (#3520) * refactor(console): use function-declaration for named components Application Insights can only automatically track component names from function declaration. update convention to make tracking easier. * refactor(console): fix lint errors --- packages/console/package.json | 11 +- packages/console/src/App.tsx | 8 +- packages/console/src/cloud/App.tsx | 4 +- .../src/cloud/pages/Callback/index.tsx | 4 +- .../console/src/cloud/pages/Main/Redirect.tsx | 4 +- .../console/src/cloud/pages/Main/Tenants.tsx | 4 +- .../console/src/cloud/pages/Main/index.tsx | 8 +- .../cloud/pages/SocialDemoCallback/index.tsx | 4 +- .../src/components/ActionMenu/index.tsx | 6 +- .../console/src/components/Alert/index.tsx | 6 +- .../console/src/components/AppError/index.tsx | 4 +- .../src/components/AppLoading/index.tsx | 4 +- .../src/components/ApplicationIcon/index.tsx | 4 +- .../src/components/ApplicationName/index.tsx | 4 +- .../components/ApplicationSelector/index.tsx | 4 +- .../components/EventName/index.tsx | 4 +- .../components/EventSelector/index.tsx | 4 +- .../src/components/AuditLogTable/index.tsx | 4 +- .../console/src/components/Button/index.tsx | 6 +- .../console/src/components/Card/index.tsx | 4 +- .../src/components/CardTitle/index.tsx | 6 +- .../console/src/components/Checkbox/index.tsx | 6 +- .../src/components/CodeEditor/index.tsx | 6 +- .../src/components/ColorPicker/index.tsx | 4 +- .../src/components/ConfirmModal/index.tsx | 6 +- .../src/components/ConnectorLogo/index.tsx | 4 +- .../src/components/CopyToClipboard/index.tsx | 6 +- .../src/components/DangerousRaw/index.tsx | 4 +- .../console/src/components/DateTime/index.tsx | 4 +- .../components/DeleteConfirmModal/index.tsx | 6 +- .../src/components/DetailsForm/index.tsx | 6 +- .../src/components/DetailsSkeleton/index.tsx | 56 ++-- .../console/src/components/Divider/index.tsx | 4 +- .../components/DragDrop/DragDropProvider.tsx | 4 +- .../src/components/DragDrop/DraggableItem.tsx | 6 +- .../console/src/components/Drawer/index.tsx | 4 +- .../src/components/Dropdown/DropdownItem.tsx | 28 +- .../console/src/components/Dropdown/index.tsx | 14 +- .../components/EmptyDataPlaceholder/index.tsx | 4 +- .../console/src/components/FormCard/index.tsx | 4 +- .../src/components/FormField/index.tsx | 6 +- .../src/components/IconButton/index.tsx | 6 +- .../ImageWithErrorFallback/index.tsx | 6 +- .../console/src/components/Index/index.tsx | 26 +- .../src/components/ItemPreview/index.tsx | 4 +- .../components/LivePreviewButton/index.tsx | 4 +- .../components/GithubRawImage/index.tsx | 4 +- .../console/src/components/Markdown/index.tsx | 4 +- .../src/components/ModalLayout/index.tsx | 6 +- .../src/components/MultiTextInput/index.tsx | 6 +- .../components/MultiTextInputField/index.tsx | 26 +- .../src/components/OverlayScrollbar/index.tsx | 14 +- .../src/components/Pagination/Next.tsx | 4 +- .../src/components/Pagination/Previous.tsx | 4 +- .../src/components/Pagination/index.tsx | 11 +- .../src/components/PermissionsTable/index.tsx | 6 +- .../src/components/RadioGroup/Radio.tsx | 24 +- .../src/components/RadioGroup/index.tsx | 6 +- .../src/components/RequestDataError/index.tsx | 4 +- .../components/ResourceItem/index.tsx | 4 +- .../components/SourceScopeItem/index.tsx | 46 ++-- .../components/SourceScopesBox/index.tsx | 4 +- .../components/TargetScopeItem/index.tsx | 4 +- .../components/TargetScopesBox/index.tsx | 4 +- .../components/RoleScopesTransfer/index.tsx | 16 +- .../components/SourceUserItem/index.tsx | 4 +- .../components/SourceUsersBox/index.tsx | 4 +- .../components/TargetUserItem/index.tsx | 4 +- .../components/TargetUsersBox/index.tsx | 4 +- .../components/RoleUsersTransfer/index.tsx | 16 +- .../console/src/components/Search/index.tsx | 6 +- .../console/src/components/Select/index.tsx | 6 +- .../src/components/SessionExpired/index.tsx | 4 +- .../components/ToggleUiThemeButton/index.tsx | 6 +- .../SignInExperiencePreview/index.tsx | 4 +- .../console/src/components/Spacer/index.tsx | 4 +- .../console/src/components/Spinner/index.tsx | 258 +++++++++--------- .../console/src/components/Status/index.tsx | 14 +- .../SubmitFormChangesActionBar/index.tsx | 42 +-- .../console/src/components/Switch/index.tsx | 4 +- .../src/components/TabNav/TabNavItem.tsx | 4 +- .../console/src/components/TabNav/index.tsx | 6 +- .../components/Table/TableEmptyWrapper.tsx | 16 +- .../src/components/Table/TableError.tsx | 4 +- .../src/components/Table/TableLoading.tsx | 4 +- .../src/components/Table/TablePlaceholder.tsx | 11 +- .../console/src/components/Table/index.tsx | 6 +- .../src/components/TextInput/index.tsx | 6 +- .../console/src/components/TextLink/index.tsx | 4 +- .../console/src/components/Textarea/index.tsx | 6 +- .../src/components/Tip/TipBubble/index.tsx | 6 +- .../src/components/Tip/ToggleTip/index.tsx | 6 +- .../src/components/Tip/Tooltip/index.tsx | 6 +- .../console/src/components/Toast/index.tsx | 4 +- .../src/components/UnnamedTrans/index.tsx | 4 +- .../UnsavedChangesAlertModal/index.tsx | 4 +- .../Uploader/FileUploader/index.tsx | 6 +- .../Uploader/ImageUploader/index.tsx | 5 +- .../Uploader/ImageUploaderField/index.tsx | 4 +- .../UserAccountInformation/index.tsx | 6 +- .../src/components/UserAvatar/index.tsx | 4 +- .../src/components/UserInfoCard/index.tsx | 4 +- .../console/src/components/UserName/index.tsx | 4 +- .../components/SourceRoleItem/index.tsx | 4 +- .../components/SourceRolesBox/index.tsx | 4 +- .../components/TargetRoleItem/index.tsx | 4 +- .../components/TargetRolesBox/index.tsx | 4 +- .../components/UserRolesTransfer/index.tsx | 16 +- .../VerificationCodeInput/index.tsx | 6 +- .../src/containers/AppBoundary/index.tsx | 4 +- .../AppContent/components/SubMenu/index.tsx | 6 +- .../AppContent/components/Topbar/index.tsx | 4 +- .../AppContent/components/UserInfo/index.tsx | 4 +- .../components/UserInfoSkeleton/index.tsx | 12 +- .../src/containers/AppContent/index.tsx | 4 +- .../Sidebar/components/Contact/index.tsx | 4 +- .../Sidebar/components/Item/index.tsx | 4 +- .../Sidebar/components/Section/index.tsx | 4 +- .../ConsoleContent/Sidebar/icons/BarGraph.tsx | 18 +- .../ConsoleContent/Sidebar/icons/Bolt.tsx | 18 +- .../ConsoleContent/Sidebar/icons/Box.tsx | 4 +- .../ConsoleContent/Sidebar/icons/Cloud.tsx | 4 +- .../Sidebar/icons/Connection.tsx | 4 +- .../ConsoleContent/Sidebar/icons/Contact.tsx | 4 +- .../ConsoleContent/Sidebar/icons/Document.tsx | 4 +- .../ConsoleContent/Sidebar/icons/Gear.tsx | 4 +- .../ConsoleContent/Sidebar/icons/List.tsx | 4 +- .../Sidebar/icons/UserProfile.tsx | 4 +- .../ConsoleContent/Sidebar/icons/Web.tsx | 4 +- .../ConsoleContent/Sidebar/index.tsx | 4 +- .../src/containers/ConsoleContent/index.tsx | 4 +- .../containers/TenantAppContainer/index.tsx | 4 +- .../AppConfirmModalProvider/index.tsx | 4 +- .../src/contexts/AppEndpointsProvider.tsx | 4 +- .../src/contexts/AppThemeProvider/index.tsx | 4 +- .../console/src/contexts/TenantsProvider.tsx | 4 +- .../src/icons/ConnectorPlatformIcon.tsx | 4 +- .../mdx-components/DetailsSummary/index.tsx | 4 +- .../console/src/mdx-components/Step/index.tsx | 6 +- .../src/mdx-components/TabItem/index.tsx | 4 +- .../console/src/mdx-components/Tabs/index.tsx | 4 +- .../mdx-components/UriInputField/index.tsx | 4 +- packages/console/src/onboarding/App.tsx | 4 +- .../onboarding/components/ActionBar/index.tsx | 14 +- .../onboarding/components/Broadcast/index.tsx | 4 +- .../components/CardSelector/CardSelector.tsx | 28 +- .../MultiCardSelector/CardItem.tsx | 6 +- .../CardSelector/MultiCardSelector/index.tsx | 6 +- .../components/DemoConnectorNotice/index.tsx | 4 +- .../EarlyBirdGift/GiftModal/index.tsx | 4 +- .../components/EarlyBirdGift/index.tsx | 4 +- .../components/ProgressBar/index.tsx | 22 +- .../components/Reservation/index.tsx | 6 +- .../onboarding/components/Topbar/index.tsx | 12 +- .../containers/AppContent/index.tsx | 16 +- .../src/onboarding/pages/About/index.tsx | 1 - .../src/onboarding/pages/Congrats/index.tsx | 1 - .../components/InspireMe/index.tsx | 4 +- .../components/PlatformTabs/PlatformTab.tsx | 4 +- .../components/PlatformTabs/index.tsx | 38 +-- .../components/Preview/index.tsx | 4 +- .../components/Skeleton/index.tsx | 4 +- .../components/SocialSelector/index.tsx | 4 +- .../pages/SignInExperience/index.tsx | 1 - .../src/onboarding/pages/Welcome/index.tsx | 1 - .../CreatePermissionModal/index.tsx | 4 +- .../ApiResourcePermissions/index.tsx | 4 +- .../ApiResourceSettings/index.tsx | 4 +- .../src/pages/ApiResourceDetails/index.tsx | 1 - .../components/CreateForm/index.tsx | 4 +- .../console/src/pages/ApiResources/index.tsx | 1 - .../components/AdvancedSettings.tsx | 4 +- .../components/Settings.tsx | 4 +- .../src/pages/ApplicationDetails/index.tsx | 1 - .../ApplicationsPlaceholder/index.tsx | 4 +- .../components/CreateForm/index.tsx | 4 +- .../components/Guide/GuideModal.tsx | 4 +- .../Applications/components/Guide/index.tsx | 4 +- .../components/GuideHeader/index.tsx | 4 +- .../components/SdkSelector/index.tsx | 6 +- .../components/StepsSkeleton/index.tsx | 28 +- .../components/TypeDescription/index.tsx | 18 +- .../console/src/pages/Applications/index.tsx | 1 - .../components/EventIcon/index.tsx | 4 +- .../src/pages/AuditLogDetails/index.tsx | 1 - .../console/src/pages/AuditLogs/index.tsx | 1 - packages/console/src/pages/Callback/index.tsx | 4 +- .../components/ConnectorContent.tsx | 4 +- .../components/ConnectorTabs/index.tsx | 4 +- .../components/ConnectorTypeName/index.tsx | 4 +- .../DeleteConnectorConfirmModal/index.tsx | 4 +- .../components/SenderTester/index.tsx | 4 +- .../src/pages/ConnectorDetails/index.tsx | 1 - .../components/ConfigForm/index.tsx | 4 +- .../ConnectorDeleteButton/index.tsx | 4 +- .../components/ConnectorForm/BasicForm.tsx | 6 +- .../components/ConnectorForm/ConfigForm.tsx | 4 +- .../components/ConnectorName/DemoTag.tsx | 4 +- .../components/ConnectorName/index.tsx | 4 +- .../components/ConnectorStatus/index.tsx | 4 +- .../components/ConnectorStatusField/index.tsx | 4 +- .../components/ConnectorTypeColumn/index.tsx | 4 +- .../CreateForm/PlatformSelector.tsx | 4 +- .../components/CreateForm/index.tsx | 4 +- .../Connectors/components/Guide/index.tsx | 4 +- .../SignInExperienceSetupNotice/index.tsx | 4 +- .../console/src/pages/Connectors/index.tsx | 1 - .../src/pages/Dashboard/components/Block.tsx | 4 +- .../components/ChartTooltip/index.tsx | 4 +- .../Dashboard/components/Skeleton/index.tsx | 44 +-- .../console/src/pages/Dashboard/index.tsx | 1 - .../components/GetStartedProgress/index.tsx | 4 +- .../GetStarted/components/Skeleton/index.tsx | 26 +- .../console/src/pages/GetStarted/index.tsx | 1 - packages/console/src/pages/Main/index.tsx | 4 +- packages/console/src/pages/NotFound/index.tsx | 4 +- .../components/BasicUserInfoSection/index.tsx | 4 +- .../Profile/components/CardContent/index.tsx | 6 +- .../components/LinkAccountSection/index.tsx | 4 +- .../components/MainFlowLikeModal/index.tsx | 11 +- .../pages/Profile/components/NotSet/index.tsx | 4 +- .../Profile/components/Skeleton/index.tsx | 4 +- .../BasicUserInfoUpdateModal/index.tsx | 4 +- .../containers/ChangePasswordModal/index.tsx | 4 +- .../containers/DeleteAccountModal/index.tsx | 4 +- .../containers/HandleSocialCallback/index.tsx | 4 +- .../containers/LinkEmailModal/index.tsx | 4 +- .../VerificationCodeModal/index.tsx | 4 +- .../containers/VerifyPasswordModal/index.tsx | 4 +- packages/console/src/pages/Profile/index.tsx | 1 - .../AssignPermissionsModal/index.tsx | 4 +- .../RoleDetails/RolePermissions/index.tsx | 4 +- .../pages/RoleDetails/RoleSettings/index.tsx | 4 +- .../components/AssignUsersModal/index.tsx | 4 +- .../src/pages/RoleDetails/RoleUsers/index.tsx | 4 +- .../console/src/pages/RoleDetails/index.tsx | 1 - .../Roles/components/AssignedUsers/index.tsx | 5 +- .../Roles/components/CreateRoleForm/index.tsx | 4 +- .../components/CreateRoleModal/index.tsx | 4 +- packages/console/src/pages/Roles/index.tsx | 1 - .../components/Preview/index.tsx | 6 +- .../DiffSegment.tsx | 4 +- .../SignInDiffSection.tsx | 4 +- .../SignUpDiffSection.tsx | 4 +- .../SocialTargetsDiffSection.tsx | 4 +- .../SignUpAndSignInDiffSection/index.tsx | 32 ++- .../SignUpAndSignInChangePreview/index.tsx | 4 +- .../components/Skeleton/index.tsx | 4 +- .../components/TabWrapper/index.tsx | 4 +- .../components/Welcome/GuideModal.tsx | 4 +- .../components/Welcome/index.tsx | 4 +- .../src/pages/SignInExperience/index.tsx | 23 +- .../tabs/Branding/BrandingForm.tsx | 4 +- .../tabs/Branding/CustomCssForm.tsx | 4 +- .../LogoAndFaviconUploader/index.tsx | 4 +- .../SignInExperience/tabs/Branding/index.tsx | 14 +- .../tabs/Others/AuthenticationForm.tsx | 4 +- .../tabs/Others/LanguagesForm.tsx | 4 +- .../tabs/Others/TermsForm.tsx | 4 +- .../LanguageEditor/AddLanguageSelector.tsx | 4 +- .../LanguageEditor/LanguageDetails.tsx | 4 +- .../LanguageEditor/LanguageItem.tsx | 4 +- .../LanguageEditor/LanguageNav.tsx | 4 +- .../ManageLanguage/LanguageEditor/index.tsx | 8 +- .../ManageLanguage/ManageLanguageButton.tsx | 4 +- .../SignInExperience/tabs/Others/index.tsx | 16 +- .../tabs/SignUpAndSignIn/SignInForm.tsx | 4 +- .../tabs/SignUpAndSignIn/SignUpForm.tsx | 4 +- .../tabs/SignUpAndSignIn/SocialSignInForm.tsx | 4 +- .../components/ConnectorSetupWarning.tsx | 4 +- .../SignInMethodEditBox/AddButton.tsx | 4 +- .../SignInMethodEditBox/SignInMethodItem.tsx | 6 +- .../components/SignInMethodEditBox/index.tsx | 4 +- .../SocialConnectorEditBox/AddButton.tsx | 4 +- .../SelectedConnectorItem.tsx | 6 +- .../SocialConnectorEditBox/index.tsx | 4 +- .../tabs/SignUpAndSignIn/index.tsx | 16 +- .../src/pages/UserDetails/UserLogs/index.tsx | 4 +- .../components/AssignRolesModal/index.tsx | 4 +- .../src/pages/UserDetails/UserRoles/index.tsx | 4 +- .../components/UserSocialIdentities/index.tsx | 9 +- .../pages/UserDetails/UserSettings/index.tsx | 4 +- .../components/ResetPasswordForm/index.tsx | 4 +- .../console/src/pages/UserDetails/index.tsx | 1 - .../Users/components/CreateForm/index.tsx | 4 +- packages/console/src/pages/Users/index.tsx | 1 - packages/console/src/pages/Welcome/index.tsx | 4 +- 287 files changed, 1069 insertions(+), 1028 deletions(-) diff --git a/packages/console/package.json b/packages/console/package.json index f468e263b..5e39015e7 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -115,7 +115,16 @@ "@mdx/components/*": "./src/mdx-components/$1" }, "eslintConfig": { - "extends": "@silverhand/react" + "extends": "@silverhand/react", + "rules": { + "react/function-component-definition": [ + "error", + { + "namedComponents": "function-declaration", + "unnamedComponents": "arrow-function" + } + ] + } }, "stylelint": { "extends": "@silverhand/eslint-config-react/.stylelintrc" diff --git a/packages/console/src/App.tsx b/packages/console/src/App.tsx index f8e976fa8..6760a9f6a 100644 --- a/packages/console/src/App.tsx +++ b/packages/console/src/App.tsx @@ -28,7 +28,7 @@ import setTitle from './utils/set-title'; void initI18n(); setTitle(); -const Content = () => { +function Content() { const { tenants, isSettle, currentTenantId } = useContext(TenantsContext); const resources = deduplicate( @@ -78,14 +78,14 @@ const Content = () => { ); -}; +} -const App = () => { +function App() { return ( ); -}; +} export default App; diff --git a/packages/console/src/cloud/App.tsx b/packages/console/src/cloud/App.tsx index be16c4c6a..b4dee66c5 100644 --- a/packages/console/src/cloud/App.tsx +++ b/packages/console/src/cloud/App.tsx @@ -7,7 +7,7 @@ import Main from './pages/Main'; import SocialDemoCallback from './pages/SocialDemoCallback'; import { CloudRoute } from './types'; -const App = () => { +function App() { return (
@@ -20,6 +20,6 @@ const App = () => {
); -}; +} export default App; diff --git a/packages/console/src/cloud/pages/Callback/index.tsx b/packages/console/src/cloud/pages/Callback/index.tsx index 9c1923062..821c9a620 100644 --- a/packages/console/src/cloud/pages/Callback/index.tsx +++ b/packages/console/src/cloud/pages/Callback/index.tsx @@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom'; import AppLoading from '@/components/AppLoading'; import { getUserTenantId } from '@/consts/tenants'; -const Callback = () => { +function Callback() { const navigate = useNavigate(); const { error } = useHandleSignInCallback(() => { navigate('/' + getUserTenantId(), { replace: true }); @@ -21,6 +21,6 @@ const Callback = () => { } return ; -}; +} export default Callback; diff --git a/packages/console/src/cloud/pages/Main/Redirect.tsx b/packages/console/src/cloud/pages/Main/Redirect.tsx index 7d1f25f84..7d078b5ad 100644 --- a/packages/console/src/cloud/pages/Main/Redirect.tsx +++ b/packages/console/src/cloud/pages/Main/Redirect.tsx @@ -12,7 +12,7 @@ type Props = { toTenantId: string; }; -const Redirect = ({ tenants, toTenantId }: Props) => { +function Redirect({ tenants, toTenantId }: Props) { const { getAccessToken, signIn } = useLogto(); const tenant = tenants.find(({ id }) => id === toTenantId); const { setIsSettle } = useContext(TenantsContext); @@ -40,6 +40,6 @@ const Redirect = ({ tenants, toTenantId }: Props) => { } return ; -}; +} export default Redirect; diff --git a/packages/console/src/cloud/pages/Main/Tenants.tsx b/packages/console/src/cloud/pages/Main/Tenants.tsx index d2ce72d8a..0534dbeda 100644 --- a/packages/console/src/cloud/pages/Main/Tenants.tsx +++ b/packages/console/src/cloud/pages/Main/Tenants.tsx @@ -14,7 +14,7 @@ type Props = { onAdd: (tenant: TenantInfo) => void; }; -const Tenants = ({ data, onAdd }: Props) => { +function Tenants({ data, onAdd }: Props) { const api = useCloudApi(); const { navigate } = useContext(TenantsContext); @@ -57,6 +57,6 @@ const Tenants = ({ data, onAdd }: Props) => { } return ; -}; +} export default Tenants; diff --git a/packages/console/src/cloud/pages/Main/index.tsx b/packages/console/src/cloud/pages/Main/index.tsx index 47d65e765..7244550ca 100644 --- a/packages/console/src/cloud/pages/Main/index.tsx +++ b/packages/console/src/cloud/pages/Main/index.tsx @@ -12,7 +12,7 @@ import { TenantsContext } from '@/contexts/TenantsProvider'; import Redirect from './Redirect'; import Tenants from './Tenants'; -const Protected = () => { +function Protected() { const api = useCloudApi(); const { tenants, setTenants, currentTenantId } = useContext(TenantsContext); @@ -43,9 +43,9 @@ const Protected = () => { } return ; -}; +} -const Main = () => { +function Main() { const [searchParameters] = useSearchParams(); const { isAuthenticated, isLoading, signIn } = useLogto(); const { currentTenantId } = useContext(TenantsContext); @@ -66,6 +66,6 @@ const Main = () => { } return ; -}; +} export default Main; diff --git a/packages/console/src/cloud/pages/SocialDemoCallback/index.tsx b/packages/console/src/cloud/pages/SocialDemoCallback/index.tsx index d34e86814..2247e6f26 100644 --- a/packages/console/src/cloud/pages/SocialDemoCallback/index.tsx +++ b/packages/console/src/cloud/pages/SocialDemoCallback/index.tsx @@ -8,7 +8,7 @@ import useTheme from '@/hooks/use-theme'; import * as styles from './index.module.scss'; -const SocialDemoCallback = () => { +function SocialDemoCallback() { const theme = useTheme(); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -21,6 +21,6 @@ const SocialDemoCallback = () => { ); -}; +} export default SocialDemoCallback; diff --git a/packages/console/src/components/ActionMenu/index.tsx b/packages/console/src/components/ActionMenu/index.tsx index 93903b262..a800e18df 100644 --- a/packages/console/src/components/ActionMenu/index.tsx +++ b/packages/console/src/components/ActionMenu/index.tsx @@ -20,14 +20,14 @@ type Props = { isDropdownFullWidth?: boolean; }; -const ActionMenu = ({ +function ActionMenu({ children, buttonProps, title, dropdownHorizontalAlign, dropdownClassName, isDropdownFullWidth = false, -}: Props) => { +}: Props) { const [isOpen, setIsOpen] = useState(false); const anchorReference = useRef(null); @@ -56,6 +56,6 @@ const ActionMenu = ({ ); -}; +} export default ActionMenu; diff --git a/packages/console/src/components/Alert/index.tsx b/packages/console/src/components/Alert/index.tsx index f693e3ace..63de97e83 100644 --- a/packages/console/src/components/Alert/index.tsx +++ b/packages/console/src/components/Alert/index.tsx @@ -19,7 +19,7 @@ type Props = { className?: string; }; -const Alert = ({ +function Alert({ children, action, href, @@ -27,7 +27,7 @@ const Alert = ({ severity = 'info', variant = 'plain', className, -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -44,6 +44,6 @@ const Alert = ({ )} ); -}; +} export default Alert; diff --git a/packages/console/src/components/AppError/index.tsx b/packages/console/src/components/AppError/index.tsx index 953aa5d9e..6eae19e68 100644 --- a/packages/console/src/components/AppError/index.tsx +++ b/packages/console/src/components/AppError/index.tsx @@ -19,7 +19,7 @@ type Props = { children?: React.ReactNode; }; -const AppError = ({ title, errorCode, errorMessage, callStack, children }: Props) => { +function AppError({ title, errorCode, errorMessage, callStack, children }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const [isDetailsOpen, setIsDetailsOpen] = useState(false); const theme = useTheme(); @@ -55,6 +55,6 @@ const AppError = ({ title, errorCode, errorMessage, callStack, children }: Props {children} ); -}; +} export default AppError; diff --git a/packages/console/src/components/AppLoading/index.tsx b/packages/console/src/components/AppLoading/index.tsx index 091a833fd..ca16ed398 100644 --- a/packages/console/src/components/AppLoading/index.tsx +++ b/packages/console/src/components/AppLoading/index.tsx @@ -7,7 +7,7 @@ import useTheme from '@/hooks/use-theme'; import * as styles from './index.module.scss'; -const AppLoading = () => { +function AppLoading() { const theme = useTheme(); return ( @@ -16,6 +16,6 @@ const AppLoading = () => { ); -}; +} export default AppLoading; diff --git a/packages/console/src/components/ApplicationIcon/index.tsx b/packages/console/src/components/ApplicationIcon/index.tsx index 87efdb5b1..35db16d31 100644 --- a/packages/console/src/components/ApplicationIcon/index.tsx +++ b/packages/console/src/components/ApplicationIcon/index.tsx @@ -9,12 +9,12 @@ type Props = { className?: string; }; -const ApplicationIcon = ({ type, className }: Props) => { +function ApplicationIcon({ type, className }: Props) { const theme = useTheme(); const isLightMode = theme === Theme.Light; const Icon = isLightMode ? lightModeApplicationIconMap[type] : darkModeApplicationIconMap[type]; return ; -}; +} export default ApplicationIcon; diff --git a/packages/console/src/components/ApplicationName/index.tsx b/packages/console/src/components/ApplicationName/index.tsx index 3c65dd818..bd3ba10eb 100644 --- a/packages/console/src/components/ApplicationName/index.tsx +++ b/packages/console/src/components/ApplicationName/index.tsx @@ -11,7 +11,7 @@ type Props = { isLink?: boolean; }; -const ApplicationName = ({ applicationId, isLink = false }: Props) => { +function ApplicationName({ applicationId, isLink = false }: Props) { const isAdminConsole = applicationId === adminConsoleApplicationId; const { data } = useSWR(!isAdminConsole && `api/applications/${applicationId}`); @@ -28,6 +28,6 @@ const ApplicationName = ({ applicationId, isLink = false }: Props) => { } return {name}; -}; +} export default ApplicationName; diff --git a/packages/console/src/components/AuditLogTable/components/ApplicationSelector/index.tsx b/packages/console/src/components/AuditLogTable/components/ApplicationSelector/index.tsx index f87cc0ce1..224a764fa 100644 --- a/packages/console/src/components/AuditLogTable/components/ApplicationSelector/index.tsx +++ b/packages/console/src/components/AuditLogTable/components/ApplicationSelector/index.tsx @@ -10,7 +10,7 @@ type Props = { onChange: (value?: string) => void; }; -const ApplicationSelector = ({ value, onChange }: Props) => { +function ApplicationSelector({ value, onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const { data } = useSWR('api/applications'); const options = @@ -28,6 +28,6 @@ const ApplicationSelector = ({ value, onChange }: Props) => { onChange={onChange} /> ); -}; +} export default ApplicationSelector; diff --git a/packages/console/src/components/AuditLogTable/components/EventName/index.tsx b/packages/console/src/components/AuditLogTable/components/EventName/index.tsx index 5b38bd335..730194141 100644 --- a/packages/console/src/components/AuditLogTable/components/EventName/index.tsx +++ b/packages/console/src/components/AuditLogTable/components/EventName/index.tsx @@ -13,7 +13,7 @@ type Props = { to?: string; }; -const EventName = ({ eventKey, isSuccess, to }: Props) => { +function EventName({ eventKey, isSuccess, to }: Props) { const title = logEventTitle[eventKey] ?? eventKey; return ( @@ -35,6 +35,6 @@ const EventName = ({ eventKey, isSuccess, to }: Props) => { {!to &&
{title}
} ); -}; +} export default EventName; diff --git a/packages/console/src/components/AuditLogTable/components/EventSelector/index.tsx b/packages/console/src/components/AuditLogTable/components/EventSelector/index.tsx index f971db5a6..aa7064f5b 100644 --- a/packages/console/src/components/AuditLogTable/components/EventSelector/index.tsx +++ b/packages/console/src/components/AuditLogTable/components/EventSelector/index.tsx @@ -8,7 +8,7 @@ type Props = { onChange: (value?: string) => void; }; -const EventSelector = ({ value, onChange }: Props) => { +function EventSelector({ value, onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const options = Object.entries(logEventTitle).map(([value, title]) => ({ value, @@ -24,6 +24,6 @@ const EventSelector = ({ value, onChange }: Props) => { onChange={onChange} /> ); -}; +} export default EventSelector; diff --git a/packages/console/src/components/AuditLogTable/index.tsx b/packages/console/src/components/AuditLogTable/index.tsx index aa2a849b2..ce06e1db9 100644 --- a/packages/console/src/components/AuditLogTable/index.tsx +++ b/packages/console/src/components/AuditLogTable/index.tsx @@ -25,7 +25,7 @@ type Props = { className?: string; }; -const AuditLogTable = ({ userId, className }: Props) => { +function AuditLogTable({ userId, className }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const { pathname } = useLocation(); const pageSize = defaultPageSize; @@ -132,6 +132,6 @@ const AuditLogTable = ({ userId, className }: Props) => { onRetry={async () => mutate(undefined, true)} /> ); -}; +} export default AuditLogTable; diff --git a/packages/console/src/components/Button/index.tsx b/packages/console/src/components/Button/index.tsx index c978d8406..0c917708c 100644 --- a/packages/console/src/components/Button/index.tsx +++ b/packages/console/src/components/Button/index.tsx @@ -39,7 +39,7 @@ type IconButtonProps = BaseProps & { export type Props = TitleButtonProps | IconButtonProps; -const Button = ({ +function Button({ htmlType = 'button', type = 'default', size = 'medium', @@ -51,7 +51,7 @@ const Button = ({ onClick, trailingIcon, ...rest -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const [showSpinner, setShowSpinner] = useState(false); const timerRef = useRef(); @@ -96,6 +96,6 @@ const Button = ({ {trailingIcon && {trailingIcon}} ); -}; +} export default Button; diff --git a/packages/console/src/components/Card/index.tsx b/packages/console/src/components/Card/index.tsx index e3e0a62ed..4fa9d6377 100644 --- a/packages/console/src/components/Card/index.tsx +++ b/packages/console/src/components/Card/index.tsx @@ -9,7 +9,7 @@ type Props = { className?: string; }; -const Card = (props: Props, reference?: Ref) => { +function Card(props: Props, reference?: Ref) { const { children, className } = props; return ( @@ -17,6 +17,6 @@ const Card = (props: Props, reference?: Ref) => { {children} ); -}; +} export default forwardRef(Card); diff --git a/packages/console/src/components/CardTitle/index.tsx b/packages/console/src/components/CardTitle/index.tsx index 31edbca17..e196f9788 100644 --- a/packages/console/src/components/CardTitle/index.tsx +++ b/packages/console/src/components/CardTitle/index.tsx @@ -19,14 +19,14 @@ export type Props = { /** * Always use this component to render CardTitle, with built-in i18n support. */ -const CardTitle = ({ +function CardTitle({ title, subtitle, size = 'large', isWordWrapEnabled = false, learnMoreLink, className, -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -46,6 +46,6 @@ const CardTitle = ({ )} ); -}; +} export default CardTitle; diff --git a/packages/console/src/components/Checkbox/index.tsx b/packages/console/src/components/Checkbox/index.tsx index 9bc46846e..f0317e8e2 100644 --- a/packages/console/src/components/Checkbox/index.tsx +++ b/packages/console/src/components/Checkbox/index.tsx @@ -19,7 +19,7 @@ type Props = { tooltip?: ReactNode; }; -const Checkbox = ({ +function Checkbox({ checked, disabled = false, indeterminate, @@ -27,7 +27,7 @@ const Checkbox = ({ label, className, tooltip, -}: Props) => { +}: Props) { const [isIndeterminate, setIsIndeterminate] = useState(indeterminate); useLayoutEffect(() => { @@ -106,6 +106,6 @@ const Checkbox = ({ ); -}; +} export default Checkbox; diff --git a/packages/console/src/components/CodeEditor/index.tsx b/packages/console/src/components/CodeEditor/index.tsx index 2e2b53f74..1671dcdbb 100644 --- a/packages/console/src/components/CodeEditor/index.tsx +++ b/packages/console/src/components/CodeEditor/index.tsx @@ -21,7 +21,7 @@ type Props = { placeholder?: string; }; -const CodeEditor = ({ +function CodeEditor({ className, language, isReadonly = false, @@ -31,7 +31,7 @@ const CodeEditor = ({ hasError, errorMessage, placeholder, -}: Props) => { +}: Props) { const textareaRef = useRef(null); const editorRef = useRef(null); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -142,6 +142,6 @@ const CodeEditor = ({ {hasError &&
{finalErrorMessage}
} ); -}; +} export default CodeEditor; diff --git a/packages/console/src/components/ColorPicker/index.tsx b/packages/console/src/components/ColorPicker/index.tsx index 18903582b..c17e0a263 100644 --- a/packages/console/src/components/ColorPicker/index.tsx +++ b/packages/console/src/components/ColorPicker/index.tsx @@ -9,7 +9,7 @@ type Props = { onChange?: (value: string) => void; }; -const ColorPicker = ({ onChange, value = '#000000' }: Props) => { +function ColorPicker({ onChange, value = '#000000' }: Props) { const [id, setId] = useState(nanoid()); const handleChange: ChangeEventHandler = (event) => { @@ -22,5 +22,5 @@ const ColorPicker = ({ onChange, value = '#000000' }: Props) => { ); -}; +} export default ColorPicker; diff --git a/packages/console/src/components/ConfirmModal/index.tsx b/packages/console/src/components/ConfirmModal/index.tsx index e60d00234..09bfc5f8b 100644 --- a/packages/console/src/components/ConfirmModal/index.tsx +++ b/packages/console/src/components/ConfirmModal/index.tsx @@ -24,7 +24,7 @@ export type ConfirmModalProps = { onConfirm?: () => void; }; -const ConfirmModal = ({ +function ConfirmModal({ children, className, title = 'general.reminder', @@ -36,7 +36,7 @@ const ConfirmModal = ({ isLoading = false, onCancel, onConfirm, -}: ConfirmModalProps) => { +}: ConfirmModalProps) { return ( ); -}; +} export default ConfirmModal; diff --git a/packages/console/src/components/ConnectorLogo/index.tsx b/packages/console/src/components/ConnectorLogo/index.tsx index ebb27a457..06ca89b32 100644 --- a/packages/console/src/components/ConnectorLogo/index.tsx +++ b/packages/console/src/components/ConnectorLogo/index.tsx @@ -13,7 +13,7 @@ type Props = { size?: 'small' | 'medium' | 'large'; }; -const ConnectorLogo = ({ className, data, size = 'medium' }: Props) => { +function ConnectorLogo({ className, data, size = 'medium' }: Props) { const theme = useTheme(); return ( @@ -24,6 +24,6 @@ const ConnectorLogo = ({ className, data, size = 'medium' }: Props) => { src={theme === Theme.Dark && data.logoDark ? data.logoDark : data.logo} /> ); -}; +} export default ConnectorLogo; diff --git a/packages/console/src/components/CopyToClipboard/index.tsx b/packages/console/src/components/CopyToClipboard/index.tsx index 70ebf465d..35fd1fdc2 100644 --- a/packages/console/src/components/CopyToClipboard/index.tsx +++ b/packages/console/src/components/CopyToClipboard/index.tsx @@ -23,13 +23,13 @@ type Props = { type CopyState = TFuncKey<'translation', 'admin_console.general'>; -const CopyToClipboard = ({ +function CopyToClipboard({ value, className, hasVisibilityToggle, variant = 'contained', size = 'default', -}: Props) => { +}: Props) { const copyIconReference = useRef(null); const [copyState, setCopyState] = useState('copy'); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console.general' }); @@ -101,6 +101,6 @@ const CopyToClipboard = ({ ); -}; +} export default CopyToClipboard; diff --git a/packages/console/src/components/DangerousRaw/index.tsx b/packages/console/src/components/DangerousRaw/index.tsx index 2e1f4f5cc..7015a7e7e 100644 --- a/packages/console/src/components/DangerousRaw/index.tsx +++ b/packages/console/src/components/DangerousRaw/index.tsx @@ -4,6 +4,8 @@ type Props = { children: ReactNode; }; -const DangerousRaw = ({ children }: Props) => {children}; +function DangerousRaw({ children }: Props) { + return {children}; +} export default DangerousRaw; diff --git a/packages/console/src/components/DateTime/index.tsx b/packages/console/src/components/DateTime/index.tsx index 4c20a2473..7fc43947e 100644 --- a/packages/console/src/components/DateTime/index.tsx +++ b/packages/console/src/components/DateTime/index.tsx @@ -5,7 +5,7 @@ type Props = { children: Nullable; }; -const DateTime = ({ children }: Props) => { +function DateTime({ children }: Props) { const date = children && new Date(children); if (!date || !isValid(date)) { @@ -13,6 +13,6 @@ const DateTime = ({ children }: Props) => { } return {date.toLocaleDateString()}; -}; +} export default DateTime; diff --git a/packages/console/src/components/DeleteConfirmModal/index.tsx b/packages/console/src/components/DeleteConfirmModal/index.tsx index b2e75f86b..bccabafa7 100644 --- a/packages/console/src/components/DeleteConfirmModal/index.tsx +++ b/packages/console/src/components/DeleteConfirmModal/index.tsx @@ -15,7 +15,7 @@ type Props = { onConfirm: () => void; }; -const DeleteConfirmModal = ({ +function DeleteConfirmModal({ isOpen, isLoading = false, expectedInput, @@ -24,7 +24,7 @@ const DeleteConfirmModal = ({ className, onCancel, onConfirm, -}: Props) => { +}: Props) { const [input, setInput] = useState(''); const isConfirmBlocked = Boolean(expectedInput) && input !== expectedInput; @@ -52,6 +52,6 @@ const DeleteConfirmModal = ({ )} ); -}; +} export default DeleteConfirmModal; diff --git a/packages/console/src/components/DetailsForm/index.tsx b/packages/console/src/components/DetailsForm/index.tsx index 20f945685..1f9e3a2a2 100644 --- a/packages/console/src/components/DetailsForm/index.tsx +++ b/packages/console/src/components/DetailsForm/index.tsx @@ -13,14 +13,14 @@ type Props = { children: ReactNode; }; -const DetailsForm = ({ +function DetailsForm({ autoComplete, isDirty, isSubmitting, onSubmit, onDiscard, children, -}: Props) => { +}: Props) { return (
); -}; +} export default DetailsForm; diff --git a/packages/console/src/components/DetailsSkeleton/index.tsx b/packages/console/src/components/DetailsSkeleton/index.tsx index 0d620322a..2e9b38dba 100644 --- a/packages/console/src/components/DetailsSkeleton/index.tsx +++ b/packages/console/src/components/DetailsSkeleton/index.tsx @@ -6,36 +6,38 @@ import Spacer from '@/components/Spacer'; import * as styles from './index.module.scss'; -const DetailsSkeleton = () => ( -
-
-
-
-
-
+function DetailsSkeleton() { + return ( +
+
+
+
+
+
+
+ +
- -
-
-
- -
-
-
- {Array.from({ length: 2 }).map((_, index) => ( +
+ +
+
+
+ {Array.from({ length: 2 }).map((_, index) => ( + // eslint-disable-next-line react/no-array-index-key +
+ ))} +
+
+
+ {Array.from({ length: 4 }).map((_, index) => ( // eslint-disable-next-line react/no-array-index-key -
+
))}
-
-
- {Array.from({ length: 4 }).map((_, index) => ( - // eslint-disable-next-line react/no-array-index-key -
- ))} -
- -
-); + +
+ ); +} export default DetailsSkeleton; diff --git a/packages/console/src/components/Divider/index.tsx b/packages/console/src/components/Divider/index.tsx index d04ec716a..3bcd6357d 100644 --- a/packages/console/src/components/Divider/index.tsx +++ b/packages/console/src/components/Divider/index.tsx @@ -6,6 +6,8 @@ type Props = { className?: string; }; -const Divider = ({ className }: Props) =>
; +function Divider({ className }: Props) { + return
; +} export default Divider; diff --git a/packages/console/src/components/DragDrop/DragDropProvider.tsx b/packages/console/src/components/DragDrop/DragDropProvider.tsx index dca0601d6..759c6c94d 100644 --- a/packages/console/src/components/DragDrop/DragDropProvider.tsx +++ b/packages/console/src/components/DragDrop/DragDropProvider.tsx @@ -19,7 +19,7 @@ export const DragDropContext = createContext({ isDragging: false, }); -const DragDropProvider = ({ children }: Props) => { +function DragDropProvider({ children }: Props) { const [isDragging, setIsDragging] = useState(false); const memorizedContext = useMemo(() => ({ isDragging, setIsDragging }), [isDragging]); @@ -31,6 +31,6 @@ const DragDropProvider = ({ children }: Props) => { ); -}; +} export default DragDropProvider; diff --git a/packages/console/src/components/DragDrop/DraggableItem.tsx b/packages/console/src/components/DragDrop/DraggableItem.tsx index 7795e91dc..0d6834d59 100644 --- a/packages/console/src/components/DragDrop/DraggableItem.tsx +++ b/packages/console/src/components/DragDrop/DraggableItem.tsx @@ -21,14 +21,14 @@ type DragItemProps = { type: string; }; -const DraggableItem = ({ +function DraggableItem({ id, children, sortIndex, moveItem, dragType = 'DraggableItem', className, -}: Props) => { +}: Props) { const ref = useRef(null); const { setIsDragging } = useContext(DragDropContext); const [{ handlerId }, drop] = useDrop }>({ @@ -110,6 +110,6 @@ const DraggableItem = ({ {children}
); -}; +} export default DraggableItem; diff --git a/packages/console/src/components/Drawer/index.tsx b/packages/console/src/components/Drawer/index.tsx index 61f0dbc19..29e6a8b17 100644 --- a/packages/console/src/components/Drawer/index.tsx +++ b/packages/console/src/components/Drawer/index.tsx @@ -16,7 +16,7 @@ type Props = { onClose?: () => void; }; -const Drawer = ({ title, subtitle, isOpen, children, onClose }: Props) => { +function Drawer({ title, subtitle, isOpen, children, onClose }: Props) { return ( {
); -}; +} export default Drawer; diff --git a/packages/console/src/components/Dropdown/DropdownItem.tsx b/packages/console/src/components/Dropdown/DropdownItem.tsx index 2b5972839..b8070b076 100644 --- a/packages/console/src/components/Dropdown/DropdownItem.tsx +++ b/packages/console/src/components/Dropdown/DropdownItem.tsx @@ -14,24 +14,26 @@ type Props = { type?: 'default' | 'danger'; }; -const DropdownItem = ({ +function DropdownItem({ onClick, className, children, icon, iconClassName, type = 'default', -}: Props) => ( -
- {icon && {icon}} - {children} -
-); +}: Props) { + return ( +
+ {icon && {icon}} + {children} +
+ ); +} export default DropdownItem; diff --git a/packages/console/src/components/Dropdown/index.tsx b/packages/console/src/components/Dropdown/index.tsx index 3206b8330..c86a78b00 100644 --- a/packages/console/src/components/Dropdown/index.tsx +++ b/packages/console/src/components/Dropdown/index.tsx @@ -31,14 +31,14 @@ type Props = { hasOverflowContent?: boolean; }; -const Div = ({ +function Div({ children, ...rest -}: PropsWithChildren, HTMLDivElement>>) => ( -
{children}
-); +}: PropsWithChildren, HTMLDivElement>>) { + return
{children}
; +} -const Dropdown = ({ +function Dropdown({ children, title, isOpen, @@ -49,7 +49,7 @@ const Dropdown = ({ titleClassName, horizontalAlign = 'end', hasOverflowContent, -}: Props) => { +}: Props) { const overlayRef = useRef(null); const { position, positionState, mutate } = usePosition({ @@ -95,6 +95,6 @@ const Dropdown = ({
); -}; +} export default Dropdown; diff --git a/packages/console/src/components/EmptyDataPlaceholder/index.tsx b/packages/console/src/components/EmptyDataPlaceholder/index.tsx index 4b24142d6..27655c70f 100644 --- a/packages/console/src/components/EmptyDataPlaceholder/index.tsx +++ b/packages/console/src/components/EmptyDataPlaceholder/index.tsx @@ -13,7 +13,7 @@ export type Props = { size?: 'large' | 'medium' | 'small'; }; -const EmptyDataPlaceholder = ({ title, size = 'medium' }: Props) => { +function EmptyDataPlaceholder({ title, size = 'medium' }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const theme = useTheme(); const EmptyImage = theme === Theme.Light ? Empty : EmptyDark; @@ -24,6 +24,6 @@ const EmptyDataPlaceholder = ({ title, size = 'medium' }: Props) => {
{title ?? t('errors.empty')}
); -}; +} export default EmptyDataPlaceholder; diff --git a/packages/console/src/components/FormCard/index.tsx b/packages/console/src/components/FormCard/index.tsx index c3a72f24a..28c8f346e 100644 --- a/packages/console/src/components/FormCard/index.tsx +++ b/packages/console/src/components/FormCard/index.tsx @@ -13,7 +13,7 @@ type Props = { children: ReactNode; }; -const FormCard = ({ title, description, learnMoreLink, children }: Props) => { +function FormCard({ title, description, learnMoreLink, children }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -37,6 +37,6 @@ const FormCard = ({ title, description, learnMoreLink, children }: Props) => {
{children}
); -}; +} export default FormCard; diff --git a/packages/console/src/components/FormField/index.tsx b/packages/console/src/components/FormField/index.tsx index c52638de0..3b8963bd6 100644 --- a/packages/console/src/components/FormField/index.tsx +++ b/packages/console/src/components/FormField/index.tsx @@ -22,7 +22,7 @@ export type Props = { tip?: ToggleTipProps['content']; }; -const FormField = ({ +function FormField({ title, children, isRequired, @@ -30,7 +30,7 @@ const FormField = ({ className, tip, headlineClassName, -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -55,6 +55,6 @@ const FormField = ({ {children}
); -}; +} export default FormField; diff --git a/packages/console/src/components/IconButton/index.tsx b/packages/console/src/components/IconButton/index.tsx index 5a095ce8a..477c3bba5 100644 --- a/packages/console/src/components/IconButton/index.tsx +++ b/packages/console/src/components/IconButton/index.tsx @@ -9,10 +9,10 @@ export type Props = Omit, 'size' | 'type'> & { iconClassName?: string; }; -const IconButton = ( +function IconButton( { size = 'medium', children, className, iconClassName, ...rest }: Props, reference: ForwardedRef -) => { +) { const tipRef = useRef(null); return ( @@ -27,6 +27,6 @@ const IconButton = (
); -}; +} export default forwardRef(IconButton); diff --git a/packages/console/src/components/ImageWithErrorFallback/index.tsx b/packages/console/src/components/ImageWithErrorFallback/index.tsx index 3b09c3c9f..cf1fa1652 100644 --- a/packages/console/src/components/ImageWithErrorFallback/index.tsx +++ b/packages/console/src/components/ImageWithErrorFallback/index.tsx @@ -11,14 +11,14 @@ type Props = { fallbackElement?: ReactElement; } & ImgHTMLAttributes; -const ImageWithErrorFallback = ({ +function ImageWithErrorFallback({ src, alt, className, containerClassName, fallbackElement, ...props -}: Props) => { +}: Props) { const [hasError, setHasError] = useState(false); const theme = useTheme(); const DefaultFallback = theme === Theme.Light ? FallbackImageLight : FallbackImageDark; @@ -40,6 +40,6 @@ const ImageWithErrorFallback = ({ {alt}
); -}; +} export default ImageWithErrorFallback; diff --git a/packages/console/src/components/Index/index.tsx b/packages/console/src/components/Index/index.tsx index 35554eaf4..98c695abd 100644 --- a/packages/console/src/components/Index/index.tsx +++ b/packages/console/src/components/Index/index.tsx @@ -11,17 +11,19 @@ type Props = { isComplete?: boolean; }; -const Index = ({ className, index, isActive, isComplete }: Props) => ( -
- {isComplete ? : index} -
-); +function Index({ className, index, isActive, isComplete }: Props) { + return ( +
+ {isComplete ? : index} +
+ ); +} export default Index; diff --git a/packages/console/src/components/ItemPreview/index.tsx b/packages/console/src/components/ItemPreview/index.tsx index e918f95cc..c35616c8a 100644 --- a/packages/console/src/components/ItemPreview/index.tsx +++ b/packages/console/src/components/ItemPreview/index.tsx @@ -13,7 +13,7 @@ type Props = { size?: 'default' | 'compact'; }; -const ItemPreview = ({ title, subtitle, icon, to, size = 'default' }: Props) => { +function ItemPreview({ title, subtitle, icon, to, size = 'default' }: Props) { return (
{icon} @@ -34,6 +34,6 @@ const ItemPreview = ({ title, subtitle, icon, to, size = 'default' }: Props) =>
); -}; +} export default ItemPreview; diff --git a/packages/console/src/components/LivePreviewButton/index.tsx b/packages/console/src/components/LivePreviewButton/index.tsx index d5bbd19a0..644cf8172 100644 --- a/packages/console/src/components/LivePreviewButton/index.tsx +++ b/packages/console/src/components/LivePreviewButton/index.tsx @@ -18,7 +18,7 @@ type Props = { isDisabled: boolean; }; -const LivePreviewButton = ({ size, type, isDisabled }: Props) => { +function LivePreviewButton({ size, type, isDisabled }: Props) { const { configs, updateConfigs } = useConfigs(); const { userEndpoint } = useContext(AppEndpointsContext); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -48,6 +48,6 @@ const LivePreviewButton = ({ size, type, isDisabled }: Props) => { /> ); -}; +} export default LivePreviewButton; diff --git a/packages/console/src/components/Markdown/components/GithubRawImage/index.tsx b/packages/console/src/components/Markdown/components/GithubRawImage/index.tsx index 0b2605b9a..08774860b 100644 --- a/packages/console/src/components/Markdown/components/GithubRawImage/index.tsx +++ b/packages/console/src/components/Markdown/components/GithubRawImage/index.tsx @@ -3,7 +3,7 @@ import { useRef, useState } from 'react'; const githubRawUrlPrefix = 'https://raw.githubusercontent.com/logto-io/logto/master'; -const GithubRawImage = ({ src, alt }: HTMLProps) => { +function GithubRawImage({ src, alt }: HTMLProps) { const imgRef = useRef(null); const [width, setWidth] = useState(0); @@ -30,6 +30,6 @@ const GithubRawImage = ({ src, alt }: HTMLProps) => { onLoad={onLoad} /> ); -}; +} export default GithubRawImage; diff --git a/packages/console/src/components/Markdown/index.tsx b/packages/console/src/components/Markdown/index.tsx index b96ac1f66..64d3be613 100644 --- a/packages/console/src/components/Markdown/index.tsx +++ b/packages/console/src/components/Markdown/index.tsx @@ -14,7 +14,7 @@ type Props = { children: string; }; -const Markdown = ({ className, children }: Props) => { +function Markdown({ className, children }: Props) { const tocIdSet = useRef>(new Set()); const generateTocId = (text: string): Optional => { @@ -78,6 +78,6 @@ const Markdown = ({ className, children }: Props) => { {children} ); -}; +} export default memo(Markdown); diff --git a/packages/console/src/components/ModalLayout/index.tsx b/packages/console/src/components/ModalLayout/index.tsx index 90f9c15db..84d3cc265 100644 --- a/packages/console/src/components/ModalLayout/index.tsx +++ b/packages/console/src/components/ModalLayout/index.tsx @@ -17,14 +17,14 @@ type Props = { size?: 'medium' | 'large' | 'xlarge'; } & Pick; -const ModalLayout = ({ +function ModalLayout({ children, footer, onClose, className, size = 'medium', ...cardTitleProps -}: Props) => { +}: Props) { return (
@@ -43,6 +43,6 @@ const ModalLayout = ({ {footer &&
{footer}
} ); -}; +} export default ModalLayout; diff --git a/packages/console/src/components/MultiTextInput/index.tsx b/packages/console/src/components/MultiTextInput/index.tsx index dda2ec39b..22e6a2605 100644 --- a/packages/console/src/components/MultiTextInput/index.tsx +++ b/packages/console/src/components/MultiTextInput/index.tsx @@ -25,7 +25,7 @@ export type Props = { className?: string; }; -const MultiTextInput = ({ +function MultiTextInput({ title, value, onChange, @@ -33,7 +33,7 @@ const MultiTextInput = ({ error, placeholder, className, -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const [deleteFieldIndex, setDeleteFieldIndex] = useState(); @@ -127,6 +127,6 @@ const MultiTextInput = ({
); -}; +} export default MultiTextInput; diff --git a/packages/console/src/components/MultiTextInputField/index.tsx b/packages/console/src/components/MultiTextInputField/index.tsx index 3cdb2165f..2ebcff415 100644 --- a/packages/console/src/components/MultiTextInputField/index.tsx +++ b/packages/console/src/components/MultiTextInputField/index.tsx @@ -12,23 +12,25 @@ type Props = MultiTextInputProps & formFieldClassName?: FormFieldProps['className']; }; -const MultiTextInputField = ({ +function MultiTextInputField({ title, isRequired, tip, formFieldClassName, value, ...rest -}: Props) => ( - 1 && styles.headlineWithMultiInputs)} - > - - -); +}: Props) { + return ( + 1 && styles.headlineWithMultiInputs)} + > + + + ); +} export default MultiTextInputField; diff --git a/packages/console/src/components/OverlayScrollbar/index.tsx b/packages/console/src/components/OverlayScrollbar/index.tsx index 0a6069faa..bafaa34bd 100644 --- a/packages/console/src/components/OverlayScrollbar/index.tsx +++ b/packages/console/src/components/OverlayScrollbar/index.tsx @@ -1,11 +1,13 @@ import type { OverlayScrollbarsComponentProps } from 'overlayscrollbars-react'; import { OverlayScrollbarsComponent } from 'overlayscrollbars-react'; -const OverlayScrollbar = (props: OverlayScrollbarsComponentProps) => ( - -); +function OverlayScrollbar(props: OverlayScrollbarsComponentProps) { + return ( + + ); +} export default OverlayScrollbar; diff --git a/packages/console/src/components/Pagination/Next.tsx b/packages/console/src/components/Pagination/Next.tsx index bbe6cf9bc..2f25b5f9a 100644 --- a/packages/console/src/components/Pagination/Next.tsx +++ b/packages/console/src/components/Pagination/Next.tsx @@ -1,4 +1,4 @@ -const Next = () => { +function Next() { return ( { /> ); -}; +} export default Next; diff --git a/packages/console/src/components/Pagination/Previous.tsx b/packages/console/src/components/Pagination/Previous.tsx index 43fca27f2..b67dd76c4 100644 --- a/packages/console/src/components/Pagination/Previous.tsx +++ b/packages/console/src/components/Pagination/Previous.tsx @@ -1,4 +1,4 @@ -const Previous = () => { +function Previous() { return ( { /> ); -}; +} export default Previous; diff --git a/packages/console/src/components/Pagination/index.tsx b/packages/console/src/components/Pagination/index.tsx index eac790186..7f0f10979 100644 --- a/packages/console/src/components/Pagination/index.tsx +++ b/packages/console/src/components/Pagination/index.tsx @@ -19,14 +19,7 @@ export type Props = { onChange?: (pageIndex: number) => void; }; -const Pagination = ({ - page, - totalCount, - pageSize, - className, - mode = 'normal', - onChange, -}: Props) => { +function Pagination({ page, totalCount, pageSize, className, mode = 'normal', onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); /** @@ -77,6 +70,6 @@ const Pagination = ({ />
); -}; +} export default Pagination; diff --git a/packages/console/src/components/PermissionsTable/index.tsx b/packages/console/src/components/PermissionsTable/index.tsx index 2c037f380..8a6dfbaee 100644 --- a/packages/console/src/components/PermissionsTable/index.tsx +++ b/packages/console/src/components/PermissionsTable/index.tsx @@ -44,7 +44,7 @@ type Props = { retryHandler: () => void; }; -const PermissionsTable = ({ +function PermissionsTable({ scopes, isLoading, errorMessage, @@ -58,7 +58,7 @@ const PermissionsTable = ({ createHandler, deleteHandler, retryHandler, -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const { getDocumentationUrl } = useDocumentationUrl(); @@ -182,6 +182,6 @@ const PermissionsTable = ({ onRetry={retryHandler} /> ); -}; +} export default PermissionsTable; diff --git a/packages/console/src/components/RadioGroup/Radio.tsx b/packages/console/src/components/RadioGroup/Radio.tsx index 00d257901..dc89da024 100644 --- a/packages/console/src/components/RadioGroup/Radio.tsx +++ b/packages/console/src/components/RadioGroup/Radio.tsx @@ -7,14 +7,16 @@ import { useTranslation } from 'react-i18next'; import type DangerousRaw from '../DangerousRaw'; import * as styles from './Radio.module.scss'; -const Check = () => ( - - - -); +function Check() { + return ( + + + + ); +} export type Props = { className?: string; @@ -31,7 +33,7 @@ export type Props = { icon?: ReactNode; }; -const Radio = ({ +function Radio({ className, value, title, @@ -44,7 +46,7 @@ const Radio = ({ isDisabled, disabledLabel, icon, -}: Props) => { +}: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const handleKeyPress: KeyboardEventHandler = useCallback( @@ -95,6 +97,6 @@ const Radio = ({
); -}; +} export default Radio; diff --git a/packages/console/src/components/RadioGroup/index.tsx b/packages/console/src/components/RadioGroup/index.tsx index 395ac8973..3c70d6213 100644 --- a/packages/console/src/components/RadioGroup/index.tsx +++ b/packages/console/src/components/RadioGroup/index.tsx @@ -24,10 +24,10 @@ type Props = { onChange?: (value: string) => void; }; -const RadioGroup = ( +function RadioGroup( { name, children, value, className, onChange, type = 'plain' }: Props, ref?: Ref -) => { +) { return (
{Children.map(children, (child) => { @@ -56,7 +56,7 @@ const RadioGroup = ( })}
); -}; +} export default forwardRef(RadioGroup); export { default as Radio } from './Radio'; diff --git a/packages/console/src/components/RequestDataError/index.tsx b/packages/console/src/components/RequestDataError/index.tsx index d4855160e..ff306b536 100644 --- a/packages/console/src/components/RequestDataError/index.tsx +++ b/packages/console/src/components/RequestDataError/index.tsx @@ -17,7 +17,7 @@ type Props = { className?: string; }; -const RequestDataError = ({ error, onRetry, className }: Props) => { +function RequestDataError({ error, onRetry, className }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const theme = useTheme(); const errorMessage = error.body?.message ?? error.message; @@ -34,6 +34,6 @@ const RequestDataError = ({ error, onRetry, className }: Props) => { {onRetry &&
); -}; +} export default ResourceItem; diff --git a/packages/console/src/components/RoleScopesTransfer/components/SourceScopeItem/index.tsx b/packages/console/src/components/RoleScopesTransfer/components/SourceScopeItem/index.tsx index dc22218be..18c196a7e 100644 --- a/packages/console/src/components/RoleScopesTransfer/components/SourceScopeItem/index.tsx +++ b/packages/console/src/components/RoleScopesTransfer/components/SourceScopeItem/index.tsx @@ -11,28 +11,30 @@ type Props = { onSelect: (scope: ScopeResponse) => void; }; -const SourceScopeItem = ({ scope, scope: { name }, isSelected, onSelect }: Props) => ( -
- { - onSelect(scope); - }} - /> -
{ - onSelect(scope); - })} - onClick={() => { - onSelect(scope); - }} - > - {name} +function SourceScopeItem({ scope, scope: { name }, isSelected, onSelect }: Props) { + return ( +
+ { + onSelect(scope); + }} + /> +
{ + onSelect(scope); + })} + onClick={() => { + onSelect(scope); + }} + > + {name} +
-
-); + ); +} export default SourceScopeItem; diff --git a/packages/console/src/components/RoleScopesTransfer/components/SourceScopesBox/index.tsx b/packages/console/src/components/RoleScopesTransfer/components/SourceScopesBox/index.tsx index 881a2bea4..29608a5cf 100644 --- a/packages/console/src/components/RoleScopesTransfer/components/SourceScopesBox/index.tsx +++ b/packages/console/src/components/RoleScopesTransfer/components/SourceScopesBox/index.tsx @@ -23,7 +23,7 @@ type Props = { onChange: (value: ScopeResponse[]) => void; }; -const SourceScopesBox = ({ roleId, selectedScopes, onChange }: Props) => { +function SourceScopesBox({ roleId, selectedScopes, onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const { data: allResources, error: fetchAllResourcesError } = useSWR< @@ -154,6 +154,6 @@ const SourceScopesBox = ({ roleId, selectedScopes, onChange }: Props) => {
); -}; +} export default SourceScopesBox; diff --git a/packages/console/src/components/RoleScopesTransfer/components/TargetScopeItem/index.tsx b/packages/console/src/components/RoleScopesTransfer/components/TargetScopeItem/index.tsx index 66ee1892f..e32a84e7c 100644 --- a/packages/console/src/components/RoleScopesTransfer/components/TargetScopeItem/index.tsx +++ b/packages/console/src/components/RoleScopesTransfer/components/TargetScopeItem/index.tsx @@ -10,7 +10,7 @@ export type Props = { onDelete: (scope: ScopeResponse) => void; }; -const TargetScopeItem = ({ scope, onDelete }: Props) => { +function TargetScopeItem({ scope, onDelete }: Props) { const { name, resource: { name: resourceName }, @@ -33,6 +33,6 @@ const TargetScopeItem = ({ scope, onDelete }: Props) => {
); -}; +} export default TargetScopeItem; diff --git a/packages/console/src/components/RoleScopesTransfer/components/TargetScopesBox/index.tsx b/packages/console/src/components/RoleScopesTransfer/components/TargetScopesBox/index.tsx index 67e006c41..508db33d2 100644 --- a/packages/console/src/components/RoleScopesTransfer/components/TargetScopesBox/index.tsx +++ b/packages/console/src/components/RoleScopesTransfer/components/TargetScopesBox/index.tsx @@ -11,7 +11,7 @@ type Props = { onChange: (value: ScopeResponse[]) => void; }; -const TargetScopesBox = ({ selectedScopes, onChange }: Props) => { +function TargetScopesBox({ selectedScopes, onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -34,6 +34,6 @@ const TargetScopesBox = ({ selectedScopes, onChange }: Props) => {
); -}; +} export default TargetScopesBox; diff --git a/packages/console/src/components/RoleScopesTransfer/index.tsx b/packages/console/src/components/RoleScopesTransfer/index.tsx index 4b1c37366..14f408ad2 100644 --- a/packages/console/src/components/RoleScopesTransfer/index.tsx +++ b/packages/console/src/components/RoleScopesTransfer/index.tsx @@ -13,12 +13,14 @@ type Props = { onChange: (value: ScopeResponse[]) => void; }; -const RoleScopesTransfer = ({ roleId, value, onChange }: Props) => ( -
- -
- -
-); +function RoleScopesTransfer({ roleId, value, onChange }: Props) { + return ( +
+ +
+ +
+ ); +} export default RoleScopesTransfer; diff --git a/packages/console/src/components/RoleUsersTransfer/components/SourceUserItem/index.tsx b/packages/console/src/components/RoleUsersTransfer/components/SourceUserItem/index.tsx index 45c7c1cf5..41431a7e8 100644 --- a/packages/console/src/components/RoleUsersTransfer/components/SourceUserItem/index.tsx +++ b/packages/console/src/components/RoleUsersTransfer/components/SourceUserItem/index.tsx @@ -13,7 +13,7 @@ type Props = { onSelect: () => void; }; -const SourceUserItem = ({ user, isSelected, onSelect }: Props) => { +function SourceUserItem({ user, isSelected, onSelect }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -38,6 +38,6 @@ const SourceUserItem = ({ user, isSelected, onSelect }: Props) => {
{user.name ?? t('users.unnamed')}
); -}; +} export default SourceUserItem; diff --git a/packages/console/src/components/RoleUsersTransfer/components/SourceUsersBox/index.tsx b/packages/console/src/components/RoleUsersTransfer/components/SourceUsersBox/index.tsx index cba7f59df..d2d64eb6a 100644 --- a/packages/console/src/components/RoleUsersTransfer/components/SourceUsersBox/index.tsx +++ b/packages/console/src/components/RoleUsersTransfer/components/SourceUsersBox/index.tsx @@ -27,7 +27,7 @@ type Props = { const pageSize = defaultPageSize; -const SourceUsersBox = ({ roleId, selectedUsers, onChange }: Props) => { +function SourceUsersBox({ roleId, selectedUsers, onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const [page, setPage] = useState(1); const [keyword, setKeyword] = useState(''); @@ -105,5 +105,5 @@ const SourceUsersBox = ({ roleId, selectedUsers, onChange }: Props) => { />
); -}; +} export default SourceUsersBox; diff --git a/packages/console/src/components/RoleUsersTransfer/components/TargetUserItem/index.tsx b/packages/console/src/components/RoleUsersTransfer/components/TargetUserItem/index.tsx index ee00b9779..fff71b948 100644 --- a/packages/console/src/components/RoleUsersTransfer/components/TargetUserItem/index.tsx +++ b/packages/console/src/components/RoleUsersTransfer/components/TargetUserItem/index.tsx @@ -12,7 +12,7 @@ type Props = { onDelete: () => void; }; -const TargetUserItem = ({ user, onDelete }: Props) => { +function TargetUserItem({ user, onDelete }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -30,6 +30,6 @@ const TargetUserItem = ({ user, onDelete }: Props) => {
); -}; +} export default TargetUserItem; diff --git a/packages/console/src/components/RoleUsersTransfer/components/TargetUsersBox/index.tsx b/packages/console/src/components/RoleUsersTransfer/components/TargetUsersBox/index.tsx index e9d3ed0f3..425d548fa 100644 --- a/packages/console/src/components/RoleUsersTransfer/components/TargetUsersBox/index.tsx +++ b/packages/console/src/components/RoleUsersTransfer/components/TargetUsersBox/index.tsx @@ -11,7 +11,7 @@ type Props = { onChange: (value: User[]) => void; }; -const TargetUsersBox = ({ selectedUsers, onChange }: Props) => { +function TargetUsersBox({ selectedUsers, onChange }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); return ( @@ -35,6 +35,6 @@ const TargetUsersBox = ({ selectedUsers, onChange }: Props) => {
); -}; +} export default TargetUsersBox; diff --git a/packages/console/src/components/RoleUsersTransfer/index.tsx b/packages/console/src/components/RoleUsersTransfer/index.tsx index c0d91902f..a8abde791 100644 --- a/packages/console/src/components/RoleUsersTransfer/index.tsx +++ b/packages/console/src/components/RoleUsersTransfer/index.tsx @@ -13,12 +13,14 @@ type Props = { onChange: (value: User[]) => void; }; -const RoleUsersTransfer = ({ roleId, value, onChange }: Props) => ( -
- -
- -
-); +function RoleUsersTransfer({ roleId, value, onChange }: Props) { + return ( +
+ +
+ +
+ ); +} export default RoleUsersTransfer; diff --git a/packages/console/src/components/Search/index.tsx b/packages/console/src/components/Search/index.tsx index 9c9dc865f..5bdca5423 100644 --- a/packages/console/src/components/Search/index.tsx +++ b/packages/console/src/components/Search/index.tsx @@ -17,14 +17,14 @@ type Props = { onClearSearch?: () => void; }; -const Search = ({ +function Search({ defaultValue = '', isClearable = false, placeholder, inputClassName, onSearch, onClearSearch, -}: Props) => { +}: Props) { const [inputValue, setInputValue] = useState(defaultValue); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -58,6 +58,6 @@ const Search = ({ )}
); -}; +} export default Search; diff --git a/packages/console/src/components/Select/index.tsx b/packages/console/src/components/Select/index.tsx index b2e508fd9..0bb154e90 100644 --- a/packages/console/src/components/Select/index.tsx +++ b/packages/console/src/components/Select/index.tsx @@ -28,7 +28,7 @@ type Props = { size?: 'small' | 'medium' | 'large'; }; -const Select = ({ +function Select({ className, value, options, @@ -38,7 +38,7 @@ const Select = ({ placeholder, isClearable, size = 'large', -}: Props) => { +}: Props) { const [isOpen, setIsOpen] = useState(false); const anchorRef = useRef(null); const current = options.find((option) => value && option.value === value); @@ -116,6 +116,6 @@ const Select = ({ ); -}; +} export default Select; diff --git a/packages/console/src/components/SessionExpired/index.tsx b/packages/console/src/components/SessionExpired/index.tsx index 4bb6cf896..7d375c8ec 100644 --- a/packages/console/src/components/SessionExpired/index.tsx +++ b/packages/console/src/components/SessionExpired/index.tsx @@ -10,7 +10,7 @@ type Props = { callbackHref?: string; }; -const SessionExpired = ({ callbackHref = '/callback', error }: Props) => { +function SessionExpired({ callbackHref = '/callback', error }: Props) { const { signIn, signOut } = useLogto(); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -31,6 +31,6 @@ const SessionExpired = ({ callbackHref = '/callback', error }: Props) => { /> ); -}; +} export default SessionExpired; diff --git a/packages/console/src/components/SignInExperiencePreview/components/ToggleUiThemeButton/index.tsx b/packages/console/src/components/SignInExperiencePreview/components/ToggleUiThemeButton/index.tsx index b75034a1a..2898c7d2f 100644 --- a/packages/console/src/components/SignInExperiencePreview/components/ToggleUiThemeButton/index.tsx +++ b/packages/console/src/components/SignInExperiencePreview/components/ToggleUiThemeButton/index.tsx @@ -16,13 +16,13 @@ type Props = { size?: ButtonProps['size']; }; -const ToggleUiThemeButton = ({ +function ToggleUiThemeButton({ value, onToggle, className, iconClassName, size = 'medium', -}: Props) => { +}: Props) { const ThemeIcon = value === Theme.Light ? Sun : Moon; return ( @@ -37,6 +37,6 @@ const ToggleUiThemeButton = ({ />
); -}; +} export default ToggleUiThemeButton; diff --git a/packages/console/src/components/SignInExperiencePreview/index.tsx b/packages/console/src/components/SignInExperiencePreview/index.tsx index 6250481e2..bf6c81ee1 100644 --- a/packages/console/src/components/SignInExperiencePreview/index.tsx +++ b/packages/console/src/components/SignInExperiencePreview/index.tsx @@ -25,7 +25,7 @@ type Props = { signInExperience?: SignInExperience; }; -const SignInExperiencePreview = ({ platform, mode, language = 'en', signInExperience }: Props) => { +function SignInExperiencePreview({ platform, mode, language = 'en', signInExperience }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const { customPhrases } = useUiLanguages(); @@ -139,6 +139,6 @@ const SignInExperiencePreview = ({ platform, mode, language = 'en', signInExperi ); -}; +} export default SignInExperiencePreview; diff --git a/packages/console/src/components/Spacer/index.tsx b/packages/console/src/components/Spacer/index.tsx index 207c79b7f..448c78908 100644 --- a/packages/console/src/components/Spacer/index.tsx +++ b/packages/console/src/components/Spacer/index.tsx @@ -1,7 +1,7 @@ import * as styles from './index.module.scss'; -const Spacer = () => { +function Spacer() { return
; -}; +} export default Spacer; diff --git a/packages/console/src/components/Spinner/index.tsx b/packages/console/src/components/Spinner/index.tsx index 5cab41b76..c22cb6112 100644 --- a/packages/console/src/components/Spinner/index.tsx +++ b/packages/console/src/components/Spinner/index.tsx @@ -6,133 +6,137 @@ type Props = { className?: string; }; -const Ring = ({ className }: Props) => ( - - - -); +function Ring({ className }: Props) { + return ( + + + + ); +} -const Daisy = ({ className }: Props) => ( - - - - - - - - - - - - - - -); +function Daisy({ className }: Props) { + return ( + + + + + + + + + + + + + + + ); +} export { Ring, Daisy }; diff --git a/packages/console/src/components/Status/index.tsx b/packages/console/src/components/Status/index.tsx index e1e84e03a..1dae2a3d1 100644 --- a/packages/console/src/components/Status/index.tsx +++ b/packages/console/src/components/Status/index.tsx @@ -9,11 +9,13 @@ type Props = { variant?: 'plain' | 'outlined'; }; -const Status = ({ status, children, variant = 'plain' }: Props) => ( -
-
-
{children}
-
-); +function Status({ status, children, variant = 'plain' }: Props) { + return ( +
+
+
{children}
+
+ ); +} export default Status; diff --git a/packages/console/src/components/SubmitFormChangesActionBar/index.tsx b/packages/console/src/components/SubmitFormChangesActionBar/index.tsx index 64265813d..a18a8235e 100644 --- a/packages/console/src/components/SubmitFormChangesActionBar/index.tsx +++ b/packages/console/src/components/SubmitFormChangesActionBar/index.tsx @@ -10,26 +10,28 @@ type Props = { onDiscard: () => void; }; -const SubmitFormChangesActionBar = ({ isOpen, isSubmitting, onSubmit, onDiscard }: Props) => ( -
-
-
-
-); + ); +} export default SubmitFormChangesActionBar; diff --git a/packages/console/src/components/Switch/index.tsx b/packages/console/src/components/Switch/index.tsx index 32273643b..cf398a405 100644 --- a/packages/console/src/components/Switch/index.tsx +++ b/packages/console/src/components/Switch/index.tsx @@ -7,7 +7,7 @@ type Props = HTMLProps & { label?: ReactNode; }; -const Switch = ({ label, ...rest }: Props, ref?: Ref) => { +function Switch({ label, ...rest }: Props, ref?: Ref) { return (
{label}
@@ -17,6 +17,6 @@ const Switch = ({ label, ...rest }: Props, ref?: Ref) => {
); -}; +} export default forwardRef(Switch); diff --git a/packages/console/src/components/TabNav/TabNavItem.tsx b/packages/console/src/components/TabNav/TabNavItem.tsx index dc35adeb9..80324463f 100644 --- a/packages/console/src/components/TabNav/TabNavItem.tsx +++ b/packages/console/src/components/TabNav/TabNavItem.tsx @@ -24,7 +24,7 @@ type Props = | (BaseProps & LinkStyleProps & Partial>) | (BaseProps & TabStyleProps & Partial>); -const TabNavItem = ({ children, href, isActive, errorCount = 0, onClick }: Props) => { +function TabNavItem({ children, href, isActive, errorCount = 0, onClick }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const location = useLocation(); const selected = href ? location.pathname === href : isActive; @@ -46,6 +46,6 @@ const TabNavItem = ({ children, href, isActive, errorCount = 0, onClick }: Props )}
); -}; +} export default TabNavItem; diff --git a/packages/console/src/components/TabNav/index.tsx b/packages/console/src/components/TabNav/index.tsx index 84bf301b2..fb5ff046c 100644 --- a/packages/console/src/components/TabNav/index.tsx +++ b/packages/console/src/components/TabNav/index.tsx @@ -9,8 +9,8 @@ type Props = { children: React.ReactNode; }; -const TabNav = ({ className, children }: Props) => ( - -); +function TabNav({ className, children }: Props) { + return ; +} export default TabNav; diff --git a/packages/console/src/components/Table/TableEmptyWrapper.tsx b/packages/console/src/components/Table/TableEmptyWrapper.tsx index fda0def17..1a1e160dd 100644 --- a/packages/console/src/components/Table/TableEmptyWrapper.tsx +++ b/packages/console/src/components/Table/TableEmptyWrapper.tsx @@ -7,12 +7,14 @@ type Props = { children: ReactNode; }; -const TableEmptyWrapper = ({ columns, children }: Props) => ( - - -
{children}
- - -); +function TableEmptyWrapper({ columns, children }: Props) { + return ( + + +
{children}
+ + + ); +} export default TableEmptyWrapper; diff --git a/packages/console/src/components/Table/TableError.tsx b/packages/console/src/components/Table/TableError.tsx index 070ba1c83..f2d68672a 100644 --- a/packages/console/src/components/Table/TableError.tsx +++ b/packages/console/src/components/Table/TableError.tsx @@ -15,7 +15,7 @@ type Props = { columns: number; }; -const TableError = ({ title, content, onRetry, columns }: Props) => { +function TableError({ title, content, onRetry, columns }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const theme = useTheme(); @@ -31,6 +31,6 @@ const TableError = ({ title, content, onRetry, columns }: Props) => { ); -}; +} export default TableError; diff --git a/packages/console/src/components/Table/TableLoading.tsx b/packages/console/src/components/Table/TableLoading.tsx index e386a04ba..218839cad 100644 --- a/packages/console/src/components/Table/TableLoading.tsx +++ b/packages/console/src/components/Table/TableLoading.tsx @@ -4,7 +4,7 @@ type Props = { columnSpans: number[]; }; -const TableLoading = ({ columnSpans }: Props) => { +function TableLoading({ columnSpans }: Props) { return ( <> {Array.from({ length: 8 }).map((_, rowIndex) => ( @@ -29,6 +29,6 @@ const TableLoading = ({ columnSpans }: Props) => { ))} ); -}; +} export default TableLoading; diff --git a/packages/console/src/components/Table/TablePlaceholder.tsx b/packages/console/src/components/Table/TablePlaceholder.tsx index 7cc9152ea..47a8ea8a5 100644 --- a/packages/console/src/components/Table/TablePlaceholder.tsx +++ b/packages/console/src/components/Table/TablePlaceholder.tsx @@ -17,14 +17,7 @@ type Props = { action: ReactNode; }; -const TablePlaceholder = ({ - image, - imageDark, - title, - description, - learnMoreLink, - action, -}: Props) => { +function TablePlaceholder({ image, imageDark, title, description, learnMoreLink, action }: Props) { const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const theme = useTheme(); @@ -46,6 +39,6 @@ const TablePlaceholder = ({ {action &&
{action}
}
); -}; +} export default TablePlaceholder; diff --git a/packages/console/src/components/Table/index.tsx b/packages/console/src/components/Table/index.tsx index 80601091e..51d6bae8e 100644 --- a/packages/console/src/components/Table/index.tsx +++ b/packages/console/src/components/Table/index.tsx @@ -36,7 +36,7 @@ type Props< onRetry?: () => void; }; -const Table = < +function Table< TFieldValues extends FieldValues = FieldValues, TName extends FieldPath = FieldPath >({ @@ -56,7 +56,7 @@ const Table = < errorMessage, hasBorder, onRetry, -}: Props) => { +}: Props) { const totalColspan = columns.reduce((result, { colSpan }) => { return result + (colSpan ?? 1); }, 0); @@ -152,6 +152,6 @@ const Table = < {pagination && } ); -}; +} export default Table; diff --git a/packages/console/src/components/TextInput/index.tsx b/packages/console/src/components/TextInput/index.tsx index 12c1a20dd..a83ab7ec4 100644 --- a/packages/console/src/components/TextInput/index.tsx +++ b/packages/console/src/components/TextInput/index.tsx @@ -11,7 +11,7 @@ type Props = Omit, 'size'> & { suffix?: ReactElement; }; -const TextInput = ( +function TextInput( { errorMessage, hasError = Boolean(errorMessage), @@ -23,7 +23,7 @@ const TextInput = ( ...rest }: Props, reference: ForwardedRef -) => { +) { return (
{errorMessage}
}
); -}; +} export default forwardRef(TextInput); diff --git a/packages/console/src/components/TextLink/index.tsx b/packages/console/src/components/TextLink/index.tsx index a9d889b10..652d047b1 100644 --- a/packages/console/src/components/TextLink/index.tsx +++ b/packages/console/src/components/TextLink/index.tsx @@ -11,7 +11,7 @@ type Props = AnchorHTMLAttributes & isTrailingIcon?: boolean; }; -const TextLink = ({ to, children, icon, isTrailingIcon = false, className, ...rest }: Props) => { +function TextLink({ to, children, icon, isTrailingIcon = false, className, ...rest }: Props) { if (to) { return ( {children} ); -}; +} export default TextLink; diff --git a/packages/console/src/components/Textarea/index.tsx b/packages/console/src/components/Textarea/index.tsx index 6936a600f..f4365552d 100644 --- a/packages/console/src/components/Textarea/index.tsx +++ b/packages/console/src/components/Textarea/index.tsx @@ -9,15 +9,15 @@ type Props = HTMLProps & { hasError?: boolean; }; -const Textarea = ( +function Textarea( { className, hasError, ...rest }: Props, reference: ForwardedRef -) => { +) { return (