widen the logger name field in the per-process log level settings

This commit is contained in:
Josh Hawkins
2026-07-26 13:15:47 -05:00
parent 7e08f7b821
commit 3470aeb04f
2 changed files with 19 additions and 2 deletions
@@ -14,6 +14,7 @@ const logger: SectionConfigOverrides = {
additionalProperties: { additionalProperties: {
"ui:options": { "ui:options": {
enumI18nPrefix: "logger.logLevel", enumI18nPrefix: "logger.logLevel",
additionalPropertyKeySize: "lg",
additionalPropertyKeyLabel: additionalPropertyKeyLabel:
"configForm.additionalProperties.loggerNameLabel", "configForm.additionalProperties.loggerNameLabel",
additionalPropertyKeyPlaceholder: additionalPropertyKeyPlaceholder:
@@ -15,6 +15,14 @@ import { useTranslation } from "react-i18next";
import { LuTrash2 } from "react-icons/lu"; import { LuTrash2 } from "react-icons/lu";
import type { ConfigFormContext } from "@/types/configForm"; import type { ConfigFormContext } from "@/types/configForm";
const KEY_SIZE_CLASSES = {
sm: { key: "md:col-span-2", value: "md:col-span-9" },
md: { key: "md:col-span-4", value: "md:col-span-7" },
lg: { key: "md:col-span-7", value: "md:col-span-4" },
} as const;
type AdditionalPropertyKeySize = keyof typeof KEY_SIZE_CLASSES;
export function WrapIfAdditionalTemplate< export function WrapIfAdditionalTemplate<
T = unknown, T = unknown,
S extends StrictRJSFSchema = RJSFSchema, S extends StrictRJSFSchema = RJSFSchema,
@@ -58,6 +66,14 @@ export function WrapIfAdditionalTemplate<
: undefined; : undefined;
const preventKeyRename = uiOptions.preventKeyRename === true; const preventKeyRename = uiOptions.preventKeyRename === true;
const keySize =
typeof uiOptions.additionalPropertyKeySize === "string" &&
uiOptions.additionalPropertyKeySize in KEY_SIZE_CLASSES
? (uiOptions.additionalPropertyKeySize as AdditionalPropertyKeySize)
: "sm";
const keySpanClass = KEY_SIZE_CLASSES[keySize].key;
const valueSpanClass = KEY_SIZE_CLASSES[keySize].value;
const formContext = registry?.formContext as ConfigFormContext | undefined; const formContext = registry?.formContext as ConfigFormContext | undefined;
// optionally, lock the key once it's been saved // optionally, lock the key once it's been saved
@@ -126,7 +142,7 @@ export function WrapIfAdditionalTemplate<
style={style} style={style}
> >
{!keyIsReadonly && ( {!keyIsReadonly && (
<div className="col-span-12 space-y-2 md:col-span-2"> <div className={cn("col-span-12 space-y-2", keySpanClass)}>
{displayLabel && <Label htmlFor={keyId}>{keyLabel}</Label>} {displayLabel && <Label htmlFor={keyId}>{keyLabel}</Label>}
{keyLocked ? ( {keyLocked ? (
<div <div
@@ -158,7 +174,7 @@ export function WrapIfAdditionalTemplate<
<div <div
className={cn( className={cn(
"col-span-12 space-y-2", "col-span-12 space-y-2",
!keyIsReadonly && "md:col-span-9", !keyIsReadonly && valueSpanClass,
)} )}
> >
{!keyIsReadonly && displayLabel && ( {!keyIsReadonly && displayLabel && (