UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

324 lines (287 loc) 12.5 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. */ //Provides control sap.ui.unified.PlanningCalendarRow. sap.ui.define(['sap/ui/core/Element'], function (Element) { "use strict"; /** * Constructor for a new <code>PlanningCalendarRow</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 * Represents a row in the {@link sap.m.PlanningCalendar}. * * This element holds the data of one row in the {@link sap.m.PlanningCalendar}. Once the header information * (for example, person information) is assigned, the appointments are assigned. * The <code>sap.m.PlanningCalendarRow</code> allows you to modify appointments at row level. * * @extends sap.ui.core.Element * @version 1.60.39 * * @constructor * @public * @since 1.34 * @alias sap.m.PlanningCalendarRow * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var PlanningCalendarRow = Element.extend("sap.m.PlanningCalendarRow", /** @lends sap.m.PlanningCalendarRow.prototype */ { metadata : { library : "sap.m", properties : { /** * Defines the title of the header (for example, the name of the person). */ title : {type : "string", group : "Data"}, /** * Defines the text of the header (for example, the department of the person). */ text : {type : "string", group : "Data"}, /** * Specifies the URI of an image or an icon registered in <code>sap.ui.core.IconPool</code>. */ icon : {type : "sap.ui.core.URI", group : "Data", defaultValue : null}, /** * Determines whether the provided weekdays are displayed as non-working days. * Valid values inside the array are from 0 to 6 (other values are ignored). * If not set, the weekend defined in the locale settings is displayed as non-working days. * * <b>Note:</b> The non-working days are visualized if the <code>intervalType</code> * property of the {@link sap.m.PlanningCalendarView} is set to <code>Day</code>. */ nonWorkingDays : {type : "int[]", group : "Misc", defaultValue : null}, /** * Determines whether the provided hours are displayed as non-working hours. * Valid values inside the array are from 0 to 23 (other values are ignored). * * <b>Note:</b> The non-working hours are visualized if <code>intervalType</code> * property of the {@link sap.m.PlanningCalendarView} is set to <code>Hour</code>. */ nonWorkingHours : {type : "int[]", group : "Misc", defaultValue : null}, /** * Defines the selected state of the <code>PlanningCalendarRow</code>. * * <b>Note:</b> Binding the <code>selected</code> property in single selection modes may * cause unwanted results if you have more than one selected row in your binding. */ selected : {type : "boolean", group : "Data", defaultValue : false}, /** * Defines the identifier of the row. */ key : {type : "string", group : "Data", defaultValue : null}, /** * Determines whether the appointments in the row are draggable. * * The drag and drop interaction is visualized by a placeholder highlighting the area where the * appointment can be dropped by the user. * * By default, appointments can be dragged only within their original <code>PlanningCalendarRow</code>. When * <code>enableAppointmentsDragAndDrop</code> is set to true, attaching the * {@link #event:appointmentDragEnter appointmentDragEnter} event can change the default behavior and allow * appointments to be dragged between calendar rows. * * Specifics based on the intervals (hours, days or months) displayed in the <code>PlanningCalendar</code> views: * * Hours:<br> * For views where the displayed intervals are hours, the placeholder snaps on every interval * of 30 minutes. After the appointment is dropped, the {@link #event:appointmentDrop appointmentDrop} event is fired, containing * the new start and end JavaScript date objects.<br> * For example, an appointment with start date "Nov 13 2017 12:17:00" and end date "Nov 13 2017 12:45:30" * lasts for 27 minutes and 30 seconds. After dragging and dropping to a new time, the possible new * start date has time that is either "hh:00:00" or "hh:30:00" because of the placeholder that can * snap on every 30 minutes. The new end date is calculated to be 27 minutes and 30 seconds later * and would be either "hh:27:30" or "hh:57:30". * * Days:<br> * For views where intervals are days, the placeholder highlights the whole day and after the * appointment is dropped the {@link #event:appointmentDrop appointmentDrop} event is fired. The event contains the new start and * end JavaScript date objects with changed date but the original time (hh:mm:ss) is preserved. * * Months:<br> * For views where intervals are months, the placeholder highlights the whole month and after the * appointment is dropped the {@link #event:appointmentDrop appointmentDrop} event is fired. The event contains the new start and * end JavaScript date objects with changed month but the original date and time is preserved. * * <b>Note:</b> In "One month" view, the appointments are not draggable on small screen (as there they are * displayed as a list below the dates). Group appointments are also not draggable. * * @since 1.54 */ enableAppointmentsDragAndDrop : {type : "boolean", group : "Misc", defaultValue : false}, /** * Determines whether the appointments in the row are resizable. * * The resize interaction is visualized by making the appointment transparent. * * Specifics based on the intervals (hours, days or months) displayed in the <code>PlanningCalendar</code> views: * * Hours: * For views where the displayed intervals are hours, the appointment snaps on every interval * of 30 minutes. After the resize is finished, the {@link #event:appointmentResize appointmentResize} event is fired, containing * the new start and end JavaScript date objects. * * Days: * For views where intervals are days, the appointment snaps to the end of the day. After the resize is finished, * the {@link #event:appointmentResize appointmentResize} event is fired, containing the new start and end JavaScript date objects. * The <code>endDate</code> time is changed to 00:00:00 * * Months: * For views where intervals are months, the appointment snaps to the end of the month. * The {@link #event:appointmentResize appointmentResize} event is fired, containing the new start and end JavaScript date objects. * The <code>endDate</code> is set to the 00:00:00 and first day of the following month. * * <b>Notes:</b> * In "One month" view, the appointments are not resizable on small screen (as there they are * displayed as a list below the dates). Group appointments are also not resizable * * @since 1.56 */ enableAppointmentsResize : {type : "boolean", group : "Misc", defaultValue : false}, /** * Determines whether the appointments can be created by dragging on empty cells. * * See {@link #property:enableAppointmentsResize enableAppointmentsResize} for the specific points for events snapping * * <b>Notes:</b> * In "One month" view, the appointments cannot be created on small screen (as there they are * displayed as a list below the dates). * * @since 1.56 */ enableAppointmentsCreate : {type : "boolean", group : "Misc", defaultValue : false} }, aggregations : { /** * The appointments to be displayed in the row. Appointments that outside the visible time frame are not rendered. * * <b>Note:</b> For performance reasons, only appointments in the visible time range or nearby should be assigned. */ appointments : {type : "sap.ui.unified.CalendarAppointment", multiple : true, singularName : "appointment", dnd : {draggable: true}}, /** * The appointments to be displayed at the top of the intervals (for example, for public holidays). * Appointments outside the visible time frame are not rendered. * * Keep in mind that the <code>intervalHeaders</code> should always fill whole intervals. If they are shorter or longer * than one interval, they are not displayed. * * <b>Note:</b> For performance reasons, only appointments in the visible time range or nearby should be assigned. */ intervalHeaders : {type : "sap.ui.unified.CalendarAppointment", multiple : true, singularName : "intervalHeader"}, /** * Holds the special dates in the context of a row. A single date or a date range can be set. * * <b>Note</b> Only date or date ranges of type <code>sap.ui.unified.CalendarDayType.NonWorking</code> will * be visualized in the <code>PlanningCalendarRow</code>. If the aggregation is set as another type, * the date or date range will be ignored and will not be displayed in the control. * @since 1.56 */ specialDates : {type : "sap.ui.unified.DateTypeRange", multiple : true, singularName : "specialDate"} }, events : { /** * Fired if an appointment is dropped. * @since 1.54 */ appointmentDrop : { parameters : { /** * The dropped appointment. */ appointment : {type : "sap.ui.unified.CalendarAppointment"}, /** * Start date of the dropped appointment, as a JavaScript date object. */ startDate : {type : "object"}, /** * Dropped appointment end date as a JavaScript date object. */ endDate : {type : "object"}, /** * The row of the appointment. */ calendarRow : {type : "sap.m.PlanningCalendarRow"}, /** * The drop type. If true - it's "Copy", if false - it's "Move". */ copy : {type : "boolean"} } }, /** * Fired if an appointment is dropped. * * When this event handler is attached, the default behavior of the <code>enableAppointmentsDragAndDrop</code> * property to move appointments only within their original calendar row is no longer valid. You can move * the appointment around all rows for which <code>enableAppointmentsDragAndDrop</code> is set to true. * In this case, the drop target area is indicated by a placeholder. In the event handler you can call the * <code>preventDefault</code> method of the event to prevent this default behavior. In this case, * the placeholder will no longer be available and it will not be possible to drop the appointment in the row. * * @since 1.56 */ appointmentDragEnter : { allowPreventDefault : true, parameters : { /** * The dropped appointment. */ appointment : {type : "sap.ui.unified.CalendarAppointment"}, /** * Start date of the dropped appointment, as a JavaScript date object. */ startDate : {type : "object"}, /** * Dropped appointment end date as a JavaScript date object. */ endDate : {type : "object"}, /** * The row of the appointment. */ calendarRow : {type : "sap.m.PlanningCalendarRow"} } }, /** * Fired if an appointment is resized. * @since 1.56 */ appointmentResize : { parameters : { /** * The resized appointment. */ appointment : {type : "sap.ui.unified.CalendarAppointment"}, /** * Start date of the resized appointment, as a JavaScript date object. */ startDate : {type : "object"}, /** * End date of the resized appointment, as a JavaScript date object. */ endDate : {type : "object"} } }, /** * Fired if an appointment is created. * @since 1.56 */ appointmentCreate : { parameters : { /** * Start date of the created appointment, as a JavaScript date object. */ startDate : {type : "object"}, /** * End date of the created appointment, as a JavaScript date object. */ endDate : {type : "object"}, /** * The row of the appointment. */ calendarRow : {type : "sap.m.PlanningCalendarRow"} } } } }}); return PlanningCalendarRow; });