diff --git a/public/assets/seria.css b/public/assets/seria.css index 35fffc9..76ddef9 100644 --- a/public/assets/seria.css +++ b/public/assets/seria.css @@ -7,13 +7,13 @@ } html, -body, -.wrapper { +body { width: 100%; height: 100%; } .wrapper { + min-height: 100%; font: 12px/20px Verdana, Geneva, 'Dejavu Sans', Arial, Helvetica, sans-serif; background: #111; color: #fff; @@ -332,6 +332,31 @@ body, line-height: 14px; } +.info-files { + background: #161616; + overflow: hidden; + width: 100%; + box-shadow: 0 1px 2px rgba(0, 0, 0, .6); + text-shadow: 0 1px 4px #000; + align-items: center; + padding: 2px; + margin-top: 2px; +} +.info-files-header { + font-size: 1.4em; + padding: 5px 10px; +} +.info-files-content { + padding: 5px 10px; + overflow: auto; + max-height: 300px; +} +.info-files-item { + font-family: monospace; + font-size: 1.1em; + line-height: 1.5em; +} + .profile {} .profile-header { diff --git a/src/Torrents/TorrentInfoRouting.php b/src/Torrents/TorrentInfoRouting.php index 90b4b8b..d3b6c00 100644 --- a/src/Torrents/TorrentInfoRouting.php +++ b/src/Torrents/TorrentInfoRouting.php @@ -88,7 +88,9 @@ class TorrentInfoRouting extends RouteHandler { $completePeers = $peers->countCompletePeers($this->torrentInfo); $incompletePeers = $peers->countIncompletePeers($this->torrentInfo); - $totalFileSize = $this->torrentsCtx->getFiles()->countTotalSize($this->torrentInfo); + $files = $this->torrentsCtx->getFiles(); + $totalFileSize = $files->countTotalSize($this->torrentInfo); + $fileList = $files->getFiles($this->torrentInfo); return $this->templating->render('info', [ 'torrent_info' => $this->torrentInfo, @@ -96,6 +98,7 @@ class TorrentInfoRouting extends RouteHandler { 'torrent_total_size' => $totalFileSize, 'torrent_complete_peers' => $completePeers, 'torrent_incomplete_peers' => $incompletePeers, + 'torrent_files' => $fileList, ]); } diff --git a/templates/info.twig b/templates/info.twig index 9b50f85..704c426 100644 --- a/templates/info.twig +++ b/templates/info.twig @@ -72,6 +72,15 @@
{{ torrent_info.comment }}
{% endif %} + +
+
Files
+
+ {% for file in torrent_files %} +
{{ file.path }} ({{ file.length|format_filesize }})
+ {% endfor %} +
+