1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/lib/CssUtils.ts

27 lines
778 B
TypeScript

import * as fs from 'fs-extra';
export const loadCustomCss = async (filePath: string) => {
let cssString = '';
if (await fs.pathExists(filePath)) {
try {
cssString = await fs.readFile(filePath, 'utf-8');
} catch (error) {
let msg = error.message ? error.message : '';
msg = `Could not load custom css from ${filePath}\n${msg}`;
error.message = msg;
throw error;
}
}
return cssString;
};
export const injectCustomStyles = async (elementId: string, cssFilePath: string) => {
const css = await loadCustomCss(cssFilePath);
const styleTag = document.createElement('style');
styleTag.setAttribute('id', elementId);
styleTag.setAttribute('type', 'text/css');
styleTag.appendChild(document.createTextNode(css));
document.head.appendChild(styleTag);
};