UNPKG

eslint-plugin-flowtype

Version:
176 lines (143 loc) 5.41 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _lodash = _interopRequireDefault(require("lodash")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } const schema = [{ additionalProperties: false, properties: { useImplicitExactTypes: { type: 'boolean' } }, type: 'object' }]; const reComponentName = /^(Pure)?Component$/u; const reReadOnly = /^\$(ReadOnly|FlowFixMe)$/u; const isReactComponent = node => { if (!node.superClass) { return false; } return (// class Foo extends Component { } // class Foo extends PureComponent { } node.superClass.type === 'Identifier' && reComponentName.test(node.superClass.name) || // class Foo extends React.Component { } // class Foo extends React.PureComponent { } node.superClass.type === 'MemberExpression' && node.superClass.object.name === 'React' && reComponentName.test(node.superClass.property.name) ); }; // type Props = {| +foo: string |} const isReadOnlyObjectType = (node, { useImplicitExactTypes }) => { if (!node || node.type !== 'ObjectTypeAnnotation') { return false; } if (node.properties.length === 0) { // we consider `{}` to be ReadOnly since it's exact AND has no props (when `implicitExactTypes=true`) // we consider `{||}` to be ReadOnly since it's exact AND has no props (when `implicitExactTypes=false`) if (useImplicitExactTypes === true && node.exact === false) { return true; } if (node.exact === true) { return true; } } // { +foo: ..., +bar: ..., ... } return node.properties.length > 0 && node.properties.every(prop => { return prop.variance && prop.variance.kind === 'plus'; }); }; // type Props = {| +foo: string |} | {| +bar: number |} const isReadOnlyObjectUnionType = (node, options) => { if (!node || node.type !== 'UnionTypeAnnotation') { return false; } return node.types.every(type => { return isReadOnlyObjectType(type, options); }); }; const isReadOnlyType = (node, options) => { return node.right.id && reReadOnly.test(node.right.id.name) || isReadOnlyObjectType(node.right, options) || isReadOnlyObjectUnionType(node.right, options); }; const create = context => { const useImplicitExactTypes = _lodash.default.get(context, ['options', 0, 'useImplicitExactTypes'], false); const options = { useImplicitExactTypes }; const readOnlyTypes = []; const foundTypes = []; const reportedFunctionalComponents = []; const isReadOnlyClassProp = node => { const id = node.superTypeParameters && node.superTypeParameters.params[0].id; return id && !reReadOnly.test(id.name) && !readOnlyTypes.includes(id.name) && foundTypes.includes(id.name); }; for (const node of context.getSourceCode().ast.body) { let idName; let typeNode; // type Props = $ReadOnly<{}> if (node.type === 'TypeAlias') { idName = node.id.name; typeNode = node; // export type Props = $ReadOnly<{}> } else if (node.type === 'ExportNamedDeclaration' && node.declaration && node.declaration.type === 'TypeAlias') { idName = node.declaration.id.name; typeNode = node.declaration; } if (idName) { foundTypes.push(idName); if (isReadOnlyType(typeNode, options)) { readOnlyTypes.push(idName); } } } return { // class components ClassDeclaration(node) { if (isReactComponent(node) && isReadOnlyClassProp(node)) { context.report({ message: node.superTypeParameters.params[0].id.name + ' must be $ReadOnly', node }); } else if (node.superTypeParameters && node.superTypeParameters.params[0].type === 'ObjectTypeAnnotation' && !isReadOnlyObjectType(node.superTypeParameters.params[0], options)) { context.report({ message: node.id.name + ' class props must be $ReadOnly', node }); } }, // functional components JSXElement(node) { let currentNode = node; let identifier; let typeAnnotation; while (currentNode && currentNode.type !== 'FunctionDeclaration') { currentNode = currentNode.parent; } // functional components can only have 1 param if (!currentNode || currentNode.params.length !== 1) { return; } if (currentNode.params[0].type === 'Identifier' && (typeAnnotation = currentNode.params[0].typeAnnotation)) { if ((identifier = typeAnnotation.typeAnnotation.id) && foundTypes.includes(identifier.name) && !readOnlyTypes.includes(identifier.name) && !reReadOnly.test(identifier.name)) { if (reportedFunctionalComponents.includes(identifier)) { return; } context.report({ message: identifier.name + ' must be $ReadOnly', node: identifier }); reportedFunctionalComponents.push(identifier); return; } if (typeAnnotation.typeAnnotation.type === 'ObjectTypeAnnotation' && !isReadOnlyObjectType(typeAnnotation.typeAnnotation, options)) { context.report({ message: currentNode.id.name + ' component props must be $ReadOnly', node }); } } } }; }; var _default = { create, schema }; exports.default = _default; module.exports = exports.default;