%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/bower-asset/fullcalendar/src/core/structs/ |
Upload File : |
import Calendar from '../Calendar' import { EventInput } from './event' import { EventStore, parseEvents } from './event-store' /* Utils for converting raw business hour input into an EventStore, for both rendering and the constraint system. */ export type BusinessHoursInput = boolean | EventInput | EventInput[] const DEF_DEFAULTS = { startTime: '09:00', endTime: '17:00', daysOfWeek: [ 1, 2, 3, 4, 5 ], // monday - friday rendering: 'inverse-background', classNames: 'fc-nonbusiness', groupId: '_businessHours' // so multiple defs get grouped } /* TODO: pass around as EventDefHash!!! */ export function parseBusinessHours(input: BusinessHoursInput, calendar: Calendar): EventStore { return parseEvents( refineInputs(input), '', calendar ) } function refineInputs(input: BusinessHoursInput) { let rawDefs if (input === true) { rawDefs = [ {} ] // will get DEF_DEFAULTS verbatim } else if (Array.isArray(input)) { // if specifying an array, every sub-definition NEEDS a day-of-week rawDefs = input.filter(function(rawDef) { return rawDef.daysOfWeek }) } else if (typeof input === 'object' && input) { // non-null object rawDefs = [ input ] } else { // is probably false rawDefs = [] } rawDefs = rawDefs.map(function(rawDef) { return { ...DEF_DEFAULTS, ...rawDef } }) return rawDefs }