HummingBirdAnimeClient/app/views/manga/cover.php

103 lines
3.2 KiB
PHP
Raw Normal View History

2018-08-10 20:09:28 -04:00
<main class="media-list">
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
2017-03-30 16:16:40 -04:00
<a class="bracketed" href="<?= $url->generate('manga.add.get') ?>">Add Item</a>
<?php endif ?>
<?php if (empty($sections)): ?>
<h3>There's nothing here!</h3>
<?php else: ?>
<br />
<label>Filter: <input type='text' class='media-filter' /></label>
<br />
<?php foreach ($sections as $name => $items): ?>
2017-09-14 17:33:24 -04:00
<?php if (empty($items)): ?>
<section class="status">
<h2><?= $escape->html($name) ?></h2>
<h3>There's nothing here!</h3>
</section>
<?php else: ?>
<section class="status">
2015-09-17 23:11:18 -04:00
<h2><?= $escape->html($name) ?></h2>
<section class="media-wrap">
<?php foreach($items as $item): ?>
<article class="media" data-kitsu-id="<?= $item['id'] ?>" data-mal-id="<?= $item['mal_id'] ?>">
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
<div class="edit-buttons" hidden>
<button class="plus-one-chapter">+1 Chapter</button>
<?php /* <button class="plus-one-volume">+1 Volume</button> */ ?>
</div>
<?php endif ?>
2018-11-01 22:01:09 -04:00
<?= $helper->picture("images/manga/{$item['manga']['id']}.webp") ?>
<div class="name">
2016-04-14 17:51:00 -04:00
<a href="<?= $url->generate('manga.details', ['id' => $item['manga']['slug']]) ?>">
2018-08-08 13:05:38 -04:00
<?= $escape->html($item['manga']['title']) ?>
2018-11-01 22:01:09 -04:00
<?php foreach($item['manga']['titles'] as $title): ?>
<br /><small><?= $title ?></small>
<?php endforeach ?>
</a>
</div>
<div class="table">
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
<div class="row">
<span class="edit">
2017-03-30 16:16:40 -04:00
<a class="bracketed"
title="Edit information about this manga"
href="<?= $url->generate('edit', [
'controller' => 'manga',
'id' => $item['id'],
'status' => $name
]) ?>">
Edit
</a>
</span>
</div>
<?php endif ?>
<div class="row">
2018-09-27 16:45:12 -04:00
<div><?= $item['manga']['type'] ?></div>
<div class="user-rating">Rating: <?= $item['user_rating'] ?> / 10</div>
</div>
2017-03-30 14:50:25 -04:00
<?php if ($item['rereading']): ?>
<div class="row">
<?php foreach(['rereading'] as $attr): ?>
<?php if($item[$attr]): ?>
<span class="item-<?= $attr ?>"><?= ucfirst($attr) ?></span>
<?php endif ?>
<?php endforeach ?>
</div>
<?php endif ?>
<?php if ($item['reread'] > 0): ?>
<div class="row">
2020-05-05 19:12:17 -04:00
<?php if ($item['reread'] == 1): ?>
<div>Reread once</div>
<?php elseif ($item['reread'] == 2): ?>
<div>Reread twice</div>
<?php elseif ($item['reread'] == 3): ?>
<div>Reread thrice</div>
<?php else: ?>
<div>Reread <?= $item['reread'] ?> times</div>
<?php endif ?>
2017-03-30 14:50:25 -04:00
</div>
<?php endif ?>
<div class="row">
<div class="chapter_completion">
2015-10-01 16:01:23 -04:00
Chapters: <span class="chapters_read"><?= $item['chapters']['read'] ?></span> /
<span class="chapter_count"><?= $item['chapters']['total'] ?></span>
</div>
2018-08-13 15:13:20 -04:00
<?php /* </div>
<div class="row"> */ ?>
<div class="volume_completion">
2017-01-04 13:16:58 -05:00
Volumes: <span class="volume_count"><?= $item['volumes']['total'] ?></span>
</div>
</div>
</div>
</article>
<?php endforeach ?>
</section>
</section>
2017-09-14 17:33:24 -04:00
<?php endif ?>
<?php endforeach ?>
<?php endif ?>
</main>