website-auditfy
Version:
> Tool for validate your project on SEO, HTML, CSS, JS, TS, Performance, Security and A11Y
53 lines • 2.44 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.HtmlAudit = void 0;
const audit_model_1 = require("../../models/audit.model");
const chalk_1 = __importDefault(require("chalk"));
class HtmlAudit extends audit_model_1.Audit {
constructor(source, dom, lightHouse, htmlValidator, config) {
super();
this.dom = dom;
this.name = "HTML";
this.config = config;
this.source = source;
this.lighthouse = lightHouse;
this.htmlValidator = htmlValidator;
}
check() {
return __awaiter(this, void 0, void 0, function* () {
const result = [];
const seoConfigRules = this.getConfigRules();
const ruleImportList = yield this.getRuleImportList(__dirname);
const ruleInstanceList = ruleImportList.reduce((list, rule) => {
const instance = new rule(this.dom, this.lighthouse.lhr.audits, this.htmlValidator);
list[instance.id] = instance;
return list;
}, {});
for (const [rule, flow] of Object.entries(seoConfigRules)) {
try {
const instance = ruleInstanceList[rule];
instance.ruleFlow = flow;
result.push(...instance.check());
}
catch (e) {
console.log(`\n${chalk_1.default.red('✘')} can't find rule ${rule} on ${this.name} module`);
}
}
return result;
});
}
}
exports.HtmlAudit = HtmlAudit;
//# sourceMappingURL=html.js.map