xref: /webtrees/resources/views/modules/media-list/page.phtml (revision 4991f2057a6647447a648c5d6743dab00378e98e)
1ff995987SGreg Roach<?php
2ff995987SGreg Roach
3ff995987SGreg Roachuse Fisharebest\Webtrees\Auth;
4ff995987SGreg Roachuse Fisharebest\Webtrees\I18N;
506a438b4SGreg Roachuse Fisharebest\Webtrees\Media;
6455a30feSGreg Roachuse Fisharebest\Webtrees\MediaFile;
706a438b4SGreg Roachuse Fisharebest\Webtrees\Module\ModuleListInterface;
8455a30feSGreg Roachuse Fisharebest\Webtrees\Registry;
9*4991f205SGreg Roachuse Fisharebest\Webtrees\Services\LinkedRecordService;
10455a30feSGreg Roachuse Fisharebest\Webtrees\Tree;
1106a438b4SGreg Roachuse Illuminate\Support\Collection;
12f7cf8a15SGreg Roachuse League\Flysystem\FilesystemOperator;
1306a438b4SGreg Roach
1406a438b4SGreg Roach/**
1506a438b4SGreg Roach * @var int                   $count
16f7cf8a15SGreg Roach * @var FilesystemOperator    $data_filesystem
1706a438b4SGreg Roach * @var string                $filter
1806a438b4SGreg Roach * @var string                $folder
1906a438b4SGreg Roach * @var array<string>         $folders
2006a438b4SGreg Roach * @var string                $format
2106a438b4SGreg Roach * @var array<string>         $formats
22*4991f205SGreg Roach * @var LinkedRecordService   $linked_record_service
23455a30feSGreg Roach * @var int                   $max
2436779af1SGreg Roach * @var Collection<int,Media> $media_objects
2506a438b4SGreg Roach * @var ModuleListInterface   $module
2606a438b4SGreg Roach * @var int                   $page
2706a438b4SGreg Roach * @var int                   $pages
2806a438b4SGreg Roach * @var string                $subdirs
2906a438b4SGreg Roach * @var string                $title
30455a30feSGreg Roach * @var Tree                  $tree
3106a438b4SGreg Roach */
32ff995987SGreg Roach
33ff995987SGreg Roach?>
34ff995987SGreg Roach
35ff995987SGreg Roach<h2 class="wt-page-title">
36ff995987SGreg Roach    <?= $title ?>
37ff995987SGreg Roach</h2>
38ff995987SGreg Roach
39ff995987SGreg Roach<form method="post" class="wt-page-options wt-page-options-media-list d-print-none">
40ff995987SGreg Roach    <?= csrf_field() ?>
41ff995987SGreg Roach
4289950eb4SGreg Roach    <div class="row form-group">
43ff995987SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="folder">
44ff995987SGreg Roach            <?= I18N::translate('Folder') ?>
45ff995987SGreg Roach        </label>
46ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
47ff995987SGreg Roach            <?= view('components/select', ['name' => 'folder', 'selected' => $folder, 'options' => $folders]) ?>
48ff995987SGreg Roach            <?= view('components/checkbox-inline', ['label' => /* I18N: Label for check-box */ I18N::translate('Include subfolders'), 'name' => 'subdirs', 'checked' => $subdirs === '1']) ?>
49ff995987SGreg Roach        </div>
50ff995987SGreg Roach
51ff995987SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="max">
52ff995987SGreg Roach            <?= I18N::translate('Media objects per page') ?>
53ff995987SGreg Roach        </label>
54ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
55f91b18ebSGreg Roach            <?= view('components/select-number', ['name' => 'max', 'selected' => $max, 'options' => [10, 20, 30, 40, 50, 75, 100, 150, 200]]) ?>
56ff995987SGreg Roach        </div>
57ff995987SGreg Roach    </div>
58ff995987SGreg Roach
5989950eb4SGreg Roach    <div class="row form-group">
6006a438b4SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="format">
61ff995987SGreg Roach            <?= I18N::translate('Type') ?>
62ff995987SGreg Roach        </label>
6306a438b4SGreg Roach
64ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
6506a438b4SGreg Roach            <?= view('components/select', ['name' => 'format', 'id' => 'format', 'selected' => $format, 'options' => ['' => ''] + $formats]) ?>
66ff995987SGreg Roach        </div>
67ff995987SGreg Roach
6806a438b4SGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label"></div>
6906a438b4SGreg Roach
7006a438b4SGreg Roach        <div class="col-sm-3 wt-page-options-value"></div>
71ff995987SGreg Roach    </div>
72ff995987SGreg Roach
7389950eb4SGreg Roach    <div class="row form-group">
74ff995987SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="filter">
75ff995987SGreg Roach            <?= I18N::translate('Search filters') ?>
76ff995987SGreg Roach        </label>
77ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
78ff995987SGreg Roach            <input type="text" class="form-control" name="filter" id="filter" value="<?= e($filter) ?>">
79ff995987SGreg Roach        </div>
80ff995987SGreg Roach
8106a438b4SGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label"></div>
8206a438b4SGreg Roach
83ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
8406a438b4SGreg Roach            <button type="submit" name="go" value="1" class="btn btn-primary">
85ff995987SGreg Roach                <?= /* I18N: A button label. */ I18N::translate('search') ?>
86ff995987SGreg Roach            </button>
8706a438b4SGreg Roach            <a class="btn btn-secondary" href="<?= e($module->listUrl($tree)) ?>">
88ff995987SGreg Roach                <?= /* I18N: A button label. */ I18N::translate('reset') ?>
89ff995987SGreg Roach            </a>
90ff995987SGreg Roach        </div>
91ff995987SGreg Roach    </div>
92ff995987SGreg Roach</form>
93ff995987SGreg Roach
94ff995987SGreg Roach<div class="wt-page-content">
95ff995987SGreg Roach    <p class="text-center mt-4"><?= I18N::translate('Media objects found') ?> <?= I18N::number($count) ?></p>
966e9b2106SThomas Karcher    <?php if ($media_objects->isNotEmpty()) : ?>
97ff995987SGreg Roach
9806a438b4SGreg Roach        <?= view('modules/media-list/pagination', ['module' => $module, 'page' => $page, 'pages' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $format, 'max' => $max, 'tree' => $tree]) ?>
99ff995987SGreg Roach
10061275c55SJonathan Jaubart        <div class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 g-4">
101ff995987SGreg Roach            <?php foreach ($media_objects as $n => $media_object) : ?>
10261275c55SJonathan Jaubart                <div class="col">
10361275c55SJonathan Jaubart                    <div class="card h-100">
104ff995987SGreg Roach                        <div class="card-header">
105ff995987SGreg Roach                            <h4 class="card-title">
106ff995987SGreg Roach                                <a href="<?= e($media_object->url()) ?>"><?= $media_object->fullName() ?></a>
107ff995987SGreg Roach                            </h4>
108ff995987SGreg Roach                        </div>
109ff995987SGreg Roach                        <div class="card-body">
110ff995987SGreg Roach                            <?php foreach ($media_object->mediaFiles() as $media_file) : ?>
111ff995987SGreg Roach                                <?= $media_file->displayImage(300, 200, 'contain', ['class' => 'img-fluid']) ?>
112ff995987SGreg Roach                            <?php endforeach ?>
113ff995987SGreg Roach
114455a30feSGreg Roach                            <?php $media_file = $media_object->mediaFiles()->first() ?>
115455a30feSGreg Roach                            <?php if ($media_file instanceof MediaFile): ?>
116ff995987SGreg Roach                                <p class="card-text">
117ff995987SGreg Roach                                    <?php
118ff995987SGreg Roach                                    // Show file details
119ff995987SGreg Roach                                    $mediatype = $media_file->type();
120455a30feSGreg Roach                                    if ($media_file->type() !== '') {
121455a30feSGreg Roach                                        $element = Registry::elementFactory()->make('OBJE:FILE:FORM:TYPE');
122455a30feSGreg Roach                                        echo $element->labelValue($media_file->type(), $media_object->tree());
123ff995987SGreg Roach                                    }
124b315f3e1SGreg Roach
125b315f3e1SGreg Roach                                    foreach ($media_object->facts(['SOUR']) as $fact) {
126b315f3e1SGreg Roach                                        echo view('fact-gedcom-fields', ['gedcom' => $fact->gedcom(), 'parent' => $media_object->tag(), 'tree' => $tree]);
127b315f3e1SGreg Roach                                    }
128b315f3e1SGreg Roach
129b315f3e1SGreg Roach                                    foreach ($media_object->facts(['NOTE']) as $fact) {
130b315f3e1SGreg Roach                                        echo view('fact-gedcom-fields', ['gedcom' => $fact->gedcom(), 'parent' => $media_object->tag(), 'tree' => $tree]);
131b315f3e1SGreg Roach                                    }
132b315f3e1SGreg Roach
133ff995987SGreg Roach                                    if ($media_file->isExternal()) {
134455a30feSGreg Roach                                        echo Registry::elementFactory()->make('OBJE:FILE')->labelValue($media_file->filename(), $media_object->tree());
135ff995987SGreg Roach                                    } elseif ($media_file->fileExists($data_filesystem)) {
136455a30feSGreg Roach                                        echo Registry::elementFactory()->make('OBJE:FILE:FORM')->labelValue($media_file->mimeType(), $media_object->tree());
137ff995987SGreg Roach                                        if (Auth::isEditor($tree)) {
138455a30feSGreg Roach                                            echo Registry::elementFactory()->make('OBJE:FILE')->labelValue($media_file->filename(), $media_object->tree());
139ff995987SGreg Roach                                        }
140ff995987SGreg Roach                                        if (Auth::isEditor($tree)) {
14169cdf014SGreg Roach                                            foreach ($media_file->attributes($data_filesystem) as $label => $value) {
14269cdf014SGreg Roach                                                $label = '<span class="label">' . $label . '</span>';
14369cdf014SGreg Roach                                                $value = '<span class="value">' . $value . '</span>';
14469cdf014SGreg Roach
14569cdf014SGreg Roach                                                echo '<div>' . I18N::translate(/* I18N: e.g. "Occupation: farmer" */ '%1$s: %2$s', $label, $value) . '</div>';
146ff995987SGreg Roach                                            }
147ff995987SGreg Roach                                        }
148ff995987SGreg Roach                                    } else {
1490cfb9b8cSGreg Roach                                        echo '<p class="alert alert-danger">', /* I18N: %s is a filename */ I18N::translate('The file “%s” does not exist.', e($media_file->filename())), '</p>';
150ff995987SGreg Roach                                    }
151ff995987SGreg Roach                                    ?>
152ff995987SGreg Roach                                </p>
153455a30feSGreg Roach                            <?php endif ?>
154ff995987SGreg Roach                        </div>
155ff995987SGreg Roach                        <div class="card-footer">
156*4991f205SGreg Roach                            <?php foreach ($linked_record_service->linkedIndividuals($media_object) as $record) : ?>
157ff995987SGreg Roach                                <?= view('icons/individual') ?>
158ff995987SGreg Roach                                <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a>
159ff995987SGreg Roach                                <br>
160ff995987SGreg Roach                            <?php endforeach ?>
161ff995987SGreg Roach
162*4991f205SGreg Roach                            <?php foreach ($linked_record_service->linkedFamilies($media_object) as $record) : ?>
163ff995987SGreg Roach                                <?= view('icons/family') ?>
164ff995987SGreg Roach                                <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a>
165ff995987SGreg Roach                                <br>
166ff995987SGreg Roach                            <?php endforeach ?>
167ff995987SGreg Roach
168*4991f205SGreg Roach                            <?php foreach ($linked_record_service->linkedSources($media_object) as $record) : ?>
169ff995987SGreg Roach                                <?= view('icons/source') ?>
170ff995987SGreg Roach                                <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a>
171ff995987SGreg Roach                                <br>
172ff995987SGreg Roach                            <?php endforeach ?>
173ff995987SGreg Roach                        </div>
174ff995987SGreg Roach                    </div>
175ff995987SGreg Roach                </div>
176ff995987SGreg Roach            <?php endforeach ?>
177ff995987SGreg Roach        </div>
178ff995987SGreg Roach
17906a438b4SGreg Roach        <?= view('modules/media-list/pagination', ['module' => $module, 'page' => $page, 'pages' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $format, 'max' => $max, 'tree' => $tree]) ?>
180ff995987SGreg Roach    <?php endif ?>
181ff995987SGreg Roach</div>
182