project-nomad/admin/inertia/pages/home.tsx
Claude 56f49fe892 feat(i18n): Integrate language switcher and translate home/settings pages
- Add useTranslation hook to SettingsLayout
- Replace hardcoded menu items with translation keys
- Add LanguageSwitcher component to settings header
- Add i18n support to home page (Command Center)
- Translate Maps, Easy Setup, Install Apps, Docs, Settings menu items
- Update Alert components to use translation keys
- Add new translation keys for menu items and descriptions

Translation keys added:
- home.easySetupDesc, home.installAppsDesc, home.docsDesc, home.settingsDesc
- maps.viewOffline
- settings.contentExplorer, settings.contentManager, settings.mapsManager
- settings.checkUpdates, settings.supportProject, settings.serviceLogs

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-04 10:28:52 +08:00

202 lines
6.3 KiB
TypeScript

import {
IconBolt,
IconHelp,
IconMapRoute,
IconPlus,
IconSettings,
IconWifiOff,
} from '@tabler/icons-react'
import { Head, Link, router, usePage } from '@inertiajs/react'
import AppLayout from '~/layouts/AppLayout'
import { getServiceLink } from '~/lib/navigation'
import { ServiceSlim } from '../../types/services'
import DynamicIcon, { DynamicIconName } from '~/components/DynamicIcon'
import { useUpdateAvailable } from '~/hooks/useUpdateAvailable'
import { useSystemSetting } from '~/hooks/useSystemSetting'
import Alert from '~/components/Alert'
import { SERVICE_NAMES } from '../../constants/service_names'
import { useTranslation } from 'react-i18next'
// Maps is a Core Capability (display_order: 4)
const getMapsItem = (t: (key: string) => string) => ({
label: t('menu.maps'),
to: '/maps',
target: '',
description: t('maps.viewOffline'),
icon: <IconMapRoute size={48} />,
installed: true,
displayOrder: 4,
poweredBy: null,
})
// System items shown after all apps
const getSystemItems = (t: (key: string) => string) => [
{
label: t('menu.easySetup'),
to: '/easy-setup',
target: '',
description: t('home.easySetupDesc'),
icon: <IconBolt size={48} />,
installed: true,
displayOrder: 50,
poweredBy: null,
},
{
label: t('menu.installApps'),
to: '/settings/apps',
target: '',
description: t('home.installAppsDesc'),
icon: <IconPlus size={48} />,
installed: true,
displayOrder: 51,
poweredBy: null,
},
{
label: t('menu.docs'),
to: '/docs/home',
target: '',
description: t('home.docsDesc'),
icon: <IconHelp size={48} />,
installed: true,
displayOrder: 52,
poweredBy: null,
},
{
label: t('menu.settings'),
to: '/settings/system',
target: '',
description: t('home.settingsDesc'),
icon: <IconSettings size={48} />,
installed: true,
displayOrder: 53,
poweredBy: null,
},
]
interface DashboardItem {
label: string
to: string
target: string
description: string
icon: React.ReactNode
installed: boolean
displayOrder: number
poweredBy: string | null
}
export default function Home(props: {
system: {
services: ServiceSlim[]
}
}) {
const { t } = useTranslation()
const items: DashboardItem[] = []
const updateInfo = useUpdateAvailable()
const { aiAssistantName } = usePage<{ aiAssistantName: string }>().props
// Check if user has visited Easy Setup
const { data: easySetupVisited } = useSystemSetting({
key: 'ui.hasVisitedEasySetup',
})
const shouldHighlightEasySetup = easySetupVisited?.value
? String(easySetupVisited.value) !== 'true'
: false
// Add installed services (non-dependency services only)
props.system.services
.filter((service) => service.installed && service.ui_location)
.forEach((service) => {
items.push({
// Inject custom AI Assistant name if this is the chat service
label:
service.service_name === SERVICE_NAMES.OLLAMA && aiAssistantName
? aiAssistantName
: service.friendly_name || service.service_name,
to: service.ui_location ? getServiceLink(service.ui_location) : '#',
target: '_blank',
description:
service.description ||
`Access the ${service.friendly_name || service.service_name} application`,
icon: service.icon ? (
<DynamicIcon icon={service.icon as DynamicIconName} className="!size-12" />
) : (
<IconWifiOff size={48} />
),
installed: service.installed,
displayOrder: service.display_order ?? 100,
poweredBy: service.powered_by ?? null,
})
})
// Add Maps as a Core Capability
items.push(getMapsItem(t))
// Add system items
items.push(...getSystemItems(t))
// Sort all items by display order
items.sort((a, b) => a.displayOrder - b.displayOrder)
return (
<AppLayout>
<Head title={t('home.title')} />
{updateInfo?.updateAvailable && (
<div className="flex justify-center items-center p-4 w-full">
<Alert
title={t('home.updateAvailable')}
type="info-inverted"
variant="solid"
className="w-full"
buttonProps={{
variant: 'primary',
children: t('home.goToSettings'),
icon: 'IconSettings',
onClick: () => router.visit('/settings/update'),
}}
/>
</div>
)}
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4 p-4">
{items.map((item) => {
const isEasySetup = item.label === t('menu.easySetup')
const shouldHighlight = isEasySetup && shouldHighlightEasySetup
const tileContent = (
<div className="relative rounded border-desert-green border-2 bg-desert-green hover:bg-transparent hover:text-text-primary text-white transition-colors shadow-sm h-48 flex flex-col items-center justify-center cursor-pointer text-center px-4">
{shouldHighlight && (
<span className="absolute top-2 right-2 flex items-center justify-center">
<span
className="animate-ping absolute inline-flex w-16 h-6 rounded-full bg-desert-orange-light opacity-75"
style={{ animationDuration: '1.5s' }}
></span>
<span className="relative inline-flex items-center rounded-full px-2.5 py-1 bg-desert-orange-light text-xs font-semibold text-white shadow-sm">
{t('home.startHere')}
</span>
</span>
)}
<div className="flex items-center justify-center mb-2">{item.icon}</div>
<h3 className="font-bold text-2xl">{item.label}</h3>
{item.poweredBy && (
<p className="text-sm opacity-80">
{t('home.poweredBy')} {item.poweredBy}
</p>
)}
<p className="xl:text-lg mt-2">{item.description}</p>
</div>
)
return item.target === '_blank' ? (
<a key={item.label} href={item.to} target="_blank" rel="noopener noreferrer">
{tileContent}
</a>
) : (
<Link key={item.label} href={item.to}>
{tileContent}
</Link>
)
})}
</div>
</AppLayout>
)
}