xref: /webtrees/resources/views/edit/reorder-media.phtml (revision 5229eade2a8cdd1381e19f96f67fc1c8b92ca95d)
1*5229eadeSGreg Roach<?php
2*5229eadeSGreg Roach
3*5229eadeSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ReorderMediaAction;
4*5229eadeSGreg Roachuse Fisharebest\Webtrees\I18N;
5*5229eadeSGreg Roachuse Fisharebest\Webtrees\View;
6*5229eadeSGreg Roach
7*5229eadeSGreg Roach?>
8dd6b2bfcSGreg Roach
9dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
10dd6b2bfcSGreg Roach
11*5229eadeSGreg Roach<form method="post" action="<?= e(route(ReorderMediaAction::class, ['tree' => $tree->name()])) ?>" class="wt-page-content">
12dd6b2bfcSGreg Roach    <?= csrf_field() ?>
139022ab66SGreg Roach    <input type="hidden" name="tree" value="<?= e($individual->tree()->name()) ?>">
1483615acfSGreg Roach    <input type="hidden" name="xref" value="<?= e($individual->xref()) ?>">
1583615acfSGreg Roach
16dd6b2bfcSGreg Roach    <div class="wt-sortable-list">
178d0ebef0SGreg Roach        <?php foreach ($individual->facts(['OBJE']) as $fact) : ?>
18dd6b2bfcSGreg Roach            <div class="card mb-2 wt-sortable-item">
19905ab80aSGreg Roach                <input type="hidden" name="order[]" value="<?= $fact->id() ?>">
2075b444f7SGreg Roach                <div class="card-header">
2175b444f7SGreg Roach                    <span class="drag-handle">
226a83cfe8SGreg Roach                        <?= view('icons/drag-handle') ?>
2375b444f7SGreg Roach                    </span>
2439ca88baSGreg Roach                    <?= $fact->target()->fullName() ?>
2575b444f7SGreg Roach                </div>
26dd6b2bfcSGreg Roach                <div class="card-body">
27b2c011d7SGreg Roach                    <?= $fact->target()->displayImage(100, 100, 'contain') ?>
28dd6b2bfcSGreg Roach                </div>
29dd6b2bfcSGreg Roach            </div>
30dd6b2bfcSGreg Roach        <?php endforeach ?>
31dd6b2bfcSGreg Roach    </div>
32dd6b2bfcSGreg Roach
33dd6b2bfcSGreg Roach    <p>
34dd6b2bfcSGreg Roach        <button class="btn btn-primary" type="submit">
35d993d560SGreg Roach            <?= view('icons/save') ?>
36dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('save') ?>
37dd6b2bfcSGreg Roach        </button>
38dd6b2bfcSGreg Roach
39dd6b2bfcSGreg Roach        <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
40d993d560SGreg Roach            <?= view('icons/cancel') ?>
41dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('cancel') ?>
42dd6b2bfcSGreg Roach        </a>
43dd6b2bfcSGreg Roach    </p>
44dd6b2bfcSGreg Roach</form>
45dd6b2bfcSGreg Roach
46dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
47dd6b2bfcSGreg Roach<script>
4875b444f7SGreg Roach  new Sortable(document.querySelector(".wt-sortable-list"), {
4975b444f7SGreg Roach      handle: '.drag-handle'
5075b444f7SGreg Roach  });
51dd6b2bfcSGreg Roach</script>
52dd6b2bfcSGreg Roach<?php View::endpush() ?>
53