HummingBirdAnimeClient/app/views/anime/list.php

90 lines
2.9 KiB
PHP
Raw Normal View History

<main>
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
<a class="bracketed" href="<?= $url->generate('anime.add.get') ?>">Add Item</a>
<?php endif ?>
<?php if (empty($sections)): ?>
<h3>There's nothing here!</h3>
<?php else: ?>
<?php foreach ($sections as $name => $items): ?>
<h2><?= $name ?></h2>
<table>
<thead>
<tr>
2017-02-15 16:30:14 -05:00
<?php if($auth->isAuthenticated()): ?>
2016-02-01 09:49:18 -05:00
<td class="no_border">&nbsp;</td>
<?php endif ?>
<th>Title</th>
<th>Airing Status</th>
<th>Score</th>
<th>Type</th>
<th>Progress</th>
<th>Rated</th>
2017-01-13 16:49:46 -05:00
<th colspan="2">Attributes</th>
2015-10-01 16:01:23 -04:00
<th>Notes</th>
<th>Genres</th>
</tr>
</thead>
<tbody>
<?php foreach($items as $item): ?>
2017-02-15 16:30:14 -05:00
<?php if ($item['private'] && ! $auth->isAuthenticated()) continue; ?>
2015-10-06 11:38:20 -04:00
<tr id="a-<?= $item['id'] ?>">
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
2016-01-04 10:53:03 -05:00
<td>
<a class="bracketed" href="<?= $urlGenerator->url("/anime/edit/{$item['id']}/{$item['watching_status']}") ?>">Edit</a>
</td>
<?php endif ?>
2016-02-01 09:49:18 -05:00
<td class="justify">
2016-04-08 11:56:17 -04:00
<a href="<?= $url->generate('anime.details', ['id' => $item['anime']['slug']]) ?>">
<?= array_shift($item['anime']['titles']) ?>
</a>
<?php foreach($item['anime']['titles'] as $title): ?>
<br /><?= $title ?>
<?php endforeach ?>
</td>
<td><?= $item['airing']['status'] ?></td>
2015-10-01 16:01:23 -04:00
<td><?= $item['user_rating'] ?> / 10 </td>
<td><?= $item['anime']['type'] ?></td>
<td id="<?= $item['anime']['slug'] ?>">
2016-01-04 10:53:03 -05:00
Episodes: <br />
<span class="completed_number"><?= $item['episodes']['watched'] ?></span>&nbsp;/&nbsp;<span class="total_number"><?= $item['episodes']['total'] ?></span>
</td>
<td><?= $item['anime']['age_rating'] ?></td>
2016-01-04 10:53:03 -05:00
<td>
<ul>
2016-01-06 11:08:56 -05:00
<?php if ($item['rewatched'] > 0): ?>
<li>Rewatched <?= $item['rewatched'] ?> time(s)</li>
2016-01-06 11:08:56 -05:00
<?php endif ?>
2016-01-04 10:53:03 -05:00
<?php foreach(['private','rewatching'] as $attr): ?>
<?php if($item[$attr]): ?>
<li><?= ucfirst($attr); ?></li>
2016-01-04 10:53:03 -05:00
<?php endif ?>
<?php endforeach ?>
</ul>
2016-01-04 10:53:03 -05:00
</td>
2017-01-13 16:49:46 -05:00
<td>
<?php foreach($item['anime']['streaming_links'] as $link): ?>
<?php if ($link['meta']['link'] !== FALSE): ?>
<a href="<?= $link['link'] ?>">
<?= $link['meta']['logo'] ?>
</a>
<?php else: ?>
<?= $link['meta']['logo'] ?>
<?php endif ?>
<?php endforeach ?>
</td>
2016-01-04 10:53:03 -05:00
<td>
<p><?= $escape->html($item['notes']) ?></p>
</td>
<td class="align_left">
<?php sort($item['anime']['genres']) ?>
<?= implode(', ', $item['anime']['genres']) ?>
</td>
</tr>
<?php endforeach ?>
</tbody>
</table>
<?php endforeach ?>
<?php endif ?>
</main>
2017-02-15 16:30:14 -05:00
<?php $group = ($auth->isAuthenticated()) ? 'table_edit' : 'table' ?>
2017-02-15 15:56:10 -05:00
<script defer="defer" src="<?= $urlGenerator->assetUrl("js.php/g/{$group}") ?>"></script>