UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

85 lines (65 loc) 2.28 kB
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([], function() { "use strict"; /** * PlanningCalendar renderer. * @namespace */ var PlanningCalendarRenderer = {}; /** * Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}. * * @param {sap.ui.core.RenderManager} oRm The RenderManager that can be used for writing to the render output buffer. * @param {sap.m.PlanningCalendar} oPC An object representation of the <code>PlanningCalendar</code> control that should be rendered. */ PlanningCalendarRenderer.render = function(oRm, oPC){ var sId = oPC.getId(); var sTooltip = oPC.getTooltip_AsString(); oRm.write("<div"); oRm.writeControlData(oPC); oRm.addClass("sapMPlanCal"); if (oPC._iSize !== undefined && oPC._iSize !== null) { oRm.addClass("sapMSize" + oPC._iSize); } if (!oPC.getSingleSelection()) { oRm.addClass("sapMPlanCalMultiSel"); } if (!oPC.getShowRowHeaders()) { oRm.addClass("sapMPlanCalNoHead"); } if (oPC.getShowWeekNumbers() && oPC._viewAllowsWeekNumbers(oPC.getViewKey())) { oRm.addClass("sapMPlanCalWithWeekNumbers"); } if (oPC.getShowDayNamesLine() && oPC._viewAllowsDayNamesLine(oPC.getViewKey())) { oRm.addClass("sapMPlanCalWithDayNamesLine"); } if (sTooltip) { oRm.writeAttributeEscaped('title', sTooltip); } var sWidth = oPC.getWidth(); if (sWidth) { oRm.addStyle("width", sWidth); } var sHeight = oPC.getHeight(); if (sHeight) { oRm.addStyle("height", sHeight); } oRm.writeAccessibilityState(oPC); oRm.writeClasses(); oRm.writeStyles(); oRm.write(">"); // div element var oTable = oPC.getAggregation("table"); oRm.renderControl(oTable); var sAriaText = oPC._oRB.getText("PLANNINGCALENDAR"); oRm.write("<span id=\"" + sId + "-Descr\" class=\"sapUiInvisibleText\">" + sAriaText + "</span>"); sAriaText = oPC._oRB.getText("PLANNINGCALENDAR_VIEW"); oRm.write("<span id=\"" + sId + "-SelDescr\" class=\"sapUiInvisibleText\">" + sAriaText + "</span>"); oRm.write("</div>"); }; return PlanningCalendarRenderer; }, /* bExport= */ true);