-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule-customcalendarmodel.html
2538 lines (741 loc) · 38.1 KB
/
module-customcalendarmodel.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Module: customcalendarmodel</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Module: customcalendarmodel</h1>
<section>
<header>
</header>
<article>
<div class="container-overview">
<div class="description">Description of the objects and class structure suitable for the ExtDate and ExtDateTimeFormat class extensions provided in calendrical-javascript package.The methods that the user should provide are also described here.This module file does not contain any JS code, only JSDoc specifications. User provided methods are listed as 'types' despite the JSDoc @callback tag.</div>
<dl class="details">
<dt class="tag-version">Version:</dt>
<dd class="tag-version"><ul class="dummy"><li>M2024-07-02</li></ul></dd>
<dt class="tag-author">Author:</dt>
<dd class="tag-author">
<ul>
<li>Louis A. de Fouquières https://github.com/Louis-Aime</li>
</ul>
</dd>
<dt class="tag-license">License:</dt>
<dd class="tag-license"><ul class="dummy"><li>MIT 2016-2024</li></ul></dd>
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="customcalendarmodel.js.html">customcalendarmodel.js</a>, <a href="customcalendarmodel.js.html#line1">line 1</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Type Definitions</h3>
<h4 class="name" id="~Customcalendar">Customcalendar</h4>
<div class="description">
Class model for custom calendar classes or objects, inspired by Temporal but adapted to ExtDate and ExtDateTimeFormat objects.
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">Object</span>
</li>
</ul>
<h5 class="subsection-title">Properties:</h5>
<table class="props">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>id</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">a specific name for this calendar, used by the ExtDate.toCalString method.</td>
</tr>
<tr>
<td class="name"><code>canvas</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">the name of a built-in calendar that provides the initial structure, and possible the names of months, weekdays etc. for the target calendar.</td>
</tr>
<tr>
<td class="name"><code>pldr</code></td>
<td class="type">
<span class="param-type">access</span>
</td>
<td class="description last">a "private locale data repository" document object, to use for displaying certain fields (e.g. months) with ExtDateTimeFormat.</td>
</tr>
<tr>
<td class="name"><code>eras</code></td>
<td class="type">
<span class="param-type">Array.<String></span>
</td>
<td class="description last">array of the string codes for the eras for this calendar, if eras used.</td>
</tr>
<tr>
<td class="name"><code>stringFormat</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">a string that specifies how date string is computed. Possible values are:"built-in" : compute parts of displayed string as an ordinary DateTimeFormat, and then reformat each part as stated by "partsFormat" object;"fields" : general structure of string as stated from options, but values recomputed following fields of this calendar, and modified as stated by "partsFormat";currently, this option only works with Roman-like calendars;"auto" (default): means "built-in".</td>
</tr>
<tr>
<td class="name"><code>partsFormat</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">specifies how to format each part corresponding to each date field. Each tag is the name of a part to display (e.g. "era").
<h6>Properties</h6>
<table class="props">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>current</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">'current' is the name of a date field, like year, month, day etc.
<h6>Properties</h6>
<table class="props">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>mode</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">how to find the value: "cldr" : leave value set by standard Intl.DateTimeFormat.FormatToParts (equivalent to no object for this part name)."field": put field as is; if undefined, put "". For test and debug, and for void fields."list" : (enumerable) values indicated in "source" field; if field is not a number, index to be found searching "codes"."pldr" : values to be found in an XML document which represents a "private locale data repository", to be specified as a class parameter.</td>
</tr>
<tr>
<td class="name"><code>source</code></td>
<td class="type">
<span class="param-type">access</span>
</td>
<td class="description last">the reference to the values, if mode == "list" or "pldr".</td>
</tr>
<tr>
<td class="name"><code>codes</code></td>
<td class="type">
<span class="param-type">Array.<String></span>
</td>
<td class="description last">if (mode == "list" ) and for a non-numeric field (e.g. an era), the array of codes to search for.</td>
</tr>
<tr>
<td class="name"><code>calname</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">if (mode == "pldr"), the calendar name to fetch. If not specified, "canvas".is tried out, else "id".</td>
</tr>
<tr>
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">if (mode == "pldr"), (field_value) => search_key; by default, the search key is the field value, except for weekdays of the standard 7-days week, where the keys are ['sun', 'mon' ... 'sat']; therefore, this function should be provided if an alternative week structure is specified.</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="name"><code>buildDateFromFields</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">construct a new ExtDate object from date coordinates in this calendar.</td>
</tr>
<tr>
<td class="name"><code>fieldsFromCounter</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">from a timestamp, give UTC date and hour fields.</td>
</tr>
<tr>
<td class="name"><code>counterFromFields</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">from a UTC date and time expression, compute the timestamp.</td>
</tr>
<tr>
<td class="name"><code>weekFieldsFromCounter</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">from a timestamp, give UTC date in week coordinates and hour fields.</td>
</tr>
<tr>
<td class="name"><code>counterFromWeekFields</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">from a UTC date in week coordinates and time expression, compute the timestamp.</td>
</tr>
<tr>
<td class="name"><code>solveAskedFields</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">from a set of date fields, solve any ambiguity before merging.</td>
</tr>
<tr>
<td class="name"><code>inLeapYear</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">function (fields) => (boolean): is this date in a leap year ?</td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="customcalendarmodel.js.html">customcalendarmodel.js</a>, <a href="customcalendarmodel.js.html#line12">line 12</a>
</li></ul></dd>
</dl>
<h4 class="name" id="~ExtDateType">ExtDateType</h4>
<div class="description">
Object type for the date figures using ExtDate. There is a distinction between 'numeric' fields and others.The numeric fields are all numbers, and define the date in a unique way. All custom calendars shall provide all numeric fields.Non numeric fields are not required from custom calendars.Fields may hold the date and time coordinates for any time zone.
</div>
<h5 class="subsection-title">Properties:</h5>
<table class="props">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>era</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">a short international acronym that helps resolving the complete date together with the other date fields;e.g. "BC" or "AD" in the context of the Julian calendar, that is necessary in addition to the 'year' indication; this field is not numeric.</td>
</tr>
<tr>
<td class="name"><code>year</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">a positive number that expresses the year; the era element is necessary in order to fully determine the year; this element is considered non numeric, although it is a number.</td>
</tr>
<tr>
<td class="name"><code>fullYear</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">an algebraic number that determines the year in a non ambiguous manner; the range of possible values is without hole; this is considered a numeric field.</td>
</tr>
<tr>
<td class="name"><code>month</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">month number in a year; the months of a given year are enumerated starting from 1 and without hole.this is considered a numeric field.</td>
</tr>
<tr>
<td class="name"><code>monthCode</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">(optional) a short acronym, e.g. 'M01' for the first month, or 'M06L' for the doubled sixth month or leap month after 'M06';inspired from Temporal and used with non-Unicode display applications;if this field is not defined in a custom calendar, the monthCode shall be set to the month number;</td>
</tr>
<tr>
<td class="name"><code>monthType</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">(optional) the type under which the month name should be searched for in lists, CLDR or PLDR;with lunisolar calendars, a same 'month' value can lead to different month names; this field, together with "leapMonth", helps solving such cases;if missing, ExtDateTimeFormat uses .month as monthType when searching the month name.</td>
</tr>
<tr>
<td class="name"><code>leapMonth</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last">(optional), value is "leap" indicating that the leap month version of the month name should be used;if present, ExtDateTimeFormat adds a search key before exploring CLDR or the PLDR, and also searches the PLDR for a "mark" to add before or after the month string.</td>
</tr>
<tr>
<td class="name"><code>day</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">the number of the day in the month, starting from 1 and without hole.</td>
</tr>
<tr>
<td class="name"><code>hour</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">the number of hours since the beginning of the present day, no change with respect to Date.</td>
</tr>
<tr>
<td class="name"><code>minutes</code></td>
<td class="type">
<span class="param-type">Number</span>