UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

192 lines (191 loc) • 8.25 kB
/** * DevExtreme (esm/__internal/scheduler/appointments/m_view_model_generator.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import _extends from "@babel/runtime/helpers/esm/extends"; import { dateUtilsTs } from "../../core/utils/date"; import { getAppointmentKey } from "../../scheduler/r1/utils/index"; import AgendaAppointmentsStrategy from "./rendering_strategies/m_strategy_agenda"; import HorizontalAppointmentsStrategy from "./rendering_strategies/m_strategy_horizontal"; import HorizontalMonthAppointmentsStrategy from "./rendering_strategies/m_strategy_horizontal_month"; import HorizontalMonthLineAppointmentsStrategy from "./rendering_strategies/m_strategy_horizontal_month_line"; import VerticalAppointmentsStrategy from "./rendering_strategies/m_strategy_vertical"; import WeekAppointmentRenderingStrategy from "./rendering_strategies/m_strategy_week"; const RENDERING_STRATEGIES = { horizontal: HorizontalAppointmentsStrategy, horizontalMonth: HorizontalMonthAppointmentsStrategy, horizontalMonthLine: HorizontalMonthLineAppointmentsStrategy, vertical: VerticalAppointmentsStrategy, week: WeekAppointmentRenderingStrategy, agenda: AgendaAppointmentsStrategy }; export class AppointmentViewModelGenerator { initRenderingStrategy(options) { const RenderingStrategy = RENDERING_STRATEGIES[options.appointmentRenderingStrategyName]; this.renderingStrategy = new RenderingStrategy(options) } generate(filteredItems, options) { const { viewOffset: viewOffset } = options; const appointments = filteredItems ? filteredItems.slice() : []; this.initRenderingStrategy(options); const renderingStrategy = this.getRenderingStrategy(); const positionMap = renderingStrategy.createTaskPositionMap(appointments); const shiftedViewModel = this.postProcess(appointments, positionMap); const viewModel = this.unshiftViewModelAppointmentsByViewOffset(shiftedViewModel, viewOffset); return { positionMap: positionMap, viewModel: viewModel } } postProcess(filteredItems, positionMap) { const renderingStrategy = this.getRenderingStrategy(); return filteredItems.map(((data, index) => { if (!renderingStrategy.keepAppointmentSettings()) { delete data.settings } const appointmentSettings = positionMap[index]; appointmentSettings.forEach((item => { item.direction = "vertical" === renderingStrategy.getDirection() && !item.allDay ? "vertical" : "horizontal" })); const item = { itemData: data, settings: appointmentSettings }; item.needRepaint = true; item.needRemove = false; return item })) } makeRenovatedViewModels(viewModel, supportAllDayRow, isVerticalGrouping) { const strategy = this.getRenderingStrategy(); const regularViewModels = []; const allDayViewModels = []; const compactOptions = []; const isAllDayPanel = supportAllDayRow && !isVerticalGrouping; viewModel.forEach((_ref => { let { itemData: itemData, settings: settings } = _ref; settings.forEach((options => { const item = this.prepareViewModel(options, strategy, itemData); if (options.isCompact) { compactOptions.push({ compactViewModel: options.virtual, appointmentViewModel: item }) } else if (options.allDay && isAllDayPanel) { allDayViewModels.push(item) } else { regularViewModels.push(item) } })) })); const compactViewModels = this.prepareCompactViewModels(compactOptions, supportAllDayRow); const result = _extends({ allDay: allDayViewModels, regular: regularViewModels }, compactViewModels); return result } prepareViewModel(options, strategy, itemData) { const geometry = strategy.getAppointmentGeometry(options); const viewModel = { key: getAppointmentKey(geometry), appointment: itemData, geometry: _extends({}, geometry, { leftVirtualWidth: options.leftVirtualWidth, topVirtualHeight: options.topVirtualHeight }), info: _extends({}, options.info, { allDay: options.allDay, direction: options.direction, appointmentReduced: options.appointmentReduced, groupIndex: options.groupIndex }) }; return viewModel } getCompactViewModelFrame(compactViewModel) { return { isAllDay: !!compactViewModel.isAllDay, isCompact: compactViewModel.isCompact, groupIndex: compactViewModel.groupIndex, geometry: { left: compactViewModel.left, top: compactViewModel.top, width: compactViewModel.width, height: compactViewModel.height }, items: { colors: [], data: [], settings: [] } } } prepareCompactViewModels(compactOptions, supportAllDayRow) { const regularCompact = {}; const allDayCompact = {}; compactOptions.forEach((_ref2 => { let { compactViewModel: compactViewModel, appointmentViewModel: appointmentViewModel } = _ref2; const { index: index, isAllDay: isAllDay } = compactViewModel; const viewModel = isAllDay && supportAllDayRow ? allDayCompact : regularCompact; if (!viewModel[index]) { viewModel[index] = this.getCompactViewModelFrame(compactViewModel) } const { settings: settings, data: data, colors: colors } = viewModel[index].items; settings.push(appointmentViewModel); data.push(appointmentViewModel.appointment); colors.push(appointmentViewModel.info.resourceColor) })); const toArray = items => Object.keys(items).map((key => _extends({ key: key }, items[key]))); const allDayViewModels = toArray(allDayCompact); const regularViewModels = toArray(regularCompact); return { allDayCompact: allDayViewModels, regularCompact: regularViewModels } } getRenderingStrategy() { return this.renderingStrategy } unshiftViewModelAppointmentsByViewOffset(viewModel, viewOffset) { const processedAppointments = new Set; for (const model of viewModel) { for (const setting of model.settings ?? []) { var _setting$info; const appointment = null === setting || void 0 === setting || null === (_setting$info = setting.info) || void 0 === _setting$info ? void 0 : _setting$info.appointment; if (appointment && !processedAppointments.has(appointment)) { appointment.startDate = dateUtilsTs.addOffsets(appointment.startDate, [viewOffset]); appointment.endDate = dateUtilsTs.addOffsets(appointment.endDate, [viewOffset]); appointment.normalizedEndDate = dateUtilsTs.addOffsets(appointment.normalizedEndDate, [viewOffset]); processedAppointments.add(appointment) } } } return viewModel } }