2024-08-02 18:19:39 +08:00

25 lines
916 B
JavaScript

import { computed, inject, watchEffect } from 'vue';
import { configProviderInjectionKey } from "../config-provider/src/context.mjs";
import { warn } from "../_utils/index.mjs";
export default function useHljs(props, shouldHighlightRef) {
const NConfigProvider = inject(configProviderInjectionKey, null);
if (process.env.NODE_ENV !== 'production') {
const warnHljs = () => {
if (!props.hljs && !(NConfigProvider === null || NConfigProvider === void 0 ? void 0 : NConfigProvider.mergedHljsRef.value)) {
warn('code', 'hljs is not set.');
}
};
if (!shouldHighlightRef) {
warnHljs();
} else {
watchEffect(() => {
if (shouldHighlightRef.value) {
warnHljs();
}
});
}
}
return computed(() => {
return props.hljs || (NConfigProvider === null || NConfigProvider === void 0 ? void 0 : NConfigProvider.mergedHljsRef.value);
});
}