UNPKG

@openui5/sap.ui.core

Version:

OpenUI5 Core Library sap.ui.core

231 lines (207 loc) 7.09 kB
/*! * OpenUI5 * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ /** * Defines miscellaneous support rules. */ sap.ui.define(["sap/ui/support/library", "./CoreHelper.support", "sap/ui/thirdparty/jquery", "sap/ui/dom/jquery/control"], // jQuery Plugin "control" function(SupportLib, CoreHelper, jQuery) { "use strict"; // support rules can get loaded within a ui5 version which does not have module "sap/base/Log" yet // therefore load the jQuery.sap.log fallback if not available var Log = sap.ui.require("sap/base/Log"); if (!Log) { Log = jQuery.sap.log; } // shortcuts var Categories = SupportLib.Categories; // Accessibility, Performance, Memory, ... var Severity = SupportLib.Severity; // Hint, Warning, Error var Audiences = SupportLib.Audiences; // Control, Internal, Application //********************************************************** // Rule Definitions //********************************************************** /** * checks the error logs */ var oErrorLogs = { id: "errorLogs", audiences: [Audiences.Control, Audiences.Internal], categories: [Categories.Performance], enabled: true, minversion: "1.32", title: "Error logs", description: "Checks for the amount of error logs in the console", resolution: "Error logs should be fixed", resolutionurls: [], check: function(oIssueManager, oCoreFacade) { var count = 0, message = ""; var log = Log.getLogEntries(); log.forEach(function(logEntry) { if (logEntry.level === Log.Level.ERROR) { count++; if (count <= 20) { message += "- " + logEntry.message + "\n"; } } }); if (count > 0) { oIssueManager.addIssue({ severity: Severity.Low, details: "Total error logs: " + count + "\n" + message, context: { id: "WEBPAGE" } }); } } }; /*** * Checks for custom css files */ var oCssCheckCustomStyles = { id: "cssCheckCustomStyles", audiences: [Audiences.Application], categories: [Categories.Consistency], enabled: true, minversion: "1.38", title: "CSS modifications - List of custom styles", description: "Checks and report for custom CSS files/styles that overwrite standard UI5 control's CSS values ", resolution: "Avoid CSS manipulations with custom CSS values as this could lead to rendering issues ", resolutionurls: [{ text: 'CSS Styling Issues', href: 'https://openui5.hana.ondemand.com/#/topic/9d87f925dfbb4e99b9e2963693aa00ef' }, { text: 'General Guidelines', href: 'https://openui5.hana.ondemand.com/#/topic/5e08ff90b7434990bcb459513d8c52c4' }], check: function (issueManager, oCoreFacade, oScope) { var cssFilesMessage = "Following stylesheet file(s) contain 'custom' CSS that could affects (overwrites) UI5 controls' own styles: \n", externalStyleSheets = CoreHelper.getExternalStyleSheets(), foundIssues = 0; externalStyleSheets.forEach(function (styleSheet) { var affectsUI5Controls = false; Array.from(styleSheet.rules).forEach(function (rule) { var selector = rule.selectorText, matchedNodes = document.querySelectorAll(selector); matchedNodes.forEach(function (node) { var hasUI5Parent = CoreHelper.nodeHasUI5ParentControl(node, oScope); if (hasUI5Parent) { affectsUI5Controls = true; } }); }); if (affectsUI5Controls) { cssFilesMessage += "- " + CoreHelper.getStyleSheetName(styleSheet) + "\n"; foundIssues++; } }); if (foundIssues > 0) { issueManager.addIssue({ severity: Severity.Medium, details: cssFilesMessage, context: { id: "WEBPAGE" } }); } } }; /*** * Checks for custom styles applied on UI elements */ var oCssCheckCustomStylesThatAffectControls = { id: "cssCheckCustomStylesThatAffectControls", audiences: [Audiences.Application], categories: [Categories.Consistency], enabled: true, minversion: "1.38", title: "CSS modifications - List of affected controls", description: "Checks and report all overwritten standard control's CSS values ", resolution: "Avoid CSS manipulations with custom CSS values as this could lead to rendering issues ", resolutionurls: [{ text: 'CSS Styling Issues', href: 'https://openui5.hana.ondemand.com/#/topic/9d87f925dfbb4e99b9e2963693aa00ef' }, { text: 'General Guidelines', href: 'https://openui5.hana.ondemand.com/#/topic/5e08ff90b7434990bcb459513d8c52c4' }], check: function (issueManager, oCoreFacade, oScope) { var controlCustomCssHashMap = {}, externalStyleSheets = CoreHelper.getExternalStyleSheets(); externalStyleSheets.forEach(function (styleSheet) { Array.from(styleSheet.rules).forEach(function (rule) { var selector = rule.selectorText, matchedNodes = document.querySelectorAll(selector); matchedNodes.forEach(function (node) { var hasUI5Parent = CoreHelper.nodeHasUI5ParentControl(node, oScope); if (hasUI5Parent) { // jQuery Plugin "control" var ui5Control = jQuery(node).control()[0]; if (!controlCustomCssHashMap.hasOwnProperty(ui5Control.getId())) { controlCustomCssHashMap[ui5Control.getId()] = ""; } var cssSource = CoreHelper.getStyleSource(styleSheet); controlCustomCssHashMap[ui5Control.getId()] += "'" + selector + "'" + " from " + cssSource + ",\n"; } }); }); }); Object.keys(controlCustomCssHashMap).forEach(function(id) { issueManager.addIssue({ severity: Severity.Low, details: "The following selector(s) " + controlCustomCssHashMap[id] + " affects standard style setting for control", context: { id: id } }); }); } }; /** * checks the EventBus for logs * * Excluded are events which are published to the channel "sap." as these are internal */ var oEventBusLogs = { id: "eventBusSilentPublish", audiences: [Audiences.Internal], categories: [Categories.Functionality], enabled: true, minversion: "1.32", title: "EventBus publish", description: "Checks the EventBus publications for missing listeners", resolution: "Calls to EventBus#publish should be removed or adapted such that associated listeners are found", resolutionurls: [], check: function(oIssueManager, oCoreFacade) { var aLogEntries = Log.getLogEntries(); var aMessages = []; aLogEntries.forEach(function(oLogEntry) { if (oLogEntry.component === "sap.ui.core.EventBus") { if (oLogEntry.details && oLogEntry.details.indexOf("sap.") !== 0) { if (aMessages.indexOf(oLogEntry.message) === -1) { aMessages.push(oLogEntry.message); } } } }); aMessages.forEach(function(sMessage) { oIssueManager.addIssue({ severity: Severity.Low, details: "EventBus publish without listeners " + sMessage, context: { id: "WEBPAGE" } }); }); } }; return [ oEventBusLogs, oErrorLogs, oCssCheckCustomStyles, oCssCheckCustomStylesThatAffectControls ]; }, true);