UNPKG

@qualweb/act-rules

Version:

ACT rules module for qualweb web accessibility evaluator

299 lines (298 loc) 10.4 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.QW_ACT_R24 = void 0; const applicability_1 = require("@qualweb/util/applicability"); const evaluation_1 = require("@qualweb/core/evaluation"); const AtomicRule_object_1 = require("../lib/AtomicRule.object"); class QW_ACT_R24 extends AtomicRule_object_1.AtomicRule { constructor() { super(...arguments); this.autoCompleteTable = { home: [ 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-local-prefix', 'tel-local-suffix', 'tel-extension', 'email', 'impp' ], work: [ 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-local-prefix', 'tel-local-suffix', 'tel-extension', 'email', 'impp' ], mobile: [ 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-local-prefix', 'tel-local-suffix', 'tel-extension', 'email', 'impp' ], fax: [ 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-local-prefix', 'tel-local-suffix', 'tel-extension', 'email', 'impp' ], pager: [ 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-local-prefix', 'tel-local-suffix', 'tel-extension', 'email', 'impp' ], modifiers: ['pager', 'fax', 'mobile', 'work', 'home', 'shipping', 'billing', 'webauthn'], correctTerms: [ 'name', 'honorific-prefix', 'given-name', 'additional-name', 'family-name', 'honorific-suffix', 'nickname', 'username', 'new-password', 'current-password', 'one-time-code', 'organization-title', 'organization', 'street-address', 'address-line1', 'address-line2', 'address-line3', 'address-level4', 'address-level3', 'address-level2', 'address-level1', 'country', 'country-name', 'postal-code', 'cc-name', 'cc-given-name', 'cc-additional-name', 'cc-family-name', 'cc-number', 'cc-exp', 'cc-exp-month', 'cc-exp-year', 'cc-csc', 'cc-type', 'transaction-currency', 'transaction-amount', 'language', 'bday', 'bday-day', 'bday-month', 'bday-year', 'sex', 'url', 'photo', 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-local-prefix', 'tel-local-suffix', 'tel-extension', 'email', 'impp', 'off' ], fieldControl: { name: 'text', 'honorific-prefix': 'text', 'given-name': 'text', 'additional-name': 'text', 'family-name': 'text', 'honorific-suffix': 'text', nickname: 'text', username: 'text', 'new-password': 'password', 'current-password': 'password', 'one-time-code': 'text', 'organization-title': 'text', organization: 'text', 'street-address': 'multiline', 'address-line1': 'text', 'address-line2': 'text', 'address-line3': 'text', 'address-level4': 'text', 'address-level3': 'text', 'address-level2': 'text', 'address-level1': 'text', country: 'text', 'country-name': 'text', 'postal-code': 'text', 'cc-name': 'text', 'cc-given-name': 'text', 'cc-additional-name': 'text', 'cc-family-name': 'text', 'cc-number': 'text', 'cc-exp': 'month', 'cc-exp-month': 'numeric', 'cc-exp-year': 'numeric', 'cc-csc': 'text', 'cc-type': 'text', 'transaction-currency': 'text', 'transaction-amount': 'numeric', language: 'text', bday: 'date', 'bday-day': 'numeric', 'bday-month': 'numeric', 'bday-year': 'numeric', sex: 'text', url: 'url', photo: 'url', tel: 'tel', 'tel-country-code': 'text', 'tel-national': 'text', 'tel-area-code': 'text', 'tel-local': 'text', 'tel-local-prefix': 'text', 'tel-local-suffix': 'text', 'tel-extension': 'text', email: 'email', impp: 'url' } }; } execute(element) { const test = new evaluation_1.Test(); const tag = element.getElementTagName(); if (tag === 'input') { const type = element.getElementAttribute('type'); const disabled = element.elementHasAttribute('disabled'); if (disabled) { return; } if (type === 'hidden' || type === 'button' || type === 'submit' || type === 'reset') { return; } } const ariaDisable = element.getElementAttribute('aria-disabled'); if (ariaDisable === 'true') { return; } const isFocusable = window.AccessibilityUtils.isPartOfSequentialFocusNavigation(element); const widgetRole = window.AccessibilityUtils.isElementWidget(element); if (!isFocusable && !widgetRole) { return; } let autoComplete = element.getElementAttribute('autocomplete'); if (autoComplete) { autoComplete = autoComplete.trim(); if (autoComplete === '' || autoComplete === 'off' || autoComplete === 'on') { return; } const correctAutocompleteField = this.isCorrectAutocompleteField(autoComplete); if (correctAutocompleteField) { test.verdict = evaluation_1.Verdict.PASSED; test.resultCode = 'P1'; } else { test.verdict = evaluation_1.Verdict.FAILED; test.resultCode = 'F1'; } test.addElement(element); this.addTestResult(test); } } isAutoCompleteField(field) { try { return this.autoCompleteTable.correctTerms.includes(field.toLowerCase()); } catch (err) { return false; } } isModifier(field) { try { return this.autoCompleteTable.modifiers.includes(field.toLowerCase()); } catch (err) { return false; } } isValidModifier(modifier, field) { try { return this.autoCompleteTable[modifier.toLowerCase()].includes(field.toLowerCase()); } catch (err) { return false; } } isCorrectAutocompleteField(autoCompleteField) { const fields = autoCompleteField.split(' '); let numRequiredTokens = 0; if (fields[0].startsWith('section-')) fields.splice(0, 1); let field; let lastField = ''; for (let i = fields.length - 1; i > -1; i--) { field = fields[i].toLowerCase(); if (this.isModifier(field)) { if (!(field === 'shipping' || field === 'billing' || field === 'webauthn')) { if (!this.isValidModifier(field, lastField)) { return false; } } } else if (!this.isAutoCompleteField(field)) { return false; } else { numRequiredTokens++; } lastField = field; } if (numRequiredTokens !== 1) { return false; } return true; } } exports.QW_ACT_R24 = QW_ACT_R24; __decorate([ applicability_1.ElementExists, applicability_1.ElementIsVisible, __metadata("design:type", Function), __metadata("design:paramtypes", [Function]), __metadata("design:returntype", void 0) ], QW_ACT_R24.prototype, "execute", null);