mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
Add validation of user input
This commit is contained in:
parent
57db3f2813
commit
f9aee6fab8
@ -1,7 +1,23 @@
|
||||
import { rgba, lighten, darken } from 'polished';
|
||||
|
||||
import { logger } from '@storybook/client-logger';
|
||||
|
||||
export const mkColor = (color: string) => ({ color });
|
||||
|
||||
// Check if it is a string. This is for the sake of warning users
|
||||
// and the successive guarding logics that use String methods.
|
||||
const isColorString = (color: string) => {
|
||||
if (typeof color !== 'string') {
|
||||
logger.warn(
|
||||
`Color passed to theme object should be a string. Instead` +
|
||||
`${color}(${typeof color}) was passed.`
|
||||
);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
// Passing arguments that can't be converted to RGB such as linear-gradient
|
||||
// to library polished's functions such as lighten or darken throws the error
|
||||
// that crashes the entire storybook. It needs to be guarded when arguments
|
||||
@ -23,6 +39,10 @@ const applyPolished = (type: string, color: string) => {
|
||||
};
|
||||
|
||||
const colorFactory = (type: string) => (color: string) => {
|
||||
if (!isColorString(color)) {
|
||||
return color;
|
||||
}
|
||||
|
||||
if (isColorVarChangeable(color)) {
|
||||
return color;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user