mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-02-12 22:03:17 +08:00
- Changed default value for `getTrayOnClose` to true in `ConfigManager`. - Removed fullscreen toggle logic from `WindowService`. - Adjusted styles in `OpenAIAlert` for better spacing. - Reorganized imports in `Navbar` and updated component paths in `AssistantsTab` and `SettingsTab`. - Added new components `AssistantItem` and `OpenAISettingsGroup` for better modularity. - Enhanced `SettingGroup` styles for improved UI consistency. - Updated `QuickPhraseSettings` to utilize theme context. - Minor fixes and refactoring across various services and components.
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
import { isLinux, isMac, isWindows } from '@renderer/config/constant'
|
|
import { useFullscreen } from '@renderer/hooks/useFullscreen'
|
|
import useNavBackgroundColor from '@renderer/hooks/useNavBackgroundColor'
|
|
import type { FC, PropsWithChildren } from 'react'
|
|
import type { HTMLAttributes } from 'react'
|
|
import styled from 'styled-components'
|
|
|
|
type Props = PropsWithChildren & HTMLAttributes<HTMLDivElement>
|
|
|
|
export const Navbar: FC<Props> = ({ children, ...props }) => {
|
|
const backgroundColor = useNavBackgroundColor()
|
|
|
|
return (
|
|
<NavbarContainer {...props} style={{ backgroundColor }}>
|
|
{children}
|
|
</NavbarContainer>
|
|
)
|
|
}
|
|
|
|
export const NavbarLeft: FC<Props> = ({ children, ...props }) => {
|
|
return <NavbarLeftContainer {...props}>{children}</NavbarLeftContainer>
|
|
}
|
|
|
|
export const NavbarCenter: FC<Props> = ({ children, ...props }) => {
|
|
return <NavbarCenterContainer {...props}>{children}</NavbarCenterContainer>
|
|
}
|
|
|
|
export const NavbarRight: FC<Props> = ({ children, ...props }) => {
|
|
const isFullscreen = useFullscreen()
|
|
return (
|
|
<NavbarRightContainer {...props} $isFullscreen={isFullscreen}>
|
|
{children}
|
|
</NavbarRightContainer>
|
|
)
|
|
}
|
|
|
|
const NavbarContainer = styled.div`
|
|
min-width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
min-height: var(--navbar-height);
|
|
max-height: var(--navbar-height);
|
|
margin-left: ${isMac ? 'calc(var(--sidebar-width) * -1)' : 0};
|
|
padding-left: ${isMac ? 'var(--sidebar-width)' : 0};
|
|
-webkit-app-region: drag;
|
|
`
|
|
|
|
const NavbarLeftContainer = styled.div`
|
|
min-width: var(--assistants-width);
|
|
padding: 0 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
color: var(--color-text-1);
|
|
`
|
|
|
|
const NavbarCenterContainer = styled.div`
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 ${isMac ? '20px' : 0};
|
|
font-weight: bold;
|
|
color: var(--color-text-1);
|
|
`
|
|
|
|
const NavbarRightContainer = styled.div<{ $isFullscreen: boolean }>`
|
|
min-width: var(--topic-list-width);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 12px;
|
|
padding-right: ${({ $isFullscreen }) => ($isFullscreen ? '12px' : isWindows ? '140px' : isLinux ? '120px' : '12px')};
|
|
justify-content: flex-end;
|
|
`
|