refactor: remove isLocalhost check from MainLayout, update UsagePage styles for improved layout and spacing, and adjust layout.scss for better sidebar toggle appearance

This commit is contained in:
Supra4E8C
2025-12-10 23:49:01 +08:00
parent 841dfa8a61
commit defa633f92
3 changed files with 43 additions and 28 deletions

View File

@@ -1,11 +1,10 @@
import { ReactNode, SVGProps, useCallback, useEffect, useLayoutEffect, useMemo, useRef, useState } from 'react';
import { ReactNode, SVGProps, useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
import { NavLink, Outlet } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { Button } from '@/components/ui/Button';
import { INLINE_LOGO_JPEG } from '@/assets/logoInline';
import { useAuthStore, useConfigStore, useLanguageStore, useNotificationStore, useThemeStore } from '@/stores';
import { versionApi } from '@/services/api';
import { isLocalhost } from '@/utils/connection';
const iconProps: SVGProps<SVGSVGElement> = {
width: 18,
@@ -147,8 +146,6 @@ export function MainLayout() {
const brandCollapseTimer = useRef<ReturnType<typeof setTimeout> | null>(null);
const headerRef = useRef<HTMLElement | null>(null);
const isLocal = useMemo(() => isLocalhost(window.location.hostname), []);
const fullBrandName = 'CLI Proxy API Management Center';
const abbrBrandName = t('title.abbr');
@@ -225,7 +222,7 @@ export function MainLayout() {
{ path: '/api-keys', label: t('nav.api_keys'), icon: sidebarIcons.apiKeys },
{ path: '/ai-providers', label: t('nav.ai_providers'), icon: sidebarIcons.aiProviders },
{ path: '/auth-files', label: t('nav.auth_files'), icon: sidebarIcons.authFiles },
...(isLocal ? [{ path: '/oauth', label: t('nav.oauth', { defaultValue: 'OAuth' }), icon: sidebarIcons.oauth }] : []),
{ path: '/oauth', label: t('nav.oauth', { defaultValue: 'OAuth' }), icon: sidebarIcons.oauth },
{ path: '/usage', label: t('nav.usage_stats'), icon: sidebarIcons.usage },
{ path: '/config', label: t('nav.config_management'), icon: sidebarIcons.config },
...(config?.loggingToFile ? [{ path: '/logs', label: t('nav.logs'), icon: sidebarIcons.logs }] : []),

View File

@@ -53,11 +53,11 @@
padding: 16px;
}
// Stats Grid - 五个卡片并排显示 (80%比例)
// Stats Grid - 五个卡片并排显示 (88%比例放大10%)
.statsGrid {
display: grid;
gap: 6px;
grid-template-columns: repeat(5, 1fr);
gap: 8px;
grid-template-columns: repeat(5, minmax(0, 1fr));
@include tablet {
grid-template-columns: repeat(3, 1fr);
@@ -69,14 +69,14 @@
}
.statCard {
padding: 12px;
padding: 13px;
background-color: var(--bg-primary);
border-radius: $radius-md;
border: 1px solid var(--border-color);
display: flex;
flex-direction: column;
gap: 4px;
min-height: 130px;
gap: 5px;
min-height: 143px;
box-shadow: $shadow-sm;
transition: transform $transition-fast, box-shadow $transition-fast, border-color $transition-fast;
overflow: hidden;
@@ -92,7 +92,7 @@
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 4px;
gap: 5px;
}
.statLabelGroup {
@@ -102,13 +102,13 @@
}
.statIconBadge {
width: 26px;
height: 26px;
width: 29px;
height: 29px;
border-radius: $radius-sm;
display: grid;
place-items: center;
color: #fff;
font-size: 12px;
font-size: 13px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
flex-shrink: 0;
}
@@ -124,7 +124,7 @@
}
.statLabel {
font-size: 10px;
font-size: 11px;
color: var(--text-secondary);
font-weight: 600;
letter-spacing: 0.01em;
@@ -132,7 +132,7 @@
}
.statValue {
font-size: 18px;
font-size: 20px;
font-weight: 700;
color: var(--text-primary);
line-height: 1.2;
@@ -182,20 +182,20 @@
.statMetaRow {
display: flex;
flex-wrap: wrap;
gap: 3px;
font-size: 9px;
gap: 4px;
font-size: 10px;
color: var(--text-secondary);
}
.statMetaItem {
display: inline-flex;
align-items: center;
gap: 3px;
gap: 4px;
}
.statMetaDot {
width: 5px;
height: 5px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: var(--text-secondary);
}
@@ -208,8 +208,8 @@
margin-top: auto;
background: var(--bg-secondary, #f6f8fb);
border-radius: $radius-sm;
padding: 3px;
height: 40px;
padding: 4px;
height: 44px;
border: 1px solid var(--border-color);
}
@@ -409,20 +409,37 @@
color: var(--text-secondary);
font-weight: 500;
}
// 确保 Input 组件的 form-group 包装器不影响布局
:global(.form-group) {
margin: 0;
> label {
display: none; // 隐藏 Input 自带的 label使用外层的
}
}
:global(.input) {
height: 40px;
box-sizing: border-box;
}
}
.select {
padding: 6px 10px;
padding: 10px 12px;
border: 1px solid var(--border-color);
border-radius: $radius-sm;
border-radius: $radius-md;
background-color: var(--bg-primary);
color: var(--text-primary);
font-size: 11px;
font-size: 14px;
cursor: pointer;
height: 40px;
box-sizing: border-box;
&:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
}

View File

@@ -63,7 +63,7 @@
}
.sidebar-toggle-header {
padding: $spacing-xs $spacing-sm;
padding: 0;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: $radius-md;
@@ -78,6 +78,7 @@
width: 32px;
height: 32px;
flex-shrink: 0;
line-height: 1;
&:hover {
background: var(--bg-tertiary, var(--border-color));