* refactor: improve user feedback for general board settings section * wip: add board settings for background and colors, move danger zone to own file, refactor code * feat: add shade selector * feat: add slider for opacity * fix: issue with invalid hex values for color preview * refactor: add shared mutation hook for saving partial board settings with invalidate query * fix: add cleanup for not applied changes to logo and page title * feat: add layout settings * feat: add empty custom css section to board settings * refactor: improve layout of board logo on mobile * feat: add theme provider for board colors * refactor: add auto contrast for better contrast of buttons with low primary shade * feat: add background for boards * feat: add opacity for boards * feat: add rename board * feat: add visibility and delete of board settings * fix: issue that wrong data is updated with update board method * refactor: improve danger zone button placement for mobile * fix: board not revalidated when already in boards layout * refactor: improve board color preview * refactor: change save button color to teal, add placeholders for general board settings * chore: update initial migration * refactor: remove unnecessary div * chore: address pull request feedback * fix: ci issues * fix: deepsource issues * chore: address pull request feedback * fix: formatting issue * chore: address pull request feedback
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import Image from "next/image";
|
|
|
|
import type { TitleOrder } from "@homarr/ui";
|
|
import { Group, Title } from "@homarr/ui";
|
|
|
|
interface LogoProps {
|
|
size: number;
|
|
src: string;
|
|
alt: string;
|
|
shouldUseNextImage?: boolean;
|
|
}
|
|
|
|
export const Logo = ({
|
|
size = 60,
|
|
shouldUseNextImage = false,
|
|
src,
|
|
alt,
|
|
}: LogoProps) =>
|
|
shouldUseNextImage ? (
|
|
<Image src={src} alt={alt} width={size} height={size} />
|
|
) : (
|
|
// we only want to use next/image for logos that we are sure will be preloaded and are allowed
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img src={src} alt={alt} width={size} height={size} />
|
|
);
|
|
|
|
const logoWithTitleSizes = {
|
|
lg: { logoSize: 48, titleOrder: 1 },
|
|
md: { logoSize: 32, titleOrder: 2 },
|
|
sm: { logoSize: 24, titleOrder: 3 },
|
|
} satisfies Record<string, { logoSize: number; titleOrder: TitleOrder }>;
|
|
|
|
export interface LogoWithTitleProps {
|
|
size: keyof typeof logoWithTitleSizes;
|
|
title: string;
|
|
image: Omit<LogoProps, "size">;
|
|
hideTitleOnMobile?: boolean;
|
|
}
|
|
|
|
export const LogoWithTitle = ({
|
|
size,
|
|
title,
|
|
image,
|
|
hideTitleOnMobile,
|
|
}: LogoWithTitleProps) => {
|
|
const { logoSize, titleOrder } = logoWithTitleSizes[size];
|
|
|
|
return (
|
|
<Group gap="xs" wrap="nowrap">
|
|
<Logo {...image} size={logoSize} />
|
|
<Title
|
|
order={titleOrder}
|
|
visibleFrom={hideTitleOnMobile ? "sm" : undefined}
|
|
textWrap="nowrap"
|
|
>
|
|
{title}
|
|
</Title>
|
|
</Group>
|
|
);
|
|
};
|