mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
- add the integrations page sidebar with collapsible icon-only navigation and Figma-aligned marketplace card - move custom integration SVGs into the iconify collection and document the Tailwind i-custom workflow - preserve source SVG collection dimensions when flattening generated icon data so existing main nav icons keep their 20x20 viewBox - add an icon dimension guard for layout-sensitive generated icons - update model provider routing, i18n, and focused frontend tests
232 lines
8.8 KiB
TypeScript
232 lines
8.8 KiB
TypeScript
'use client'
|
|
import type { AccountSettingTab } from '@/app/components/header/account-setting/constants'
|
|
import { Button } from '@langgenius/dify-ui/button'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import { ScrollArea } from '@langgenius/dify-ui/scroll-area'
|
|
import { useCallback, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import BillingPage from '@/app/components/billing/billing-page'
|
|
import CustomPage from '@/app/components/custom/custom-page'
|
|
import {
|
|
ACCOUNT_SETTING_TAB,
|
|
|
|
} from '@/app/components/header/account-setting/constants'
|
|
import MenuDialog from '@/app/components/header/account-setting/menu-dialog'
|
|
import { useAppContext } from '@/context/app-context'
|
|
import { useProviderContext } from '@/context/provider-context'
|
|
import useBreakpoints, { MediaType } from '@/hooks/use-breakpoints'
|
|
import ApiBasedExtensionPage from './api-based-extension-page'
|
|
import DataSourcePage from './data-source-page-new'
|
|
import LanguagePage from './language-page'
|
|
import MembersPage from './members-page'
|
|
import ModelProviderPage from './model-provider-page'
|
|
import { useResetModelProviderListExpanded } from './model-provider-page/atoms'
|
|
|
|
const iconClassName = `
|
|
w-5 h-5 mr-2
|
|
`
|
|
|
|
type IAccountSettingProps = {
|
|
onCancelAction: () => void
|
|
activeTab: AccountSettingTab
|
|
onTabChangeAction: (tab: AccountSettingTab) => void
|
|
}
|
|
|
|
type GroupItem = {
|
|
key: AccountSettingTab
|
|
name: string
|
|
description?: string
|
|
icon: React.JSX.Element
|
|
activeIcon: React.JSX.Element
|
|
}
|
|
|
|
export default function AccountSetting({
|
|
onCancelAction,
|
|
activeTab,
|
|
onTabChangeAction,
|
|
}: IAccountSettingProps) {
|
|
const resetModelProviderListExpanded = useResetModelProviderListExpanded()
|
|
const activeMenu = activeTab
|
|
const { t } = useTranslation()
|
|
const { enableBilling, enableReplaceWebAppLogo } = useProviderContext()
|
|
const { isCurrentWorkspaceDatasetOperator } = useAppContext()
|
|
|
|
const settingItems: GroupItem[] = [
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.PROVIDER,
|
|
name: t('settings.provider', { ns: 'common' }),
|
|
icon: <span className={cn('i-ri-brain-2-line', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-brain-2-fill', iconClassName)} />,
|
|
},
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.MEMBERS,
|
|
name: t('settings.members', { ns: 'common' }),
|
|
icon: <span className={cn('i-ri-group-2-line', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-group-2-fill', iconClassName)} />,
|
|
},
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.BILLING,
|
|
name: t('settings.billing', { ns: 'common' }),
|
|
description: t('plansCommon.receiptInfo', { ns: 'billing' }),
|
|
icon: <span className={cn('i-ri-money-dollar-circle-line', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-money-dollar-circle-fill', iconClassName)} />,
|
|
},
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.DATA_SOURCE,
|
|
name: t('settings.dataSource', { ns: 'common' }),
|
|
icon: <span className={cn('i-ri-database-2-line', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-database-2-fill', iconClassName)} />,
|
|
},
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.API_BASED_EXTENSION,
|
|
name: t('settings.apiBasedExtension', { ns: 'common' }),
|
|
icon: <span className={cn('i-ri-puzzle-2-line', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-puzzle-2-fill', iconClassName)} />,
|
|
},
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.CUSTOM,
|
|
name: t('custom', { ns: 'custom' }),
|
|
icon: <span className={cn('i-ri-color-filter-line', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-color-filter-fill', iconClassName)} />,
|
|
},
|
|
{
|
|
key: ACCOUNT_SETTING_TAB.LANGUAGE,
|
|
name: t('settings.language', { ns: 'common' }),
|
|
icon: <span className={cn('i-ri-translate-2', iconClassName)} />,
|
|
activeIcon: <span className={cn('i-ri-translate-2', iconClassName)} />,
|
|
},
|
|
]
|
|
const activeItem = settingItems.find(item => item.key === activeMenu)
|
|
|
|
const visibleSettingItems: GroupItem[] = (() => {
|
|
if (isCurrentWorkspaceDatasetOperator)
|
|
return []
|
|
|
|
const visibleTabs: AccountSettingTab[] = []
|
|
|
|
if (enableBilling)
|
|
visibleTabs.push(ACCOUNT_SETTING_TAB.BILLING)
|
|
|
|
visibleTabs.push(ACCOUNT_SETTING_TAB.MEMBERS)
|
|
|
|
if (enableReplaceWebAppLogo || enableBilling)
|
|
visibleTabs.push(ACCOUNT_SETTING_TAB.CUSTOM)
|
|
|
|
return visibleTabs
|
|
.map(tab => settingItems.find(item => item.key === tab))
|
|
.filter((item): item is GroupItem => Boolean(item))
|
|
})()
|
|
|
|
const media = useBreakpoints()
|
|
const isMobile = media === MediaType.mobile
|
|
|
|
const menuItems = [
|
|
{
|
|
key: 'workspace-group',
|
|
name: t('settings.workplaceGroup', { ns: 'common' }),
|
|
items: visibleSettingItems,
|
|
},
|
|
]
|
|
|
|
const [searchValue, setSearchValue] = useState<string>('')
|
|
|
|
const handleTabChange = useCallback((tab: AccountSettingTab) => {
|
|
if (tab === ACCOUNT_SETTING_TAB.PROVIDER)
|
|
resetModelProviderListExpanded()
|
|
|
|
onTabChangeAction(tab)
|
|
}, [onTabChangeAction, resetModelProviderListExpanded])
|
|
|
|
const handleClose = useCallback(() => {
|
|
resetModelProviderListExpanded()
|
|
onCancelAction()
|
|
}, [onCancelAction, resetModelProviderListExpanded])
|
|
|
|
return (
|
|
<MenuDialog
|
|
show
|
|
onClose={handleClose}
|
|
>
|
|
<div className="mx-auto flex h-screen w-fit max-w-full">
|
|
<div className="flex w-[44px] flex-col border-r border-divider-burn pr-6 pl-4 sm:w-[260px]">
|
|
<div className="mt-6 mb-8 px-3 py-2 title-2xl-semi-bold whitespace-nowrap text-text-primary">{t('settings.workspaceSettings', { ns: 'common' })}</div>
|
|
<div className="w-full">
|
|
{
|
|
menuItems.map(menuItem => (
|
|
<div key={menuItem.key} className="mb-2">
|
|
<div>
|
|
{
|
|
menuItem.items.map(item => (
|
|
<button
|
|
type="button"
|
|
key={item.key}
|
|
className={cn(
|
|
'mb-0.5 flex h-[37px] w-full items-center rounded-lg p-1 pl-3 text-left text-sm',
|
|
activeMenu === item.key ? 'bg-state-base-active system-sm-semibold text-components-menu-item-text-active' : 'system-sm-medium text-components-menu-item-text',
|
|
)}
|
|
aria-label={item.name}
|
|
title={item.name}
|
|
onClick={() => {
|
|
handleTabChange(item.key)
|
|
}}
|
|
>
|
|
{activeMenu === item.key ? item.activeIcon : item.icon}
|
|
{!isMobile && <div className="truncate">{item.name}</div>}
|
|
</button>
|
|
))
|
|
}
|
|
</div>
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
</div>
|
|
<div className="relative flex min-h-0 w-[824px]">
|
|
<div className="fixed top-6 right-6 z-9999 flex flex-col items-center">
|
|
<Button
|
|
variant="tertiary"
|
|
size="large"
|
|
className="px-2"
|
|
aria-label={t('operation.close', { ns: 'common' })}
|
|
onClick={handleClose}
|
|
>
|
|
<span className="i-ri-close-line h-5 w-5" />
|
|
</Button>
|
|
<div className="mt-1 system-2xs-medium-uppercase text-text-tertiary">ESC</div>
|
|
</div>
|
|
<ScrollArea
|
|
className="h-full min-h-0 flex-1 bg-components-panel-bg"
|
|
slotClassNames={{
|
|
viewport: 'overscroll-contain',
|
|
content: 'min-h-full pb-4',
|
|
}}
|
|
>
|
|
<div className="sticky top-0 z-20 mx-8 mb-[18px] flex items-center bg-components-panel-bg pt-[27px] pb-2">
|
|
<div className="shrink-0 title-2xl-semi-bold text-text-primary">
|
|
{activeItem?.name}
|
|
{activeItem?.description && (
|
|
<div className="mt-1 system-sm-regular text-text-tertiary">{activeItem?.description}</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="px-4 pt-2 sm:px-8">
|
|
{activeMenu === ACCOUNT_SETTING_TAB.PROVIDER && (
|
|
<ModelProviderPage
|
|
searchText={searchValue}
|
|
onSearchTextChange={setSearchValue}
|
|
/>
|
|
)}
|
|
{activeMenu === ACCOUNT_SETTING_TAB.MEMBERS && <MembersPage />}
|
|
{activeMenu === ACCOUNT_SETTING_TAB.BILLING && <BillingPage />}
|
|
{activeMenu === ACCOUNT_SETTING_TAB.DATA_SOURCE && <DataSourcePage />}
|
|
{activeMenu === ACCOUNT_SETTING_TAB.API_BASED_EXTENSION && <ApiBasedExtensionPage />}
|
|
{activeMenu === ACCOUNT_SETTING_TAB.CUSTOM && <CustomPage />}
|
|
{activeMenu === ACCOUNT_SETTING_TAB.LANGUAGE && <LanguagePage />}
|
|
</div>
|
|
</ScrollArea>
|
|
</div>
|
|
</div>
|
|
</MenuDialog>
|
|
)
|
|
}
|