/** * @fileoverview Check if there are no asynchronous actions inside computed properties. * @author Armano */ 'use strict' const utils = require('../utils') const PROMISE_FUNCTIONS = [ 'then', 'catch', 'finally' ] const PROMISE_METHODS = [ 'all', 'race', 'reject', 'resolve' ] const TIMED_FUNCTIONS = [ 'setTimeout', 'setInterval', 'setImmediate', 'requestAnimationFrame' ] function isTimedFunction (node) { return (( node.type === 'CallExpression' && node.callee.type === 'Identifier' && TIMED_FUNCTIONS.indexOf(node.callee.name) !== -1 ) || ( node.type === 'CallExpression' && node.callee.type === 'MemberExpression' && node.callee.object.type === 'Identifier' && node.callee.object.name === 'window' && ( TIMED_FUNCTIONS.indexOf(node.callee.property.name) !== -1 ) )) && node.arguments.length } function isPromise (node) { if (node.type === 'CallExpression' && node.callee.type === 'MemberExpression') { return ( // hello.PROMISE_FUNCTION() node.callee.property.type === 'Identifier' && PROMISE_FUNCTIONS.indexOf(node.callee.property.name) !== -1 ) || ( // Promise.PROMISE_METHOD() node.callee.object.type === 'Identifier' && node.callee.object.name === 'Promise' && PROMISE_METHODS.indexOf(node.callee.property.name) !== -1 ) } return false } // ------------------------------------------------------------------------------ // Rule Definition // ------------------------------------------------------------------------------ module.exports = { meta: { type: 'problem', docs: { description: 'disallow asynchronous actions in computed properties', category: 'essential', url: 'https://eslint.vuejs.org/rules/no-async-in-computed-properties.html' }, fixable: null, schema: [] }, create (context) { const forbiddenNodes = [] let scopeStack = { upper: null, body: null } const expressionTypes = { promise: 'asynchronous action', await: 'await operator', async: 'async function declaration', new: 'Promise object', timed: 'timed function' } function onFunctionEnter (node) { if (node.async) { forbiddenNodes.push({ node: node, type: 'async', targetBody: node.body }) } scopeStack = { upper: scopeStack, body: node.body } } function onFunctionExit () { scopeStack = scopeStack.upper } return Object.assign({}, { ':function': onFunctionEnter, ':function:exit': onFunctionExit, NewExpression (node) { if (node.callee.name === 'Promise') { forbiddenNodes.push({ node: node, type: 'new', targetBody: scopeStack.body }) } }, CallExpression (node) { if (isPromise(node)) { forbiddenNodes.push({ node: node, type: 'promise', targetBody: scopeStack.body }) } else if (isTimedFunction(node)) { forbiddenNodes.push({ node: node, type: 'timed', targetBody: scopeStack.body }) } }, AwaitExpression (node) { forbiddenNodes.push({ node: node, type: 'await', targetBody: scopeStack.body }) } }, utils.executeOnVue(context, (obj) => { const computedProperties = utils.getComputedProperties(obj) computedProperties.forEach(cp => { forbiddenNodes.forEach(el => { if ( cp.value && el.node.loc.start.line >= cp.value.loc.start.line && el.node.loc.end.line <= cp.value.loc.end.line && el.targetBody === cp.value ) { context.report({ node: el.node, message: 'Unexpected {{expressionName}} in "{{propertyName}}" computed property.', data: { expressionName: expressionTypes[el.type], propertyName: cp.key } }) } }) }) }) ) } }