Single Planning Calendar with Zoom In and Zoom Out behavior
SinglePlanningCalendar with enabled Zoom In and Zoom Out functionality.
Z2UI5_CL_SMPC_APP_554
Controls
sap.m
UI5 1.99
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_554- Source file
z2ui5_cl_smpc_app_554.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.SinglePlanningCalendar- Demo kit sample
sap.m.sample.SinglePlanningCalendarWithZoomInZoomOut- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.99
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: singleplanningcalendar, single, planning, calendar, sap.m, singleplanningcalendarwithzoominzoomout, dynamicsidecontent, vbox, togglebutton, button, singleplanningcalendardayview, singleplanningcalendarworkweekview
Controls it builds
- sap.m.Button
- sap.m.PlanningCalendarLegend
- sap.m.SinglePlanningCalendar
- sap.m.SinglePlanningCalendarDayView
- sap.m.SinglePlanningCalendarWeekView
- sap.m.SinglePlanningCalendarWorkWeekView
- sap.m.ToggleButton
- sap.m.VBox
- sap.ui.core.mvc.View
- sap.ui.layout.DynamicSideContent
- sap.ui.unified.CalendarAppointment
- sap.ui.unified.CalendarLegendItem
- sap.ui.unified.DateTypeRange
Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.
Libraries
Run it here
The sample running, in this page — the app on its own, with no editor over it.
Switch to Playground with this code
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
z2ui5_cl_smpc_app_554.clas.abap — 259 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords singleplanningcalendar single planning calendar sap.m singleplanningcalendarwithzoominzoomout dynamicsidecontent vbox togglebutton button singleplanningcalendardayview singleplanningcalendarworkweekview
" @summary SinglePlanningCalendar with enabled Zoom In and Zoom Out functionality.
CLASS z2ui5_cl_smpc_app_554 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
TYPES: BEGIN OF ty_s_appointment,
title TYPE string,
text TYPE string,
type TYPE string,
icon TYPE string,
start_at TYPE string,
end_at TYPE string,
tentative TYPE abap_bool,
END OF ty_s_appointment.
TYPES ty_t_appointment TYPE STANDARD TABLE OF ty_s_appointment WITH EMPTY KEY.
TYPES: BEGIN OF ty_s_special,
start_at TYPE string,
end_at TYPE string,
type TYPE string,
color TYPE string,
END OF ty_s_special.
TYPES ty_t_special TYPE STANDARD TABLE OF ty_s_special WITH EMPTY KEY.
TYPES: BEGIN OF ty_s_legend,
text TYPE string,
type TYPE string,
color TYPE string,
END OF ty_s_legend.
TYPES ty_t_legend TYPE STANDARD TABLE OF ty_s_legend WITH EMPTY KEY.
DATA t_appointments TYPE ty_t_appointment.
DATA t_special_dates TYPE ty_t_special.
DATA t_legend_items TYPE ty_t_legend.
DATA t_legend_appt_items TYPE ty_t_legend.
DATA start_date TYPE string.
DATA legend_shown TYPE abap_bool.
DATA full_day TYPE abap_bool.
DATA scale_factor TYPE i.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
METHODS on_event.
METHODS model_init.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_554 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
model_init( ).
view_display( ).
ELSEIF client->check_on_navigated( ).
view_display( ).
ELSEIF client->check_on_event( ).
on_event( ).
ENDIF.
ENDMETHOD.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory( ).
" the calendar date properties are typed "object" and demand a real JS Date;
" the model keeps ISO strings and Formatter.DateCreateObject converts them
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns:unified` v = `sap.ui.unified`
)->a( n = `xmlns:l` v = `sap.ui.layout`
)->a( n = `xmlns:core` v = `sap.ui.core`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `core:require` v = `{Formatter: 'z2ui5/model/formatter'}`
)->ele( n = `DynamicSideContent` ns = `l`
)->a( n = `id` v = `DynamicSideContent`
)->a( n = `class` v = `sapUiDSCExplored sapUiContentPadding`
)->a( n = `sideContentVisibility` v = `AlwaysShow`
" the original keeps the legend flag in a second named model; abap2UI5
" keeps one default model, so the flag is a field here
)->a( n = `showSideContent` v = client->_bind( legend_shown )
)->a( n = `containerQuery` v = `true`
)->ele( `VBox`
)->ele( `SinglePlanningCalendar`
)->a( n = `id` v = `SPC1`
)->a( n = `class` v = `sapUiSmallMarginTop`
)->a( n = `title` v = `My Calendar`
)->a( n = `startHour` v = `8`
)->a( n = `endHour` v = `20`
" toggleFullDay flips setFullDay; the property is bindable, so
" the ToggleButton and the calendar share the flag
)->a( n = `fullDay` v = client->_bind( full_day )
" zoomIn / zoomOut step setScaleFactor; the property is bindable
" and the two presses do the same increment in ABAP
)->a( n = `scaleFactor` v = client->_bind( scale_factor )
)->a( n = `startDate` v = |\{ path: '{ client->_bind_path( start_date ) }', formatter: 'Formatter.DateCreateObject' \}|
)->a( n = `appointments` v = client->_bind( t_appointments )
)->a( n = `specialDates` v = client->_bind( t_special_dates )
)->a( n = `legend` v = `SinglePlanningCalendarLegend`
)->ele( `actions`
)->tag( `ToggleButton`
)->a( n = `text` v = `Full Day`
)->a( n = `pressed` v = client->_bind( full_day )
)->tag( `ToggleButton`
)->a( n = `pressed` v = client->_bind( legend_shown )
)->a( n = `icon` v = `sap-icon://legend`
)->tag( `Button`
)->a( n = `icon` v = `sap-icon://zoom-in`
)->a( n = `press` v = client->_event( `ZOOM_IN` )
)->tag( `Button`
)->a( n = `icon` v = `sap-icon://zoom-out`
)->a( n = `press` v = client->_event( `ZOOM_OUT` )
)->end(
)->ele( `views`
)->tag( `SinglePlanningCalendarDayView`
)->a( n = `key` v = `DayView`
)->a( n = `title` v = `Day`
)->tag( `SinglePlanningCalendarWorkWeekView`
)->a( n = `key` v = `WorkWeekView`
)->a( n = `title` v = `Work Week`
)->tag( `SinglePlanningCalendarWeekView`
)->a( n = `key` v = `WeekView`
)->a( n = `title` v = `Week`
)->end(
)->ele( `specialDates`
)->tag( n = `DateTypeRange` ns = `unified`
)->a( n = `startDate` v = `{ path: 'START_AT', formatter: 'Formatter.DateCreateObject' }`
)->a( n = `endDate` v = `{ path: 'END_AT', formatter: 'Formatter.DateCreateObject' }`
)->a( n = `type` v = `{TYPE}`
)->a( n = `color` v = `{COLOR}`
)->end(
)->ele( `appointments`
)->tag( n = `CalendarAppointment` ns = `unified`
)->a( n = `title` v = `{TITLE}`
)->a( n = `text` v = `{TEXT}`
)->a( n = `type` v = `{TYPE}`
)->a( n = `icon` v = `{ICON}`
)->a( n = `startDate` v = `{ path: 'START_AT', formatter: 'Formatter.DateCreateObject' }`
)->a( n = `endDate` v = `{ path: 'END_AT', formatter: 'Formatter.DateCreateObject' }`
)->end(
)->end(
)->end(
)->ele( n = `sideContent` ns = `l`
)->a( n = `width` v = `200px`
)->ele( `PlanningCalendarLegend`
)->a( n = `id` v = `SinglePlanningCalendarLegend`
" ROOT-level aggregations - a bare 'T_' path is RELATIVE and resolves
" against nothing outside a row context, and an unbound table is not
" serialized at all (app 553 has the same two fixes)
)->a( n = `items` v = |\{ path: '{ client->_bind_path( t_legend_items ) }', templateShareable: true \}|
)->a( n = `appointmentItems` v = |\{ path: '{ client->_bind_path( t_legend_appt_items ) }', templateShareable: true \}|
)->a( n = `class` v = `sapUiSmallMarginTop`
)->ele( `items`
)->tag( n = `CalendarLegendItem` ns = `unified`
)->a( n = `text` v = `{TEXT}`
)->a( n = `type` v = `{TYPE}`
)->a( n = `color` v = `{COLOR}`
)->a( n = `tooltip` v = `{TEXT}`
)->end(
)->ele( `appointmentItems`
)->tag( n = `CalendarLegendItem` ns = `unified`
)->a( n = `text` v = `{TEXT}`
)->a( n = `type` v = `{TYPE}`
)->a( n = `tooltip` v = `{TEXT}` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
CASE client->get_event( ).
WHEN `ZOOM_IN`.
scale_factor = scale_factor + 1.
WHEN `ZOOM_OUT`.
scale_factor = scale_factor - 1.
ENDCASE.
ENDMETHOD.
METHOD model_init.
start_date = `2018-07-24T00:00:00`.
legend_shown = abap_false.
full_day = abap_false.
" the SinglePlanningCalendar scaleFactor default
scale_factor = 1.
" the view binds /specialDates, which the sample's own model never fills
CLEAR t_special_dates.
t_appointments = VALUE #(
( title = `Meet John Miller` type = `Type05` start_at = `2018-07-24T08:00:00` end_at = `2018-07-24T08:05:00` )
( title = `Discussion of the plan` type = `Type08` start_at = `2018-07-24T08:05:00` end_at = `2018-07-24T08:10:00` )
( title = `Lunch` text = `canteen` type = `Type05` start_at = `2018-07-24T08:10:00` end_at = `2018-07-24T08:15:00` )
( title = `New Product` text = `room 105` type = `Type01` icon = `sap-icon://meeting-room` start_at = `2018-07-24T08:15:00` end_at = `2018-07-24T08:20:00` )
( title = `Team meeting` text = `Regular` type = `Type01` icon = `sap-icon://home` start_at = `2018-07-24T08:20:00` end_at = `2018-07-24T08:25:00` )
( title = `Discussion with clients` text = `Online meeting` type = `Type08` icon = `sap-icon://home` start_at = `2018-07-24T08:25:00` end_at = `2018-07-24T08:30:00` )
( title = `Discussion of the plan` text = `Online meeting` type = `Type08` icon = `sap-icon://home` start_at = `2018-07-24T08:30:00` end_at = `2018-07-24T08:35:00` tentative = abap_true )
( title = `Discussion with clients` type = `Type08` icon = `sap-icon://home` start_at = `2018-07-24T08:35:00` end_at = `2018-07-24T08:40:00` )
( title = `Meeting with the manager` type = `Type03` start_at = `2018-07-24T08:40:00` end_at = `2018-07-24T08:45:00` )
( title = `Meeting with the manager` type = `Type03` start_at = `2018-07-24T08:45:00` end_at = `2018-07-24T08:50:00` )
( title = `Lunch` type = `Type05` start_at = `2018-07-24T08:50:00` end_at = `2018-07-24T08:55:00` )
( title = `Team meeting` text = `online` type = `Type01` start_at = `2018-07-24T08:55:00` end_at = `2018-07-24T09:00:00` )
( title = `Discussion with clients` type = `Type08` start_at = `2018-07-25T08:00:00` end_at = `2018-07-25T09:00:00` )
( title = `Team meeting` text = `room 5` type = `Type01` start_at = `2018-07-26T08:00:00` end_at = `2018-07-26T08:30:00` )
( title = `Daily standup meeting` type = `Type01` start_at = `2018-07-26T08:30:00` end_at = `2018-07-26T09:00:00` )
( title = `Private meeting` type = `Type03` start_at = `2018-07-27T08:00:00` end_at = `2018-07-27T08:20:00` )
( title = `Team meeting` text = `room 5` type = `Type01` start_at = `2018-07-27T08:20:00` end_at = `2018-07-27T08:40:00` )
( title = `Meeting with the manager` type = `Type03` start_at = `2018-07-27T08:40:00` end_at = `2018-07-27T09:00:00` )
).
t_legend_items = VALUE #(
( text = `Public holiday` type = `Type07` )
( text = `Team building` type = `Type08` )
( text = `Work from office 1` type = `Type09` )
( text = `Work from office 2` type = `Type14` )
( text = `Home office` type = `Type03` color = `#add8e6` )
).
t_legend_appt_items = VALUE #(
( text = `Team Meeting` type = `Type01` )
( text = `Personal` type = `Type05` )
( text = `Discussions` type = `Type08` )
( text = `Out of office` type = `Type09` )
( text = `Private meeting` type = `Type03` )
).
ENDMETHOD.
ENDCLASS.
More in sap.m
- Planning Calendar - with Recurring Calendar Items — PlanningCalendar with recurring calendar items.
- Single Planning Calendar — This sample demonstrates most of the features available for the SinglePlanningCalendar co…
- Single Planning Calendar - Week Numbering — This sample demonstrates how the SinglePlanningCalendar control can be used width differe…
- Single Planning Calendar with Snapping Header and option to change the first day of week — SinglePlanningCalendar showing the modes for snapping the header part of the calendar.
- Single Planning Calendar with Custom Views — SinglePlanningCalendar showing the provided predefined views and custom views.
- Single Planning Calendar with Legend and defined working hours — SinglePlanningCalendar and PlanningCalendarLegend controls used as main and side parts of…
- Single Planning Calendar with Recurring Calendar Items — SinglePlanningCalendar with recurring calendar items
- Date Picker Mass Editing Scenario — Using calendar in a dialog for changing dates in mass editing scenario.
- Facet Filter - Custom Filters — With the FacetFilter you can define custom filtering criteria to be applied when searchin…
- Tab Container - Multi-instance handling concept — Allows detail view / edit in sap.m.TabContainer after selecting items from table.
- Dialog in Custom Within Area — Within area of sap.ui.core.Popup determines where all popups (including dialogs) are posi…
- Dialog with Custom Footer — Dialog with custom footer and support for message popover.
On this page