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.
65 lines
1.8 KiB
65 lines
1.8 KiB
/** |
|
* @author Yosuke Ota |
|
* See LICENSE file in root directory for full license. |
|
*/ |
|
'use strict' |
|
|
|
// ------------------------------------------------------------------------------ |
|
// Requirements |
|
// ------------------------------------------------------------------------------ |
|
|
|
const utils = require('../utils') |
|
|
|
// ------------------------------------------------------------------------------ |
|
// Rule Definition |
|
// ------------------------------------------------------------------------------ |
|
|
|
module.exports = { |
|
meta: { |
|
type: 'problem', |
|
docs: { |
|
description: |
|
'require control the display of the content inside `<transition>`', |
|
categories: ['vue3-essential'], |
|
url: 'https://eslint.vuejs.org/rules/require-toggle-inside-transition.html' |
|
}, |
|
fixable: null, |
|
schema: [], |
|
messages: { |
|
expected: |
|
'The element inside `<transition>` is expected to have a `v-if` or `v-show` directive.' |
|
} |
|
}, |
|
/** @param {RuleContext} context */ |
|
create(context) { |
|
/** |
|
* Check if the given element has display control. |
|
* @param {VElement} element The element node to check. |
|
*/ |
|
function verifyInsideElement(element) { |
|
if (utils.isCustomComponent(element)) { |
|
return |
|
} |
|
if ( |
|
!utils.hasDirective(element, 'if') && |
|
!utils.hasDirective(element, 'show') |
|
) { |
|
context.report({ |
|
node: element.startTag, |
|
loc: element.startTag.loc, |
|
messageId: 'expected' |
|
}) |
|
} |
|
} |
|
|
|
return utils.defineTemplateBodyVisitor(context, { |
|
/** @param {VElement} node */ |
|
"VElement[name='transition'] > VElement"(node) { |
|
if (node.parent.children[0] !== node) { |
|
return |
|
} |
|
verifyInsideElement(node) |
|
} |
|
}) |
|
} |
|
}
|
|
|