xref: /webtrees/resources/views/edit/reorder-media.phtml (revision aabcb63cf9c471731adf042b3450255bba1f9db6)
15229eadeSGreg Roach<?php
25229eadeSGreg Roach
35229eadeSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ReorderMediaAction;
45229eadeSGreg Roachuse Fisharebest\Webtrees\I18N;
55229eadeSGreg Roachuse Fisharebest\Webtrees\View;
65229eadeSGreg Roach
75229eadeSGreg Roach?>
8dd6b2bfcSGreg Roach
9dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
10dd6b2bfcSGreg Roach
11*aabcb63cSGreg Roach<form method="post" action="<?= e(route(ReorderMediaAction::class, ['tree' => $tree->name(), 'xref' => $individual->xref()])) ?>" class="wt-page-content">
12dd6b2bfcSGreg Roach    <?= csrf_field() ?>
1383615acfSGreg Roach
14dd6b2bfcSGreg Roach    <div class="wt-sortable-list">
158d0ebef0SGreg Roach        <?php foreach ($individual->facts(['OBJE']) as $fact) : ?>
16dd6b2bfcSGreg Roach            <div class="card mb-2 wt-sortable-item">
17905ab80aSGreg Roach                <input type="hidden" name="order[]" value="<?= $fact->id() ?>">
1875b444f7SGreg Roach                <div class="card-header">
1975b444f7SGreg Roach                    <span class="drag-handle">
206a83cfe8SGreg Roach                        <?= view('icons/drag-handle') ?>
2175b444f7SGreg Roach                    </span>
2239ca88baSGreg Roach                    <?= $fact->target()->fullName() ?>
2375b444f7SGreg Roach                </div>
24dd6b2bfcSGreg Roach                <div class="card-body">
25b2c011d7SGreg Roach                    <?= $fact->target()->displayImage(100, 100, 'contain') ?>
26dd6b2bfcSGreg Roach                </div>
27dd6b2bfcSGreg Roach            </div>
28dd6b2bfcSGreg Roach        <?php endforeach ?>
29dd6b2bfcSGreg Roach    </div>
30dd6b2bfcSGreg Roach
31dd6b2bfcSGreg Roach    <p>
32dd6b2bfcSGreg Roach        <button class="btn btn-primary" type="submit">
33d993d560SGreg Roach            <?= view('icons/save') ?>
34dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('save') ?>
35dd6b2bfcSGreg Roach        </button>
36dd6b2bfcSGreg Roach
37dd6b2bfcSGreg Roach        <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
38d993d560SGreg Roach            <?= view('icons/cancel') ?>
39dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('cancel') ?>
40dd6b2bfcSGreg Roach        </a>
41dd6b2bfcSGreg Roach    </p>
42dd6b2bfcSGreg Roach</form>
43dd6b2bfcSGreg Roach
44dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
45dd6b2bfcSGreg Roach<script>
4675b444f7SGreg Roach    new Sortable(document.querySelector(".wt-sortable-list"), {
47*aabcb63cSGreg Roach        handle: ".drag-handle",
4875b444f7SGreg Roach    });
49dd6b2bfcSGreg Roach</script>
50dd6b2bfcSGreg Roach<?php View::endpush() ?>
51