eslint-plugin-unicorn
Version:
More than 100 powerful ESLint rules
76 lines (66 loc) • 1.88 kB
JavaScript
import {isMethodCall} from './ast/index.js';
import {appendArgument} from './fix/index.js';
const ERROR = 'error';
const SUGGESTION = 'suggestion';
const messages = {
[ERROR]: 'Missing the `targetOrigin` argument.',
[SUGGESTION]: 'Use `{{code}}`.',
};
/** @param {import('eslint').Rule.RuleContext} context */
function create(context) {
const {sourceCode} = context;
return {
CallExpression(node) {
if (!isMethodCall(node, {
method: 'postMessage',
argumentsLength: 1,
optionalCall: false,
optionalMember: false,
})) {
return;
}
const [penultimateToken, lastToken] = sourceCode.getLastTokens(node, 2);
const replacements = [];
const target = node.callee.object;
if (target.type === 'Identifier') {
const {name} = target;
replacements.push(`${name}.location.origin`);
if (name !== 'self' && name !== 'window' && name !== 'globalThis') {
replacements.push('self.location.origin');
}
} else {
replacements.push('self.location.origin');
}
replacements.push('\'*\'');
return {
loc: {
start: sourceCode.getLoc(penultimateToken).end,
end: sourceCode.getLoc(lastToken).end,
},
messageId: ERROR,
suggest: replacements.map(code => ({
messageId: SUGGESTION,
data: {code},
/** @param {import('eslint').Rule.RuleFixer} fixer */
fix: fixer => appendArgument(fixer, node, code, sourceCode),
})),
};
},
};
}
/** @type {import('eslint').Rule.RuleModule} */
const config = {
create,
meta: {
type: 'problem',
docs: {
description: 'Enforce using the `targetOrigin` argument with `window.postMessage()`.',
// Turned off because we can't distinguish `window.postMessage` and `{Worker,MessagePort,Client,BroadcastChannel}#postMessage()`
// See #1396
recommended: false,
},
hasSuggestions: true,
messages,
},
};
export default config;