Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style(lib/checks): var -> let and const codemod #4451

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/checks/aria/aria-required-parent-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ function getMissingContext(
}

function getAriaOwners(element) {
var owners = [],
o = null;
const owners = [];
let o = null;

while (element) {
if (element.getAttribute('id')) {
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/aria/valid-scrollable-semantics-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function validScrollableTagName(node) {
* region.
*/
function validScrollableRole(node, options) {
var role = getExplicitRole(node);
const role = getExplicitRole(node);
if (!role) {
return false;
}
Expand Down
22 changes: 11 additions & 11 deletions lib/checks/color/link-in-text-block-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
} from '../../commons/color';

function getContrast(color1, color2) {
var c1lum = color1.getRelativeLuminance();
var c2lum = color2.getRelativeLuminance();
const c1lum = color1.getRelativeLuminance();
const c2lum = color2.getRelativeLuminance();
return (Math.max(c1lum, c2lum) + 0.05) / (Math.min(c1lum, c2lum) + 0.05);
}

Expand All @@ -20,7 +20,7 @@ const blockLike = [
'inline-block'
];
function isBlock(elm) {
var display = window.getComputedStyle(elm).getPropertyValue('display');
const display = window.getComputedStyle(elm).getPropertyValue('display');
return blockLike.indexOf(display) !== -1 || display.substr(0, 6) === 'table-';
}

Expand All @@ -31,7 +31,7 @@ function linkInTextBlockEvaluate(node, options) {
return false;
}

var parentBlock = getComposedParent(node);
let parentBlock = getComposedParent(node);
while (parentBlock && parentBlock.nodeType === 1 && !isBlock(parentBlock)) {
parentBlock = getComposedParent(parentBlock);
}
Expand All @@ -43,13 +43,13 @@ function linkInTextBlockEvaluate(node, options) {
this.relatedNodes([parentBlock]);

// Capture colors
var nodeColor = getForegroundColor(node);
var parentColor = getForegroundColor(parentBlock);
var nodeBackgroundColor = getBackgroundColor(node);
var parentBackgroundColor = getBackgroundColor(parentBlock);
const nodeColor = getForegroundColor(node);
const parentColor = getForegroundColor(parentBlock);
const nodeBackgroundColor = getBackgroundColor(node);
const parentBackgroundColor = getBackgroundColor(parentBlock);

// Compute contrasts, giving preference to foreground color and doing as little work as possible
var textContrast =
let textContrast =
nodeColor && parentColor ? getContrast(nodeColor, parentColor) : undefined;
if (textContrast) {
textContrast = Math.floor(textContrast * 100) / 100;
Expand All @@ -59,7 +59,7 @@ function linkInTextBlockEvaluate(node, options) {
return true;
}

var backgroundContrast =
let backgroundContrast =
nodeBackgroundColor && parentBackgroundColor
? getContrast(nodeBackgroundColor, parentBackgroundColor)
: undefined;
Expand All @@ -74,7 +74,7 @@ function linkInTextBlockEvaluate(node, options) {

// Report incomplete instead of failure if we're not sure
if (!backgroundContrast) {
var reason = incompleteData.get('bgColor') ?? 'bgContrast';
const reason = incompleteData.get('bgColor') ?? 'bgContrast';
this.data({
messageKey: reason
});
Expand Down
4 changes: 2 additions & 2 deletions lib/checks/color/link-in-text-block-style-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function linkInTextBlockStyleEvaluate(node) {
return false;
}

var parentBlock = getComposedParent(node);
let parentBlock = getComposedParent(node);
while (parentBlock && parentBlock.nodeType === 1 && !isBlock(parentBlock)) {
parentBlock = getComposedParent(parentBlock);
}
Expand All @@ -37,7 +37,7 @@ export default function linkInTextBlockStyleEvaluate(node) {
}

function isBlock(elm) {
var display = window.getComputedStyle(elm).getPropertyValue('display');
const display = window.getComputedStyle(elm).getPropertyValue('display');
return blockLike.indexOf(display) !== -1 || display.substr(0, 6) === 'table-';
}

Expand Down
4 changes: 2 additions & 2 deletions lib/checks/keyboard/accesskeys-after.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
function accesskeysAfter(results) {
var seen = {};
const seen = {};
return results
.filter(r => {
if (!r.data) {
return false;
}
var key = r.data.toUpperCase();
const key = r.data.toUpperCase();
if (!seen[key]) {
seen[key] = r;
r.relatedNodes = [];
Expand Down
8 changes: 4 additions & 4 deletions lib/checks/keyboard/landmark-is-top-level-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { getAriaRolesByType } from '../../commons/standards';
import { getComposedParent } from '../../commons/dom';

function landmarkIsTopLevelEvaluate(node) {
var landmarks = getAriaRolesByType('landmark');
var parent = getComposedParent(node);
var nodeRole = getRole(node);
const landmarks = getAriaRolesByType('landmark');
let parent = getComposedParent(node);
const nodeRole = getRole(node);

this.data({ role: nodeRole });

while (parent) {
var role = parent.getAttribute('role');
let role = parent.getAttribute('role');
if (!role && parent.nodeName.toUpperCase() !== 'FORM') {
role = implicitRole(parent);
}
Expand Down
6 changes: 3 additions & 3 deletions lib/checks/label/help-same-as-label-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { labelVirtual, accessibleText, sanitize } from '../../commons/text';
import { idrefs } from '../../commons/dom';

function helpSameAsLabelEvaluate(node, options, virtualNode) {
var labelText = labelVirtual(virtualNode),
check = node.getAttribute('title');
const labelText = labelVirtual(virtualNode);
let check = node.getAttribute('title');

if (!labelText) {
return false;
Expand All @@ -13,7 +13,7 @@ function helpSameAsLabelEvaluate(node, options, virtualNode) {
check = '';

if (node.getAttribute('aria-describedby')) {
var ref = idrefs(node, 'aria-describedby');
const ref = idrefs(node, 'aria-describedby');
check = ref
.map(thing => {
return thing ? accessibleText(thing) : '';
Expand Down
6 changes: 3 additions & 3 deletions lib/checks/landmarks/landmark-is-unique-after.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
function landmarkIsUniqueAfter(results) {
var uniqueLandmarks = [];
const uniqueLandmarks = [];

// filter out landmark elements that share the same role and accessible text
// so every non-unique landmark isn't reported as a failure (just the first)
return results.filter(currentResult => {
var findMatch = someResult => {
const findMatch = someResult => {
return (
currentResult.data.role === someResult.data.role &&
currentResult.data.accessibleText === someResult.data.accessibleText
);
};

var matchedResult = uniqueLandmarks.find(findMatch);
const matchedResult = uniqueLandmarks.find(findMatch);
if (matchedResult) {
matchedResult.result = false;
matchedResult.relatedNodes.push(currentResult.relatedNodes[0]);
Expand Down
4 changes: 2 additions & 2 deletions lib/checks/landmarks/landmark-is-unique-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { getRole } from '../../commons/aria';
import { accessibleTextVirtual } from '../../commons/text';

function landmarkIsUniqueEvaluate(node, options, virtualNode) {
var role = getRole(node);
var accessibleText = accessibleTextVirtual(virtualNode);
const role = getRole(node);
let accessibleText = accessibleTextVirtual(virtualNode);
accessibleText = accessibleText ? accessibleText.toLowerCase() : null;
this.data({ role: role, accessibleText: accessibleText });
this.relatedNodes([node]);
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/lists/structured-dlitems-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function structuredDlitemsEvaluate(node, options, virtualNode) {
let hasDt = false,
hasDd = false,
nodeName;
for (var i = 0; i < children.length; i++) {
for (let i = 0; i < children.length; i++) {
nodeName = children[i].props.nodeName.toUpperCase();
if (nodeName === 'DT') {
hasDt = true;
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/navigation/unique-frame-title-after.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function uniqueFrameTitleAfter(results) {
var titles = {};
const titles = {};
results.forEach(r => {
titles[r.data] = titles[r.data] !== undefined ? ++titles[r.data] : 0;
});
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/navigation/unique-frame-title-evaluate.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { sanitize } from '../../commons/text';

function uniqueFrameTitleEvaluate(node, options, vNode) {
var title = sanitize(vNode.attr('title')).toLowerCase();
const title = sanitize(vNode.attr('title')).toLowerCase();
this.data(title);
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/parsing/duplicate-id-after.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function duplicateIdAfter(results) {
var uniqueIds = [];
const uniqueIds = [];
return results.filter(r => {
if (uniqueIds.indexOf(r.data) === -1) {
uniqueIds.push(r.data);
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/shared/doc-has-title-evaluate.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { sanitize } from '../../commons/text';

function docHasTitleEvaluate() {
var title = document.title;
const title = document.title;
return !!sanitize(title);
}

Expand Down
4 changes: 2 additions & 2 deletions lib/checks/tables/caption-faked-evaluate.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { toGrid } from '../../commons/table';

function captionFakedEvaluate(node) {
var table = toGrid(node);
var firstRow = table[0];
const table = toGrid(node);
const firstRow = table[0];

if (table.length <= 1 || firstRow.length <= 1 || node.rows.length <= 1) {
return true;
Expand Down
6 changes: 3 additions & 3 deletions lib/checks/tables/same-caption-summary-evaluate.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ function sameCaptionSummaryEvaluate(node, options, virtualNode) {
return undefined;
}

var summary = virtualNode.attr('summary');
var captionNode = virtualNode.children.find(isCaptionNode);
var caption = captionNode ? sanitize(subtreeText(captionNode)) : false;
const summary = virtualNode.attr('summary');
const captionNode = virtualNode.children.find(isCaptionNode);
const caption = captionNode ? sanitize(subtreeText(captionNode)) : false;

if (!caption || !summary) {
return false;
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/tables/scope-value-evaluate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function scopeValueEvaluate(node, options) {
var value = node.getAttribute('scope').toLowerCase();
const value = node.getAttribute('scope').toLowerCase();

return options.values.indexOf(value) !== -1;
}
Expand Down
Loading