summaryrefslogtreecommitdiff
path: root/resources/views/modules/timeline-chart/chart.phtml
blob: 3cc349edebdd82c92673747f0dbcb7969359b5a9 (plain)
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
<?php use Fisharebest\Webtrees\Date; ?>
<?php use Fisharebest\Webtrees\Family; ?>
<?php use Fisharebest\Webtrees\Functions\FunctionsDate; ?>
<?php use Fisharebest\Webtrees\Functions\FunctionsPrint; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<?php use Fisharebest\Webtrees\Individual; ?>
<?php use Fisharebest\Webtrees\Theme; ?>

<script>
  var bottomy     = <?= ($topyear - $baseyear) * $scale - 5 ?>;
  var topy        = 0;
  var baseyear    = <?= $baseyear - (25 / $scale) ?>;
  var birthyears  = [];
  var birthmonths = [];
  var birthdays   = [];
    <?php
    foreach ($individuals as $c => $indi) {
        if (!empty($birthyears[$indi->xref()])) {
            echo 'birthyears[' . $c . ']=' . $birthyears[$indi->xref()] . ';';
        }
        if (!empty($birthmonths[$indi->xref()])) {
            echo 'birthmonths[' . $c . ']=' . $birthmonths[$indi->xref()] . ';';
        }
        if (!empty($birthdays[$indi->xref()])) {
            echo 'birthdays[' . $c . ']=' . $birthdays[$indi->xref()] . ';';
        }
    }
    ?>

  var bheight = <?= $bheight ?>;
  var scale   = <?= $scale ?>;

  timeline_chart_div              = document.getElementById("timeline_chart");
  timeline_chart_div.style.height = '<?= 0 + ($topyear - $baseyear) * $scale * 1.1 ?>px';

  /**
   * Find the position of an event, relative to an element.
   *
   * @param event
   * @param element
   */
  function clickPosition(event, element) {
    var xpos = event.pageX;
    var ypos = event.pageY;

    if (element.offsetParent) {
      do {
        xpos -= element.offsetLeft;
        ypos -= element.offsetTop;
      } while (element = element.offsetParent);
    }

    return {x: xpos, y: ypos}
  }

  var ob        = null;
  var Y         = 0;
  var X         = 0;
  var oldx      = 0;
  var oldlinew  = 0;
  var personnum = 0;
  var type      = 0;
  var boxmean   = 0;

  function ageCursorMouseDown(divbox, num) {
    ob        = divbox;
    personnum = num;
    type      = 0;
    X         = ob.offsetLeft;
    Y         = ob.offsetTop;
  }

  function factMouseDown(divbox, num, mean) {
    ob        = divbox;
    personnum = num;
    boxmean   = mean;
    type      = 1;
    oldx      = ob.offsetLeft;
    oldlinew  = 0;
  }

  document.onmousemove = function (e) {
    var textDirection = document.documentElement.dir;

    if (ob === null) {
      return true;
    }
    var newx = 0;
    var newy = 0;
    if (type === 0) {
      // age boxes
      newPosition = clickPosition(e, document.getElementById("timeline_chart"));
      newx        = newPosition.x;
      newy        = newPosition.y;

      if (oldx === 0) {
        oldx = newx;
      }
      if (newy < topy - bheight / 2) {
        newy = topy - bheight / 2;
      }
      if (newy > bottomy) {
        newy = bottomy - 1;
      }
      ob.style.top = newy + "px";
      var tyear    = (newy + bheight - 4 - topy + scale) / scale + baseyear;
      var year     = Math.floor(tyear);
      var month    = Math.floor(tyear * 12 - year * 12);
      var day      = Math.floor(tyear * 365 - year * 365 - month * 30);
      var mstamp   = year * 365 + month * 30 + day;
      var bdstamp  = birthyears[personnum] * 365 + birthmonths[personnum] * 30 + birthdays[personnum];
      var daydiff  = mstamp - bdstamp;
      var ba       = 1;
      if (daydiff < 0) {
        ba      = -1;
        daydiff = (bdstamp - mstamp);
      }
      var yage = Math.floor(daydiff / 365);
      var mage = Math.floor((daydiff - yage * 365) / 30);
      var dage = Math.floor(daydiff - yage * 365 - mage * 30);
      if (dage < 0) {
        mage = mage - 1;
      }
      if (dage < -30) {
        dage = 30 + dage;
      }
      if (mage < 0) {
        yage = yage - 1;
      }
      if (mage < -11) {
        mage = 12 + mage;
      }
      var yearform       = document.getElementById('yearform' + personnum);
      var ageform        = document.getElementById('ageform' + personnum);
      yearform.innerHTML = year + "      " + month + " <?= mb_substr(I18N::translate('Month:'), 0, 1) ?>   " + day + " <?= mb_substr(I18N::translate('Day:'), 0, 1) ?>";
      if (ba * yage > 1 || ba * yage < -1 || ba * yage === 0) {
        ageform.innerHTML = (ba * yage) + " <?= mb_substr(I18N::translate('years'), 0, 1) ?>   " + (ba * mage) + " <?= mb_substr(I18N::translate('Month:'), 0, 1) ?>   " + (ba * dage) + " <?= mb_substr(I18N::translate('Day:'), 0, 1) ?>";
      } else {
        ageform.innerHTML = (ba * yage) + " <?= mb_substr(I18N::translate('Year:'), 0, 1) ?>   " + (ba * mage) + " <?= mb_substr(I18N::translate('Month:'), 0, 1) ?>   " + (ba * dage) + " <?= mb_substr(I18N::translate('Day:'), 0, 1) ?>";
      }
      var line = document.getElementById('ageline' + personnum);
      var temp = newx - oldx;

      if (textDirection === 'rtl') {
        temp = temp * -1;
      }
      line.style.width = (line.width + temp) + "px";
      oldx             = newx;
      return false;
    } else {
      // fact boxes
      var linewidth;
      newPosition = clickPosition(e, document.getElementById("timeline_chart"));
      newx        = newPosition.x;
      newy        = newPosition.y;
      if (oldx === 0) {
        oldx = newx;
      }
      linewidth = e.pageX;

      // get diagnal line box
      var dbox = document.getElementById('dbox' + personnum);
      var etopy;
      var ebottomy;
      // set up limits
      if (boxmean - 175 < topy) {
        etopy = topy;
      } else {
        etopy = boxmean - 175;
      }
      if (boxmean + 175 > bottomy) {
        ebottomy = bottomy;
      } else {
        ebottomy = boxmean + 175;
      }
      // check if in the bounds of the limits
      if (newy < etopy) {
        newy = etopy;
      }
      if (newy > ebottomy) {
        newy = ebottomy;
      }
      // calculate the change in Y position
      var dy = newy - ob.offsetTop;
      // check if we are above the starting point and switch the background image

      if (newy < boxmean) {
        if (textDirection === 'rtl') {
          dbox.style.backgroundImage    = "url('<?= Theme::theme()->parameter('image-dline2') ?>')";
          dbox.style.backgroundPosition = "0% 0%";
        } else {
          dbox.style.backgroundImage    = "url('<?= Theme::theme()->parameter('image-dline') ?>')";
          dbox.style.backgroundPosition = "0% 100%";
        }
        dy             = -dy;
        dbox.style.top = (newy + bheight / 3) + "px";
      } else {
        if (textDirection === 'rtl') {
          dbox.style.backgroundImage    = "url('<?= Theme::theme()->parameter('image-dline') ?>')";
          dbox.style.backgroundPosition = "0% 100%";
        } else {
          dbox.style.backgroundImage    = "url('<?= Theme::theme()->parameter('image-dline2') ?>')";
          dbox.style.backgroundPosition = "0% 0%";
        }

        dbox.style.top = (boxmean + bheight / 3) + "px";
      }
      // the new X posistion moves the same as the y position
      if (textDirection === 'rtl') {
        newx = dbox.offsetRight + Math.abs(newy - boxmean);
      } else {
        newx = dbox.offsetLeft + Math.abs(newy - boxmean);
      }
      // set the X position of the box
      if (textDirection === 'rtl') {
        ob.style.right = newx + "px";
      } else {
        ob.style.left = newx + "px";
      }
      // set new top positions
      ob.style.top     = newy + "px";
      // get the width for the diagnal box
      var newwidth     = (ob.offsetLeft - dbox.offsetLeft);
      // set the width
      dbox.style.width = newwidth + "px";
      if (textDirection === 'rtl') {
        dbox.style.right = (dbox.offsetRight - newwidth) + 'px';
      }
      dbox.style.height = newwidth + "px";
      // change the line width to the change in the mouse X position
      line              = document.getElementById('boxline' + personnum);
      if (oldlinew !== 0) {
        line.width = line.width + (linewidth - oldlinew);
      }
      oldlinew = linewidth;
      oldx     = newx;
      return false;
    }
  };

  document.onmouseup = function () {
    ob   = null;
    oldx = 0;
  }
