UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

123 lines (104 loc) 4.57 kB
/*! * OpenUI5 * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ //Provides control sap.m.PlanningCalendarView. sap.ui.define(['sap/ui/core/Element', './library', 'sap/ui/unified/library'], function(Element, library, unifiedLibrary) { "use strict"; // shortcut for sap.ui.unified.CalendarIntervalType var CalendarIntervalType = unifiedLibrary.CalendarIntervalType; var CalendarAppointmentHeight = unifiedLibrary.CalendarAppointmentHeight; /** * Constructor for a new <code>PlanningCalendarView</code>. * * @param {string} [sId] ID for the new control, generated automatically if no ID is given * @param {object} [mSettings] Initial settings for the new control * * @class * View of the {@link sap.m.PlanningCalendar}. * * The <code>PlanningCalendarView</code> defines the type of the intervals (hours, days, months) * and how many intervals are displayed. * @extends sap.ui.core.Element * @version 1.117.4 * * @constructor * @public * @since 1.34.0 * @alias sap.m.PlanningCalendarView */ var PlanningCalendarView = Element.extend("sap.m.PlanningCalendarView", /** @lends sap.m.PlanningCalendarView.prototype */ { metadata : { library : "sap.m", properties : { /** * Defines the key of the view. This must be set to identify the used view in the * {@link sap.m.PlanningCalendar}. */ key : {type : "string", group : "Data", defaultValue : null}, /** * Determines the type of the intervals of the row. * * <b>Note:</b> Not all predefined interval types are supported for this property. For more information, see the * descriptions in the {@link sap.ui.unified.CalendarIntervalType CalendarIntervalType} enumeration. */ intervalType : {type : "sap.ui.unified.CalendarIntervalType", group : "Appearance", defaultValue : CalendarIntervalType.Hour}, /** * An integer that defines the period size. * * @experimental Since 1.93. This class is experimental and provides only limited functionality. Also the API might be changed in future. * @since 1.93 * */ intervalSize: {type: "int", group: "Appearance", defaultValue: 1}, /** * A function that formats the interval. * * @experimental Since 1.93. This class is experimental and provides only limited functionality. Also the API might be changed in future. * @since 1.93 * */ intervalLabelFormatter: {type: "object", group: "Appearance"}, /** * Defines if the view will be relative. * NOTE: Relative views, can be only used with intervalType - Day and when used they need intervalSize and intervalLabelFormatter defined. * @experimental Since 1.93. This class is experimental and provides only limited functionality. Also the API might be changed in future. * @since 1.93 */ relative: {type: "boolean", group: "Appearance", defaultValue: false}, /** * Defines the description of the <code>PlanningCalendarView</code>. */ description : {type : "string", group : "Data"}, /** * Defines the number of intervals that are displayed for a {@link sap.m.PlanningCalendar} that is less than 600 pixels wide. * <b>Note:</b> On a phone the maximum visible intervals are 8. */ intervalsS : {type : "int", group : "Appearance", defaultValue : 6}, /** * Defines the number of intervals that are displayed for a {@link sap.m.PlanningCalendar} that is between 600 and 1024 pixels wide. */ intervalsM : {type : "int", group : "Appearance", defaultValue : 8}, /** * Defines the number of intervals that are displayed for a {@link sap.m.PlanningCalendar} that is more than 1024 pixels wide. */ intervalsL : {type : "int", group : "Appearance", defaultValue : 12}, /** * If set, subintervals are displayed as lines in the rows. * * <ul> * <li>Quarter hour subintervals for interval type <code>Hour</code>.</li> * <li>Hour subintervals for interval types <code>Day</code>, <code>Week</code> and <code>OneMonth</code>.</li> * <li>Day subintervals for interval type <code>Month</code>.</li> * </ul> */ showSubIntervals: { type: "boolean", group: "Appearance", defaultValue: false }, /** * Determines the different possible sizes for appointments. * @since 1.81.0 */ appointmentHeight: { type: "sap.ui.unified.CalendarAppointmentHeight", group: "Appearance", defaultValue: CalendarAppointmentHeight.Regular } } }}); return PlanningCalendarView; });