New components build.
Some checks are pending
Node.js CI / build (postgresql, 18.18) (push) Waiting to run

This commit is contained in:
Mike Cao 2025-09-08 22:52:43 -07:00
parent 303947fe9b
commit aa7d3cd1aa
6 changed files with 29 additions and 37 deletions

View file

@ -16,7 +16,7 @@ import { setClientAuthToken } from '@/lib/client';
import { Logo } from '@/components/icons';
export function LoginForm() {
const { formatMessage, labels, getMessage } = useMessages();
const { formatMessage, labels } = useMessages();
const router = useRouter();
const { mutate, error, isPending } = useUpdateQuery('/auth/login');
@ -37,7 +37,7 @@ export function LoginForm() {
<Logo />
</Icon>
<Heading>umami</Heading>
<Form onSubmit={handleSubmit} error={getMessage(error)}>
<Form onSubmit={handleSubmit} error={error}>
<FormField
label={formatMessage(labels.username)}
data-test="input-username"

View file

@ -50,7 +50,6 @@ export function Panel({
borderRadius="3"
backgroundColor
position="relative"
overflowX="hidden"
gap
{...props}
style={{ ...style, ...(isFullscreen ? fullscreenStyles : {}) }}

View file

@ -1,6 +1,15 @@
import md5 from 'md5';
import { THEME_COLORS } from '@/lib/constants';
import { colord } from 'colord';
import { THEME_COLORS } from '@/lib/constants';
export function hex6(str: string) {
let h = 0x811c9dc5; // FNV-1a 32-bit offset
for (let i = 0; i < str.length; i++) {
h ^= str.charCodeAt(i);
h = (h >>> 0) * 0x01000193; // FNV prime
}
// use lower 24 bits; pad to 6 hex chars
return ((h >>> 0) & 0xffffff).toString(16).padStart(6, '0');
}
export const pick = (num: number, arr: any[]) => {
return arr[num % arr.length];
@ -40,7 +49,7 @@ export function getPastel(color: string, factor: number = 0.5, prefix = '') {
}
export function getColor(seed: string, min: number = 0, max: number = 255) {
const color = md5(seed).substring(0, 6);
const color = hex6(seed);
const { r, g, b } = hex2RGB(color, min, max);
return rgb2Hex(r, g, b);