</script>

<div id="timeline_chart">
    <!-- print the timeline line image -->
    <div id="line" style="position:absolute; <?= I18N::direction() === 'ltr' ? 'left:22px;' : 'right:22px;' ?> top:0;">
        <img src="<?= Theme::theme()->parameter('image-vline') ?>" width="3" height="<?= 0 + ($topyear - $baseyear) * $scale ?>">
    </div>

    <!-- print divs for the grid -->
    <div id="scale<?= e($baseyear) ?>" style="position:absolute; <?= I18N::direction() === 'ltr' ? 'left' : 'right' ?>:0; top:-5px; font-size: 7pt; text-align: <?= I18N::direction() === 'ltr' ? 'left' : 'right' ?>;">
        <?= $baseyear ?>
    </div>
    <?php
    // at a scale of 25 or higher, show every year
    $mod = 25 / $scale;
    if ($mod < 1) {
        $mod = 1;
    }
    for ($i = $baseyear + 1; $i < $topyear; $i++) {
        if ($i % $mod === 0) {
            echo '<div id="scale' . $i . '" style="position:absolute; ' . (I18N::direction() === 'ltr' ? 'left:0;' : 'right:0;') . ' top:' . ((($i - $baseyear) * $scale) - $scale / 2) . 'px; font-size: 7pt; text-align:' . (I18N::direction() === 'ltr' ? 'left' : 'right') . ';">';
            echo $i;
            echo '</div>';
        }
    }
    echo '';
    ?>
    <div id="scale<?= e($topyear) ?>" style="position:absolute; <?= I18N::direction() === 'ltr' ? 'left' : 'right' ?>:0; top:<?= ($topyear - $baseyear) * $scale ?>px; font-size: 7pt; text-align:<?= I18N::direction() === 'ltr' ? 'left' : 'right' ?>;">
        <?= e($topyear) ?>
    </div>

    <?php foreach ($indifacts as $factcount => $event) : ?>
        <?php
        $desc     = $event->value();
        $gdate    = $event->date();
        $date     = $gdate->minimumDate();
        $date     = $date->convertToCalendar('gregorian');
        $year     = $date->year();
        $month    = max(1, $date->month());
        $day      = max(1, $date->day());
        $xoffset  = 0 + 22;
        $yoffset  = 0 + (($year - $baseyear) * $scale) - ($scale);
        $yoffset  = $yoffset + (($month / 12) * $scale);
        $yoffset  = $yoffset + (($day / 30) * ($scale / 12));
        $yoffset  = (int) ($yoffset);
        $place    = (int) ($yoffset / $bheight);
        $i        = 1;
        $j        = 0;
        $tyoffset = 0;
        while (isset($placements[$place])) {
            if ($i === $j) {
                $tyoffset = $bheight * $i;
                $i++;
            } else {
                $tyoffset = -1 * $bheight * $j;
                $j++;
            }
            $place = (int) (($yoffset + $tyoffset) / $bheight);
        }
        $yoffset            += $tyoffset;
        $xoffset            += abs($tyoffset);
        $placements[$place] = $yoffset;

        echo "<div id=\"fact$factcount\" style=\"position:absolute; " . (I18N::direction() === 'ltr' ? 'left: ' . ($xoffset) : 'right: ' . ($xoffset)) . 'px; top:' . ($yoffset) . 'px; font-size: 8pt; height: ' . ($bheight) . "px;\" onmousedown=\"factMouseDown(this, '" . $factcount . "', " . ($yoffset - $tyoffset) . ');">';
        echo '<table cellspacing="0" cellpadding="0" border="0" style="cursor: hand;"><tr><td>';
        echo '<img src="' . Theme::theme()->parameter('image-hline') . '" name="boxline' . $factcount . '" id="boxline' . $factcount . '" height="3" width="10" style="padding-';
        if (I18N::direction() === 'ltr') {
            echo 'left: 3px;">';
        } else {
            echo 'right: 3px;">';
        }

        $col = array_search($event->record(), $individuals);
        if ($col === false) {
            // Marriage event - use the color of the husband
            $col = array_search($event->record()->getHusband(), $individuals);
        }
        if ($col === false) {
            // Marriage event - use the color of the wife
            $col = array_search($event->record()->getWife(), $individuals);
        }
        $col = $col % 6;
        echo '</td><td class="person' . $col . '">';
        if (count($individuals) > 6) {
            // We only have six colours, so show naes if more than this number
            echo $event->record()->getFullName() . ' — ';
        }
        $record = $event->record();
        echo $event->label();
        echo ' — ';
        if ($record instanceof Individual) {
            echo FunctionsPrint::formatFactDate($event, $record, false, false);
        } elseif ($record instanceof Family) {
            echo $gdate->display();
            if ($record->getHusband() && $record->getHusband()->getBirthDate()->isOK()) {
                $ageh = FunctionsDate::getAgeAtEvent(Date::getAgeGedcom($record->getHusband()->getBirthDate(), $gdate));
            } else {
                $ageh = null;
            }
            if ($record->getWife() && $record->getWife()->getBirthDate()->isOK()) {
                $agew = FunctionsDate::getAgeAtEvent(Date::getAgeGedcom($record->getWife()->getBirthDate(), $gdate));
            } else {
                $agew = null;
            }
            if ($ageh && $agew) {
                echo '<span class="age"> ', I18N::translate('Husband’s age'), ' ', $ageh, ' ', I18N::translate('Wife’s age'), ' ', $agew, '</span>';
            } elseif ($ageh) {
                echo '<span class="age"> ', I18N::translate('Age'), ' ', $ageh, '</span>';
            } elseif ($agew) {
                echo '<span class="age"> ', I18N::translate('Age'), ' ', $ageh, '</span>';
            }
        }
        echo ' ' . e($desc);
        if (!$event->place()->isEmpty()) {
            echo ' — ' . $event->place()->getShortName();
        }
        // Print spouses names for family events
        if ($event->record() instanceof Family) {
            echo ' — <a href="', e($event->record()->url()), '">', $event->record()->getFullName(), '</a>';
        }
        echo '</td></tr></table>';
        echo '</div>';
        if (I18N::direction() === 'ltr') {
            $img  = 'image-dline2';
            $ypos = '0%';
        } else {
            $img  = 'image-dline';
            $ypos = '100%';
        }
        $dyoffset = ($yoffset - $tyoffset) + $bheight / 3;
        if ($tyoffset < 0) {
            $dyoffset = $yoffset + $bheight / 3;
            if (I18N::direction() === 'ltr') {
                $img  = 'image-dline';
                $ypos = '100%';
            } else {
                $img  = 'image-dline2';
                $ypos = '0%';
            }
        }
        ?>

        <!-- diagonal line -->
        <div id="dbox<?= $factcount ?>" style="position:absolute; <?= (I18N::direction() === 'ltr' ? 'left: ' . (0 + 25) : 'right: ' . (0 + 25)) ?>px; top:<?= ($dyoffset) ?>px; font-size: 8pt; height: <?= abs($tyoffset) ?>px; width: <?= abs($tyoffset) ?>px; background-image: url('<?= Theme::theme()->parameter($img) ?>'); background-position: 0% <?= $ypos ?>;">
        </div>
    <?php endforeach ?>

    <!-- age cursors -->
    <?php foreach ($individuals as $p => $indi) : ?>
        <?php $ageyoffset = 0 + ($bheight * $p); ?>
        <div id="agebox<?= $p ?>" style="cursor:move; position:absolute; <?= I18N::direction() === 'ltr' ? 'left:20px;' : 'right:20px;' ?> top:<?= $ageyoffset ?>px; height:<?= $bheight ?>px; display:none;" onmousedown="ageCursorMouseDown(this, <?= $p ?>);">
            <table cellspacing="0" cellpadding="0">
                <tr>
                    <td>
                        <img src="<?= Theme::theme()->parameter('image-hline') ?>" name="ageline<?= $p ?>" id="ageline<?= $p ?>" width="25" height="3">
                    </td>
                    <td>
                        <?php if (!empty($birthyears[$indi->xref()])) : ?>
                            <?php $tyear = round(($ageyoffset + ($bheight / 2)) / $scale) + $baseyear; ?>
                            <table class="person<?= $p % 6 ?>" style="cursor: hand;">
                                <tr>
                                    <td>
                                        <?= I18N::translate('Year:') ?>
                                        <span id="yearform<?= $p ?>" class="field">
                                            <?= $tyear ?>
                                        </span>
                                    </td>
                                    <td>
                                        (<?= I18N::translate('Age') ?> <span id="ageform<?= $p ?>" class="field"><?= $tyear - $birthyears[$indi->xref()] ?></span>)
                                    </td>
                                </tr>
                            </table>
                        <?php endif ?>
                    </td>
                </tr>
            </table>
            <br>
            <br>
            <br>
        </div>
        <br>
        <br>
        <br>
        <br>
    <?php endforeach ?>
</div>