소스 검색

Avoids unnecessary callback on first load

main
Eric Amodio 2 년 전
부모
커밋
314662b29b
1개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제
  1. +7
    -6
      src/webviews/apps/shared/theme.ts

+ 7
- 6
src/webviews/apps/shared/theme.ts 파일 보기

@ -2,7 +2,7 @@
import { darken, lighten, opacity } from './colors';
export function initializeAndWatchThemeColors(callback?: () => void) {
const onColorThemeChanged = () => {
const onColorThemeChanged = (mutations?: MutationRecord[]) => {
const body = document.body;
const computedStyle = window.getComputedStyle(body);
@ -133,13 +133,14 @@ export function initializeAndWatchThemeColors(callback?: () => void) {
bodyStyle.setProperty('--color-alert-neutralBorder', 'var(--vscode-input-foreground)');
bodyStyle.setProperty('--color-alert-foreground', 'var(--vscode-input-foreground)');
callback?.();
if (mutations != null) {
callback?.();
}
};
const observer = new MutationObserver(onColorThemeChanged);
observer.observe(document.body, { attributes: true, attributeFilter: ['class'] });
onColorThemeChanged();
const observer = new MutationObserver(onColorThemeChanged);
observer.observe(document.body, { attributeFilter: ['class'] });
return observer;
}

불러오는 중...
취소
저장