Skip to content
Snippets Groups Projects
Commit e25dea27 authored by syuilo's avatar syuilo
Browse files

Better theme validation

parent dac96258
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,9 @@ function genValue(c: tinycolor.Instance): string {
}
export function validateTheme(theme: Record<string, any>): boolean {
if (theme.id == null) return false;
if (theme.name == null) return false;
if (theme.id == null || typeof theme.id !== 'string') return false;
if (theme.name == null || typeof theme.name !== 'string') return false;
if (theme.base == null || !['light', 'dark'].includes(theme.base)) return false;
if (theme.props == null || typeof theme.props !== 'object') return false;
return true;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment