mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 13:55:21 +02:00
fix(app/sidebar): Custom logo UI issue [r8s-435] (#939)
This commit is contained in:
parent
7bcb37c761
commit
6481483074
2 changed files with 148 additions and 1 deletions
143
app/react/sidebar/Header.test.tsx
Normal file
143
app/react/sidebar/Header.test.tsx
Normal file
|
@ -0,0 +1,143 @@
|
|||
import { render, screen } from '@testing-library/react';
|
||||
import userEvent from '@testing-library/user-event';
|
||||
|
||||
import { withTestRouter } from '@/react/test-utils/withRouter';
|
||||
|
||||
import { Context } from './useSidebarState';
|
||||
import { Header } from './Header';
|
||||
|
||||
vi.mock('@/react/portainer/feature-flags/feature-flags.service', () => ({
|
||||
isBE: false,
|
||||
}));
|
||||
|
||||
function renderComponent(
|
||||
props = {},
|
||||
sidebarState = { isOpen: true, toggle: vi.fn() }
|
||||
) {
|
||||
const Wrapped = withTestRouter(Header);
|
||||
|
||||
return render(
|
||||
<Context.Provider value={sidebarState}>
|
||||
<Wrapped {...props} />
|
||||
</Context.Provider>
|
||||
);
|
||||
}
|
||||
|
||||
describe('Header', () => {
|
||||
it('should render with default logo when no custom logo provided', () => {
|
||||
renderComponent();
|
||||
|
||||
const logo = screen.getByAltText('Logo');
|
||||
expect(logo).toBeInTheDocument();
|
||||
expect(logo).toHaveAttribute(
|
||||
'src',
|
||||
expect.stringContaining('portainer_logo-CE.svg')
|
||||
);
|
||||
});
|
||||
|
||||
it('should render with custom logo when provided', () => {
|
||||
const customLogo = 'https://example.com/custom-logo.png';
|
||||
renderComponent({ logo: customLogo });
|
||||
|
||||
const logo = screen.getByAltText('Logo');
|
||||
expect(logo).toBeInTheDocument();
|
||||
expect(logo).toHaveAttribute('src', customLogo);
|
||||
});
|
||||
|
||||
it('should show "Powered by" section when sidebar is open and custom logo is provided', () => {
|
||||
const customLogo = 'https://example.com/custom-logo.png';
|
||||
renderComponent({ logo: customLogo });
|
||||
|
||||
expect(screen.getByText('Powered by')).toBeInTheDocument();
|
||||
expect(screen.getByText('portainer community')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should not show "Powered by" section when no custom logo', () => {
|
||||
renderComponent();
|
||||
|
||||
expect(screen.queryByText('Powered by')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should not show "Powered by" section when sidebar is closed', () => {
|
||||
const customLogo = 'https://example.com/custom-logo.png';
|
||||
renderComponent({ logo: customLogo }, { isOpen: false, toggle: vi.fn() });
|
||||
|
||||
expect(screen.queryByText('Powered by')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should apply flex-wrap class to logo container', () => {
|
||||
renderComponent();
|
||||
|
||||
const logoContainer = screen.getByTestId(
|
||||
'portainerSidebar-homeImage'
|
||||
).parentElement;
|
||||
expect(logoContainer).toHaveClass('flex-wrap');
|
||||
});
|
||||
|
||||
it('should apply justify-center class when sidebar is closed', () => {
|
||||
renderComponent({}, { isOpen: false, toggle: vi.fn() });
|
||||
|
||||
const logoContainer = screen.getByTestId(
|
||||
'portainerSidebar-homeImage'
|
||||
).parentElement;
|
||||
expect(logoContainer).toHaveClass('justify-center');
|
||||
});
|
||||
|
||||
it('should not apply justify-center class when sidebar is open', () => {
|
||||
renderComponent();
|
||||
|
||||
const logoContainer = screen.getByTestId(
|
||||
'portainerSidebar-homeImage'
|
||||
).parentElement;
|
||||
expect(logoContainer).not.toHaveClass('justify-center');
|
||||
});
|
||||
|
||||
it('should toggle sidebar when toggle button is clicked', async () => {
|
||||
const user = userEvent.setup();
|
||||
const mockToggle = vi.fn();
|
||||
renderComponent({}, { isOpen: true, toggle: mockToggle });
|
||||
|
||||
const toggleButton = screen.getByRole('button', { name: 'Toggle Sidebar' });
|
||||
await user.click(toggleButton);
|
||||
|
||||
expect(mockToggle).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('should show chevron left icon when sidebar is open', () => {
|
||||
renderComponent();
|
||||
|
||||
const toggleButton = screen.getByRole('button', { name: 'Toggle Sidebar' });
|
||||
expect(toggleButton).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should show chevron right icon when sidebar is closed', () => {
|
||||
renderComponent({}, { isOpen: false, toggle: vi.fn() });
|
||||
|
||||
const toggleButton = screen.getByRole('button', { name: 'Toggle Sidebar' });
|
||||
expect(toggleButton).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should use small logo when sidebar is closed', () => {
|
||||
renderComponent({}, { isOpen: false, toggle: vi.fn() });
|
||||
|
||||
const logo = screen.getByAltText('Logo');
|
||||
expect(logo).toHaveAttribute(
|
||||
'src',
|
||||
expect.stringContaining('logomark-CE.svg')
|
||||
);
|
||||
});
|
||||
|
||||
it('should apply max-height class to logo when sidebar is closed', () => {
|
||||
renderComponent({}, { isOpen: false, toggle: vi.fn() });
|
||||
|
||||
const logo = screen.getByAltText('Logo');
|
||||
expect(logo).toHaveClass('!max-h-[27px]');
|
||||
});
|
||||
|
||||
it('should not apply max-height class to logo when sidebar is open', () => {
|
||||
renderComponent();
|
||||
|
||||
const logo = screen.getByAltText('Logo');
|
||||
expect(logo).not.toHaveClass('!max-h-[27px]');
|
||||
});
|
||||
});
|
|
@ -21,7 +21,11 @@ export function Header({ logo: customLogo }: Props) {
|
|||
|
||||
return (
|
||||
<div className="flex">
|
||||
<div className={clsx('pr-5 w-full flex', { 'justify-center': !isOpen })}>
|
||||
<div
|
||||
className={clsx('pr-5 w-full flex flex-wrap', {
|
||||
'justify-center': !isOpen,
|
||||
})}
|
||||
>
|
||||
<Link
|
||||
to="portainer.home"
|
||||
data-cy="portainerSidebar-homeImage"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue