2020-08-26 15:22:14 -04:00
|
|
|
<?php use function Aviat\AnimeClient\colNotEmpty; ?>
|
2018-08-10 20:09:28 -04:00
|
|
|
<main class="media-list">
|
2017-02-15 16:30:14 -05:00
|
|
|
<?php if ($auth->isAuthenticated()): ?>
|
2016-03-07 14:37:49 -05:00
|
|
|
<a class="bracketed" href="<?= $url->generate('anime.add.get') ?>">Add Item</a>
|
2017-01-05 13:41:32 -05:00
|
|
|
<?php endif ?>
|
2015-07-02 14:04:04 -04:00
|
|
|
<?php if (empty($sections)): ?>
|
|
|
|
<h3>There's nothing here!</h3>
|
|
|
|
<?php else: ?>
|
2019-07-10 13:32:05 -04:00
|
|
|
<br />
|
|
|
|
<label>Filter: <input type='text' class='media-filter' /></label>
|
|
|
|
<br />
|
2015-06-16 11:11:35 -04:00
|
|
|
<?php foreach ($sections as $name => $items): ?>
|
|
|
|
<h2><?= $name ?></h2>
|
2017-09-14 17:33:24 -04:00
|
|
|
<?php if (empty($items)): ?>
|
|
|
|
<h3>There's nothing here!</h3>
|
|
|
|
<?php else: ?>
|
2020-04-30 15:35:32 -04:00
|
|
|
<?php
|
2020-08-26 15:22:14 -04:00
|
|
|
$hasNotes = colNotEmpty($items, 'notes');
|
2020-04-30 15:35:32 -04:00
|
|
|
?>
|
2019-07-10 13:32:05 -04:00
|
|
|
<table class='media-wrap'>
|
2017-09-14 17:33:24 -04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<?php if($auth->isAuthenticated()): ?>
|
2018-11-02 10:48:20 -04:00
|
|
|
<td class="no-border"> </td>
|
2016-01-06 11:08:56 -05:00
|
|
|
<?php endif ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
<th>Title</th>
|
|
|
|
<th>Airing Status</th>
|
|
|
|
<th>Score</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Progress</th>
|
|
|
|
<th>Rated</th>
|
2020-04-30 15:35:32 -04:00
|
|
|
<th>Attributes</th>
|
|
|
|
<?php if($hasNotes): ?><th>Notes</th><?php endif ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach($items as $item): ?>
|
|
|
|
<?php if ($item['private'] && ! $auth->isAuthenticated()) continue; ?>
|
|
|
|
<tr id="a-<?= $item['id'] ?>">
|
|
|
|
<?php if ($auth->isAuthenticated()): ?>
|
|
|
|
<td>
|
|
|
|
<a class="bracketed" href="<?= $url->generate('edit', [
|
|
|
|
'controller' => 'anime',
|
|
|
|
'id' => $item['id'],
|
|
|
|
'status' => $item['watching_status']
|
|
|
|
]) ?>">Edit</a>
|
|
|
|
</td>
|
|
|
|
<?php endif ?>
|
2019-07-10 13:32:05 -04:00
|
|
|
<td class="align-left justify">
|
2017-09-14 17:33:24 -04:00
|
|
|
<a href="<?= $url->generate('anime.details', ['id' => $item['anime']['slug']]) ?>">
|
2018-08-08 10:12:45 -04:00
|
|
|
<?= $item['anime']['title'] ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
</a>
|
2020-04-30 15:35:32 -04:00
|
|
|
<br />
|
|
|
|
<?= implode('<br />', $item['anime']['titles']) ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
</td>
|
|
|
|
<td><?= $item['airing']['status'] ?></td>
|
|
|
|
<td><?= $item['user_rating'] ?> / 10 </td>
|
2018-08-08 10:12:45 -04:00
|
|
|
<td><?= $item['anime']['show_type'] ?></td>
|
2017-09-14 17:33:24 -04:00
|
|
|
<td id="<?= $item['anime']['slug'] ?>">
|
|
|
|
Episodes: <br />
|
|
|
|
<span class="completed_number"><?= $item['episodes']['watched'] ?></span> / <span class="total_number"><?= $item['episodes']['total'] ?></span>
|
|
|
|
</td>
|
|
|
|
<td><?= $item['anime']['age_rating'] ?></td>
|
|
|
|
<td>
|
|
|
|
<?php foreach($item['anime']['streaming_links'] as $link): ?>
|
|
|
|
<?php if ($link['meta']['link'] !== FALSE): ?>
|
|
|
|
<a href="<?= $link['link'] ?>" title="Stream '<?= $item['anime']['title'] ?>' on <?= $link['meta']['name'] ?>">
|
2020-04-10 20:01:46 -04:00
|
|
|
<?= $helper->img("/public/images/{$link['meta']['image']}", [
|
2020-04-30 15:35:32 -04:00
|
|
|
'class' => 'small-streaming-logo',
|
|
|
|
'width' => 25,
|
|
|
|
'height' => 25,
|
|
|
|
'alt' => "{$link['meta']['name']} logo",
|
2020-04-10 20:01:46 -04:00
|
|
|
]) ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
</a>
|
|
|
|
<?php else: ?>
|
2020-04-10 20:01:46 -04:00
|
|
|
<?= $helper->img("/public/images/{$link['meta']['image']}", [
|
2020-04-30 15:35:32 -04:00
|
|
|
'class' => 'small-streaming-logo',
|
|
|
|
'width' => 25,
|
|
|
|
'height' => 25,
|
|
|
|
'alt' => "{$link['meta']['name']} logo",
|
2020-04-10 20:01:46 -04:00
|
|
|
]) ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
<?php endif ?>
|
|
|
|
<?php endforeach ?>
|
2020-04-30 15:35:32 -04:00
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<ul>
|
2020-05-04 16:46:27 -04:00
|
|
|
<?php if ($item['rewatched'] > 0): ?>
|
|
|
|
<?php if ($item['rewatched'] == 1): ?>
|
|
|
|
<li>Rewatched once</li>
|
|
|
|
<?php elseif ($item['rewatched'] == 2): ?>
|
|
|
|
<li>Rewatched twice</li>
|
|
|
|
<?php elseif ($item['rewatched'] == 3): ?>
|
|
|
|
<li>Rewatched thrice</li>
|
|
|
|
<?php else: ?>
|
|
|
|
<li>Rewatched <?= $item['rewatched'] ?> times</li>
|
|
|
|
<?php endif ?>
|
|
|
|
<?php endif ?>
|
2020-04-30 15:35:32 -04:00
|
|
|
<?php foreach(['private','rewatching'] as $attr): ?>
|
|
|
|
<?php if($item[$attr]): ?><li><?= ucfirst($attr); ?></li><?php endif ?>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</ul>
|
2017-09-14 17:33:24 -04:00
|
|
|
</td>
|
2020-04-30 15:35:32 -04:00
|
|
|
<?php if ($hasNotes): ?><td><p><?= $escape->html($item['notes']) ?></p></td><?php endif ?>
|
2017-09-14 17:33:24 -04:00
|
|
|
</tr>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<?php endif ?>
|
2015-06-16 11:11:35 -04:00
|
|
|
<?php endforeach ?>
|
2015-07-02 14:04:04 -04:00
|
|
|
<?php endif ?>
|
2015-06-16 11:11:35 -04:00
|
|
|
</main>
|
2018-08-20 12:58:56 -04:00
|
|
|
<script defer="defer" src="<?= $urlGenerator->assetUrl('js/tables.min.js') ?>"></script>
|