Vulcan/packages/vulcan-lib/lib/modules/intl.js
2018-05-08 12:29:51 +09:00

40 lines
825 B
JavaScript

import SimpleSchema from 'simpl-schema';
import { Strings } from './strings';
/*
Look for type name in a few different places
Note: look into simplifying this
*/
export const isIntlField = fieldSchema => {
const typeProperty = fieldSchema.type;
let type;
if (Array.isArray(typeProperty)) {
type = typeProperty[0].type;
} else {
type = typeProperty.singleType ? typeProperty.singleType : typeProperty.definitions[0].type;
}
return type.name === 'IntlString';
}
/*
Generate custom IntlString SimpleSchema type
*/
export const getIntlString = () => {
const schema = {};
Object.keys(Strings).forEach(locale => {
schema[locale] = {
type: String,
optional: true,
};
});
const IntlString = new SimpleSchema(schema);
IntlString.name = 'IntlString';
return IntlString;
}