chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -101,7 +101,7 @@ export const useAudioRecordInteraction = ({
return;
}
const { clientX, clientY } = getClientPosition(eventType);
// 获取元素的边界信息
// Get the boundary information of the element
const rect = activeZoneElement.getBoundingClientRect();
const isOutRect =
clientX < rect.left ||
@@ -109,7 +109,7 @@ export const useAudioRecordInteraction = ({
clientY < rect.top ||
clientY > rect.bottom;
// 判断触摸点是否在元素范围内
// Determine whether the touch point is within the scope of the element
if (isOutRect && !isMoveLeave.current) {
isMoveLeave.current = true;
onMoveLeaveRef.current?.();
@@ -201,7 +201,7 @@ export const useAudioRecordInteraction = ({
});
useEffect(
() => () => {
// 避免异常情况下事件无法卸载
// Avoid events that cannot be uninstalled under abnormal circumstances
document.removeEventListener('mousemove', onPointerMove);
document.removeEventListener('touchmove', onPointerMove);
},

View File

@@ -33,7 +33,7 @@ export const useObserveCardContainer = ({
}) => {
const eventCenter = useUiKitEventCenter();
/** 30s 内没变化则自动清除 observer */
/** If there is no change within 30s, the observer will be automatically cleared. */
const debouncedDisconnect = useDebounceFn(
(getResizeObserver: () => ResizeObserver | null) => {
const resizeObserver = getResizeObserver();