feat(logging): report important keyboard events

This commit is contained in:
2026-07-01 18:45:03 +08:00
parent ae6578923b
commit b59da8f7e4
4 changed files with 49 additions and 11 deletions
+26 -2
View File
@@ -26,13 +26,31 @@ export function ChatInputBar({ disabled = false }: ChatInputBarProps) {
useKeyboardHeight({ useKeyboardHeight({
targetRef: textareaRef, targetRef: textareaRef,
active: isFocused, active: isFocused,
onKeyboardDismiss: () => setIsFocused(false), onKeyboardDismiss: () => {
log.important("info", "[chat-input-bar] keyboard dismissed", {
contentLength: input.length,
hasContent,
disabled,
wasFocused: isFocused,
});
setIsFocused(false);
},
}); });
const handleInputChange = (value: string) => { const handleInputChange = (value: string) => {
setInput(value); setInput(value);
}; };
const handleFocusChange = (focused: boolean) => {
log.important("info", "[chat-input-bar] focus change", {
focused,
contentLength: input.length,
hasContent,
disabled,
});
setIsFocused(focused);
};
const handleSend = () => { const handleSend = () => {
if (!hasContent) return; if (!hasContent) return;
log.debug("[chat-input-bar] handleSend", { log.debug("[chat-input-bar] handleSend", {
@@ -42,6 +60,12 @@ export function ChatInputBar({ disabled = false }: ChatInputBarProps) {
disabled, disabled,
isFocused, isFocused,
}); });
log.important("info", "[chat-input-bar] send", {
contentLength: input.length,
hasContent,
disabled,
isFocused,
});
dispatch({ type: "ChatSendMessage", content: input }); dispatch({ type: "ChatSendMessage", content: input });
setInput(""); setInput("");
textareaRef.current?.focus(); textareaRef.current?.focus();
@@ -55,7 +79,7 @@ export function ChatInputBar({ disabled = false }: ChatInputBarProps) {
value={input} value={input}
onChange={handleInputChange} onChange={handleInputChange}
onSubmit={handleSend} onSubmit={handleSend}
onFocusChange={setIsFocused} onFocusChange={handleFocusChange}
disabled={disabled} disabled={disabled}
/> />
<ChatSendButton <ChatSendButton
+9 -5
View File
@@ -66,10 +66,14 @@ export function useKeyboardHeight({
const environment = getKeyboardAdaptEnvironment(); const environment = getKeyboardAdaptEnvironment();
if (!shouldEnableKeyboardAdaptation(environment)) { if (!shouldEnableKeyboardAdaptation(environment)) {
resetInputLiftVar(); resetInputLiftVar();
log.debug("[keyboard] disabled", { const payload = {
reason: "not-android-facebook-fallback-device", reason: "not-android-facebook-fallback-device",
environment, environment,
}); };
log.debug("[keyboard] disabled", payload);
if (environment.isAndroid && environment.isFacebookInAppBrowser) {
log.important("info", "[keyboard] disabled", payload);
}
return; return;
} }
@@ -81,7 +85,7 @@ export function useKeyboardHeight({
let lastInputLift = -1; let lastInputLift = -1;
const focusedAt = active ? performance.now() : 0; const focusedAt = active ? performance.now() : 0;
log.debug("[keyboard] environment", environment); log.important("info", "[keyboard] environment", environment);
const clearTimers = () => { const clearTimers = () => {
timeoutIds.forEach((id) => window.clearTimeout(id)); timeoutIds.forEach((id) => window.clearTimeout(id));
@@ -98,7 +102,7 @@ export function useKeyboardHeight({
lastInputLift = nextLift; lastInputLift = nextLift;
setInputLiftVar(nextLift); setInputLiftVar(nextLift);
log.debug("[keyboard] apply", { log.important("info", "[keyboard] apply", {
reason, reason,
inputLift: nextLift, inputLift: nextLift,
fallback: nextLift === FALLBACK_INPUT_LIFT_PX, fallback: nextLift === FALLBACK_INPUT_LIFT_PX,
@@ -113,7 +117,7 @@ export function useKeyboardHeight({
applyLift(0, reason); applyLift(0, reason);
blurKeyboardTarget(targetRef?.current); blurKeyboardTarget(targetRef?.current);
onKeyboardDismissRef.current?.(); onKeyboardDismissRef.current?.();
log.debug("[keyboard] released", { log.important("info", "[keyboard] released", {
reason, reason,
snapshot: formatSnapshot(readKeyboardSnapshot()), snapshot: formatSnapshot(readKeyboardSnapshot()),
}); });
+1 -1
View File
@@ -1,7 +1,7 @@
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import type { CaptureContext, SeverityLevel } from "@sentry/nextjs"; import type { CaptureContext, SeverityLevel } from "@sentry/nextjs";
export type RemoteLogLevel = "warn" | "error" | "fatal"; export type RemoteLogLevel = "debug" | "info" | "warn" | "error" | "fatal";
export interface SentryLogPayload { export interface SentryLogPayload {
level: RemoteLogLevel; level: RemoteLogLevel;
+13 -3
View File
@@ -79,6 +79,11 @@ export class Logger {
this.write("fatal", args); this.write("fatal", args);
} }
important(level: RemoteLogLevel, ...args: LogArgs): void {
Logger.reportProductionLog(level, this.component, args, true);
this.writeLocal(level, args);
}
/** /**
* 把日志中的任意数据转成人眼友好的多行文本。 * 把日志中的任意数据转成人眼友好的多行文本。
* - object / array: pretty JSON * - object / array: pretty JSON
@@ -146,8 +151,11 @@ export class Logger {
} }
private write(level: LogLevel, args: LogArgs): void { private write(level: LogLevel, args: LogArgs): void {
Logger.reportImportantProductionLog(level, this.component, args); Logger.reportProductionLog(level, this.component, args);
this.writeLocal(level, args);
}
private writeLocal(level: LogLevel, args: LogArgs): void {
if (Logger.shouldUseBrowserConsole()) { if (Logger.shouldUseBrowserConsole()) {
Logger.writeBrowserConsole(level, this.component, args); Logger.writeBrowserConsole(level, this.component, args);
return; return;
@@ -184,12 +192,14 @@ export class Logger {
); );
} }
private static reportImportantProductionLog( private static reportProductionLog(
level: LogLevel, level: LogLevel,
component: string, component: string,
args: LogArgs, args: LogArgs,
force = false,
): void { ): void {
if (!Logger.shouldReportToRemote(level)) return; if (!force && !Logger.shouldReportToRemote(level)) return;
if (force && !AppEnvUtil.isProduction()) return;
const { message, data } = Logger.toBrowserConsolePayload(args); const { message, data } = Logger.toBrowserConsolePayload(args);
reportSentryLog({ reportSentryLog({