mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
14 lines
423 B
TypeScript
14 lines
423 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
export default function(postMessage: Function, isReady: boolean, scripts: string[], cssFilePath: string) {
|
|
useEffect(() => {
|
|
if (!isReady) return;
|
|
postMessage('setScripts', { scripts: scripts });
|
|
}, [scripts, isReady]);
|
|
|
|
useEffect(() => {
|
|
if (!isReady || !cssFilePath) return;
|
|
postMessage('setScript', { script: cssFilePath, key: 'themeCss' });
|
|
}, [isReady, cssFilePath]);
|
|
}
|