You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
// @flow
|
|
|
|
import ValidationError from '../error/validation_error.js';
|
|
import getType from '../util/get_type.js';
|
|
import validate from './validate.js';
|
|
|
|
import type {ValidationOptions} from './validate.js';
|
|
|
|
export default function validateLight(options: ValidationOptions): Array<ValidationError> {
|
|
const light = options.value;
|
|
const styleSpec = options.styleSpec;
|
|
const lightSpec = styleSpec.light;
|
|
const style = options.style;
|
|
|
|
let errors = [];
|
|
|
|
const rootType = getType(light);
|
|
if (light === undefined) {
|
|
return errors;
|
|
} else if (rootType !== 'object') {
|
|
errors = errors.concat([new ValidationError('light', light, `object expected, ${rootType} found`)]);
|
|
return errors;
|
|
}
|
|
|
|
for (const key in light) {
|
|
const transitionMatch = key.match(/^(.*)-transition$/);
|
|
|
|
if (transitionMatch && lightSpec[transitionMatch[1]] && lightSpec[transitionMatch[1]].transition) {
|
|
errors = errors.concat(validate({
|
|
key,
|
|
value: light[key],
|
|
valueSpec: styleSpec.transition,
|
|
style,
|
|
styleSpec
|
|
}));
|
|
} else if (lightSpec[key]) {
|
|
errors = errors.concat(validate({
|
|
key,
|
|
value: light[key],
|
|
valueSpec: lightSpec[key],
|
|
style,
|
|
styleSpec
|
|
}));
|
|
} else {
|
|
errors = errors.concat([new ValidationError(key, light[key], `unknown property "${key}"`)]);
|
|
}
|
|
}
|
|
|
|
return errors;
|
|
}
|