%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 : /proc/11585/cwd/html/ppaobm/vendor/bower-asset/fullcalendar/src/core/datelib/ |
Upload File : |
import { mergeProps, hashValuesToArray } from '../util/object' import { __assign } from 'tslib' export type LocaleCodeArg = string | string[] export type LocaleSingularArg = LocaleCodeArg | RawLocale export interface Locale { codeArg: LocaleCodeArg codes: string[] week: { dow: number, doy: number } simpleNumberFormat: Intl.NumberFormat options: any } export interface RawLocale { code: string [otherProp: string]: any } export type RawLocaleMap = { [code: string]: RawLocale } export interface RawLocaleInfo { map: RawLocaleMap defaultCode: string } const RAW_EN_LOCALE = { code: 'en', week: { dow: 0, // Sunday is the first day of the week doy: 4 // 4 days need to be within the year to be considered the first week }, dir: 'ltr', buttonText: { prev: 'prev', next: 'next', prevYear: 'prev year', nextYear: 'next year', year: 'year', today: 'today', month: 'month', week: 'week', day: 'day', list: 'list' }, weekLabel: 'W', allDayText: 'all-day', eventLimitText: 'more', noEventsMessage: 'No events to display' } export function parseRawLocales(explicitRawLocales: RawLocale[]): RawLocaleInfo { let defaultCode = explicitRawLocales.length > 0 ? explicitRawLocales[0].code : 'en' let globalArray = window['FullCalendarLocalesAll'] || [] // from locales-all.js let globalObject = window['FullCalendarLocales'] || {} // from locales/*.js. keys are meaningless let allRawLocales = globalArray.concat( // globalArray is low prio hashValuesToArray(globalObject), // medium prio explicitRawLocales // highest prio ) let rawLocaleMap = { en: RAW_EN_LOCALE // necessary? } for (let rawLocale of allRawLocales) { rawLocaleMap[rawLocale.code] = rawLocale } return { map: rawLocaleMap, defaultCode } } export function buildLocale(inputSingular: LocaleSingularArg, available: RawLocaleMap) { if (typeof inputSingular === 'object' && !Array.isArray(inputSingular)) { return parseLocale( inputSingular.code, [ inputSingular.code ], inputSingular ) } else { return queryLocale(inputSingular, available) } } function queryLocale(codeArg: LocaleCodeArg, available: RawLocaleMap): Locale { let codes = [].concat(codeArg || []) // will convert to array let raw = queryRawLocale(codes, available) || RAW_EN_LOCALE return parseLocale(codeArg, codes, raw) } function queryRawLocale(codes: string[], available: RawLocaleMap): RawLocale { for (let i = 0; i < codes.length; i++) { let parts = codes[i].toLocaleLowerCase().split('-') for (let j = parts.length; j > 0; j--) { let simpleId = parts.slice(0, j).join('-') if (available[simpleId]) { return available[simpleId] } } } return null } function parseLocale(codeArg: LocaleCodeArg, codes: string[], raw: RawLocale): Locale { let merged = mergeProps([ RAW_EN_LOCALE, raw ], [ 'buttonText' ]) delete merged.code // don't want this part of the options let week = merged.week delete merged.week return { codeArg, codes, week, simpleNumberFormat: new Intl.NumberFormat(codeArg), options: merged } }