Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

More frontend shit (#731)

* Torrent Mass Edit Api (WIP)

* Torrents can be deleted in mass from frontend with api post request
* Torrents status can be edited from frontend with api post request
-- Look to function doc for more info on how to use it

It is a WIP so it might not work =D

* Finished Mass mod Api

As per suggestion of @yiiTT in #720, I added:
* Changing torrents category
* Deletion of reports with deletion of a torrent
* Changing owner of multiple torrents

Commit also add some new translation strings.

* Make some changes

* Reports can now be cleared for the torrents selected without having to
delete them
* Users with no admin rights can't delete reports

* Fix moveto to status

moveto deprecated in api

* Tested and works!

Changes:
* Updates only the colomns of torrent table
* Moved categories config in config/torrents.go

* Make sort arrows look a lot nicer

* Add search icon into search input

* Work on navbar, fix it on mobile view

* Hide mascot on mobile views

* Make torrent view work on mobile + minor improvements

* Add status and various things to view

* ACTUALLY FINISH VIEW PAGE

* Forgot this file in last commit

* wow user profile was easy

* Work on profile page

* remove language option

* SEO improvement

* forgot the fucking bracket

* make description more weeb

* add irony

* add better irony

* Update README.md

* Make sort arrows look a lot nicer

* Add search icon into search input

* Work on navbar, fix it on mobile view

* Hide mascot on mobile views

* Make torrent view work on mobile + minor improvements

* Add status and various things to view

* ACTUALLY FINISH VIEW PAGE

* wow user profile was easy

* Work on profile page

* remove language option

* SEO improvement

* forgot the fucking bracket

* make description more weeb

* add irony

* add better irony
Cette révision appartient à :
kipukun 2017-05-24 20:20:30 -04:00 révisé par akuma06
Parent 6edc68fe22
révision 424633631c
12 fichiers modifiés avec 112 ajouts et 61 suppressions

Voir le fichier

@ -47,9 +47,9 @@ tr:nth-child(even) { background: hsla(198, 5%, 90%, 0.2); }
td.tr-se { color: #22A243; }
td.tr-le { color: #E84C4C; }
.torrent-info.aplus { background: hsla(200, 100%, 50%, 0.2) !important; }
.torrent-info.trusted { background: hsla(100, 100%, 50%, 0.2) !important; }
.torrent-info.remake { background: hsla(30, 100%, 50%, 0.2) !important; }
.aplus { background: hsla(200, 100%, 50%, 0.2) !important; }
.trusted { background: hsla(100, 100%, 50%, 0.2) !important; }
.remake { background: hsla(30, 100%, 50%, 0.2) !important; }
.pagination .active { background: #cbbdd7; color: #444; }

Voir le fichier

@ -114,6 +114,11 @@ select.form-input + .select-icon {
.form-input.search-box + .search-icon {
margin-left: -2rem;
padding: 5px 10px;
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAQAAAADpb+tAAAAjUlEQVQIHQXBoU1DYQCAwXviUQw4LHlYJAnBYQmqW3wdpkk3wLAEAxCSCkLSFSowBIFCIH7uQCfd9dgCALrvr9Fo9NopoItG21ZNLR17A/TcHqCl0RXopw1AU6MH0KEdQKtGN6B1o0ugbb/NoKmXRrs27Rt9dw5oat2hr5667r3PzgAANPfREQAAzd3yD3GyOPKUaUBTAAAAAElFTkSuQmCC")
no-repeat
center center;
border: none;
vertical-align: middle;
}
.header .h-user {
@ -240,7 +245,7 @@ th { border-bottom-width: 2px; }
.tr-date { width: 90px; }
.sort-arrows { margin-left: 0.2rem; }
.sort-arrows a {
.sort-arrows span {
font-size: 100%;
letter-spacing: -0.3rem;
opacity: 0.4;
@ -308,6 +313,25 @@ html, body {
}
@media (max-width: 810px) {
.torrent-info-row > td {
display: block;
}
.torrent-info-td {
width: 100% !important;
}
td.torrent-view-td.torrent-info-data {
padding-left: 5px;
}
.profile-main {
display: inline-grid !important;
}
.profile-panel, .profile-content {
width: 100% !important;
margin-bottom: 20px;
}
}
/* Default Theme */
@ -369,9 +393,9 @@ tr:nth-child(even) { background: rgba(200,200,200,0.15); }
td.tr-se { color: #22A243; }
td.tr-le { color: #E84C4C; }
.torrent-info.aplus { background: hsla(200, 100%, 70%, 0.2); }
.torrent-info.trusted { background: hsla(100, 100%, 70%, 0.2); }
.torrent-info.remake { background: hsla(30, 100%, 70%, 0.2); }
.aplus { background: hsla(200, 100%, 70%, 0.2); }
.trusted { background: hsla(100, 100%, 70%, 0.2); }
.remake { background: hsla(30, 100%, 70%, 0.2); }
.pagination .active { background: #d5d5d5; color: #222; }
.pagination .disabled { color: #d5d5d5; cursor: unset; }
@ -420,6 +444,7 @@ td.tr-le { color: #E84C4C; }
.torrent-hr {
font-size: large;
font-weight: bold;
}
.torrent-info-label {
@ -454,8 +479,6 @@ td.tr-le { color: #E84C4C; }
margin-left: 10px;
margin-top: 10px;
padding-bottom: 5px;
display: flex;
justify-content: space-between;
}
.comment-index {
margin-right: 5px;
@ -465,15 +488,9 @@ td.tr-le { color: #E84C4C; }
.torrent-buttons {
display: inline-block;
float: right;
margin-top: 5px;
}
.torrent-magnet-button {
background: green;
color: white;
font-size: larger;
vertical-align: bottom;
margin-right: 5px;
margin-top: 5px;
margin-top: 20px;
margin-right: 10px;
font-size: large;
}
.profile-panel {
@ -536,6 +553,11 @@ td.tr-le { color: #E84C4C; }
.tr-filelist {
--nest-level: 0;
}
.caret-down-icon {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALBAMAAABbgmoVAAAAIVBMVEUAAABmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmYs5FxxAAAACnRSTlMAByUqK1VzuvH9L+rg5gAAACtJREFUCFtjYEABVatWrVohwGAJpJYxMLDMWrUqASjqCeKAuAlgRaoMOAAAIO0LHGODAFsAAAAASUVORK5CYII=')
no-repeat center center;
vertical-align: middle;
}
.tr-filelist td {
padding: 4px 4px;
white-space: nowrap;
@ -570,3 +592,10 @@ td.tr-le { color: #E84C4C; }
height: 16px;
display: inline-block;
}
#torrent-name {
height: 100%;
display: flex;
flex-direction: column;
font-weight: bold;
}

Voir le fichier

@ -41,9 +41,9 @@ tr:nth-child(even) { background: rgba(0,0,0,0.2); }
td.tr-se { color: #b5bd68; }
td.tr-le { color: #cc6666; }
.torrent-info.aplus { background: hsla(180, 50%, 50%, 0.2) !important; }
.torrent-info.trusted { background: hsla(90, 50%, 50%, 0.2) !important; }
.torrent-info.remake { background: hsla(40, 50%, 50%, 0.2) !important; }
.aplus { background: hsla(180, 50%, 50%, 0.2) !important; }
.trusted { background: hsla(90, 50%, 50%, 0.2) !important; }
.remake { background: hsla(40, 50%, 50%, 0.2) !important; }
.pagination .active { background: #141517; color: #c5c8c6; }
.pagination .disabled { color: #141517; cursor: unset; }

BIN
public/img/logo_s.png Fichier normal

Fichier binaire non affiché.

Après

Largeur:  |  Hauteur:  |  Taille: 19 Kio

Voir le fichier

@ -18,7 +18,7 @@ function toggleLayer(elem) {
// Date formatting
var lang = document.getElementsByTagName("html")[0].getAttribute("lang");
var ymdOpt = { year: "numeric", month: "short", day: "numeric" };
var ymdOpt = { year: "numeric", month: "2-digit", day: "2-digit" };
var hmOpt = { hour: "numeric", minute: "numeric" };
var list = document.getElementsByClassName("date-short");

Voir le fichier

@ -5,6 +5,7 @@
<option value="{{ $id_cat }}" {{if eq $.Search.Category $id_cat }}selected{{end}}>{{call $.T $name_cat }}</option>
{{ end }}
</select>
<label><span class="select-icon caret-down-icon"></span></label>
<select name="s" class="form-input" value>
<option value="0">{{call $.T "show_all"}}</option>
<option value="1" {{if eq .Search.Status 1}}selected{{end}}>{{call $.T "filter_remakes"}}</option>
@ -34,5 +35,5 @@
{{end}}
{{define "search_button"}}
<input class="form-input search-box" name="q" placeholder="{{call $.T "search"}}" type="text" value="{{.Search.Query}}">
<button type="submit" class="form-input search-btn">{{call $.T "search"}}</button>
<button type="submit" class="form-input search-icon"></button>
{{end}}

Voir le fichier

@ -1,14 +1,13 @@
{{define "profile_content"}}
{{with .UserProfile}}
{{ if gt (len .Torrents) 0 }}
<div class="table-responsive">
<table class="table custom-table-hover">
<tr>
<th>{{call $.T "category"}}</th>
<th>{{call $.T "name"}}</th>
<th>{{call $.T "date"}}</th>
<th>{{call $.T "size"}}</th>
<th>{{call $.T "links"}}</th>
<table>
<tr class="torrent-info">
<th class="tr-cat">{{call $.T "category"}}</th>
<th class="tr-name">{{call $.T "name"}}</th>
<th class="tr-date hide-xs">{{call $.T "date"}}</th>
<th class="tr-size hide-xs">{{call $.T "size"}}</th>
<th class="tr-dl">{{call $.T "links"}}</th>
</tr>
{{ range $i, $t := .Torrents }}
{{ if lt $i 16 }}
@ -18,7 +17,7 @@
{{if eq .Status 3}}trusted{{end}}
{{if eq .Status 4}}aplus{{end}}">
<!-- forced width because the <td> gets bigger randomly otherwise -->
<td style="width:80px">
<td>
<a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">
{{ if Sukebei }}
<img src="{{$.URL.Parse (printf "/img/torrents/sukebei/%s%s.png" .Category .SubCategory) }}" title="{{ call $.T (CategoryName .Category .SubCategory) }}">
@ -32,17 +31,17 @@
{{.Name}}
</a>
</td>
<td class="nowrap date-short">{{.Date}}</td>
<td class="nowrap">
<td class="nowrap date-short hide-xs">{{.Date}}</td>
<td class="nowrap hide-xs">
{{ fileSize .Filesize $.T }}
</td>
<td>
<a href="{{.Magnet}}" title="{{ call $.T "magnet_link" }}">
<span class="oi" data-glyph="cloud-download"></span>
<div class="magnet-icon"></div>
</a>
{{if ne .TorrentLink ""}}
<a href="{{.TorrentLink}}" title="{{ call $.T "torrent_file" }}">
<span class="oi" data-glyph="data-transfer-download"></span>
<div class="download-icon"></div>
</a>
{{end}}
</td>

Voir le fichier

@ -1,6 +1,6 @@
{{define "profile_notifications_content"}}
{{with .User}}
<div style="padding: 0.5rem; background: grey;">
<div>
<a href="{{ genRoute "user_notifications" }}?clear" class="btn btn-danger pull-right"><i class="glyphicon glyphicon-trash"></i> {{ call $.T "clear_notifications" }}</a>
<div style="clear: both;"></div>
</div>

Voir le fichier

@ -18,22 +18,22 @@ Your browser does not support the audio element.
<tr class="torrent-info">
<th class="tr-cat">{{call $.T "category"}}</th>
<th class="tr-name">
<a href="{{ genSearchWithOrdering .URL "1" }}">{{call $.T "name"}}{{ genSortArrows .URL "1" }}</a>
<a href="{{ genSearchWithOrdering .URL "1" }}">{{call $.T "name"}}<span class="sort-arrows">{{ genSortArrows .URL "1" }}</span></a>
</th>
<th class="tr-links"></th>
<th class="tr-size hide-xs"><a href="{{ genSearchWithOrdering .URL "4" }}">{{call $.T "size"}}{{ genSortArrows .URL "4" }}</a></th>
<th class="tr-size hide-xs"><a href="{{ genSearchWithOrdering .URL "4" }}">{{call $.T "size"}}<span class="sort-arrows">{{ genSortArrows .URL "4" }}</span></a></th>
<th class="tr-se hide-xs">
<a href="{{ genSearchWithOrdering .URL "5" }}">{{call $.T "S"}}{{ genSortArrows .URL "5" }}</a> /
<a href="{{ genSearchWithOrdering .URL "5" }}">{{call $.T "S"}}<span class="sort-arrows">{{ genSortArrows .URL "5" }}</span></a>
</th>
<th class="tr-le hide-xs">
<a href="{{ genSearchWithOrdering .URL "6" }}">{{call $.T "L"}}{{ genSortArrows .URL "6" }}</a> /
<a href="{{ genSearchWithOrdering .URL "6" }}">{{call $.T "L"}}<span class="sort-arrows">{{ genSortArrows .URL "6" }}</span></a>
</th>
<th class="tr-dl hide-xs">
<a href="{{ genSearchWithOrdering .URL "7" }}">{{call $.T "D"}}{{ genSortArrows .URL "7" }}</a>
<a href="{{ genSearchWithOrdering .URL "7" }}">{{call $.T "D"}}<span class="sort-arrows">{{ genSortArrows .URL "7" }}</span></a>
</th>
<!-- <th><span class="glyphicon glyphicon-comment"></span></th> -->
<th class="tr-date hide-xs"><a href="{{ genSearchWithOrdering .URL "2" }}">{{call $.T "date"}}{{ genSortArrows .URL "2" }}</th></a>
<th class="tr-date hide-xs"><a href="{{ genSearchWithOrdering .URL "2" }}">{{call $.T "date"}}<span class="sort-arrows">{{ genSortArrows .URL "2" }}</span></a></th>
</tr>
{{ range .ListTorrents}}
<tr class="torrent-info

Voir le fichier

@ -4,6 +4,8 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="torrents, cartel, pantsu, anime, manga, sukebei, nyaapassu, horriblesubs, nyaa, hentai, dlsite">
<meta name="description" content='The (((official))) community-based nyaa.se successor, suitable for all anime and manga needs. にゃんぱす~!'>
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>{{if Sukebei}}Sukebei{{else}}Nyaa{{end}} Pantsu - {{block "title" .}}{{ call $.T "error_404" }}{{end}}</title>
<link rel="icon" type="image/png" href="/img/favicon.png?v=3" />
@ -43,12 +45,12 @@
</head>
<body onload="setTheme();">
<div id="mascot"></div>
<div id="mascot" class="hide-xs"></div>
<nav id="header" class="header">
<div class="container">
<div class="h-left">
<div class="h-logo">
<a href="{{.URL.Parse "/"}}"><img src="/img/logo.png" alt="NyaaPantsu"></a>
<a href="{{.URL.Parse "/"}}"><img class="hide-md" src="/img/logo.png" alt="NyaaPantsu"><img class="visible-md" src="/img/logo_s.png"></img></a>
</div>
<div class="h-nav">
<a href="{{.URL.Parse "/upload"}}" class="nav-btn"><div class="upload-icon visible-md"></div><span class="hide-md">Upload</span></a>
@ -86,10 +88,6 @@
<option value="tomorrow.css">Tomorrow</option>
</select>
<select name="Language" id="" class="form-input">
<option value="">English</option>
</select>
<button class="form-input btn" onclick="toggleMascot(this)" value="hide"><span class="oi" data-glyph="eye"></span> Mascot</button>
</div>

Voir le fichier

@ -27,10 +27,10 @@
<!-- END SIDEBAR BUTTONS -->
<!-- SIDEBAR MENU -->
<div class="profile-usermenu">
<a class="form-input" href="{{ genRoute "user_profile" "id" (print .ID) "username" .Username }}"><i class="glyphicon glyphicon-home"></i>{{call $.T "torrents"}}</a>
<a class="form-input" href="{{ genRoute "user_profile" "id" (print .ID) "username" .Username }}"><i class="glyphicon glyphicon-home"></i>{{call $.T "torrents"}}</a> <br>
{{if gt .ID 0 }}
<a class="form-input" href="{{ genRoute "user_notifications" }}"><i class="glyphicon glyphicon-bell"></i>{{call $.T "my_notifications"}}</a>
<a class="form-input" href="{{ genRoute "user_profile_edit" "id" (print .ID) "username" .Username }}"><i class="glyphicon glyphicon-user"></i>{{call $.T "settings"}}</a>
<a class="form-input" href="{{ genRoute "user_notifications" }}"><i class="glyphicon glyphicon-bell"></i>{{call $.T "my_notifications"}}</a> <br>
<a class="form-input" href="{{ genRoute "user_profile_edit" "id" (print .ID) "username" .Username }}"><i class="glyphicon glyphicon-user"></i>{{call $.T "settings"}}</a> <br>
{{end}}
</div>
<!-- END MENU -->

Voir le fichier

@ -9,11 +9,15 @@
{{ range (index $.Infos "infos")}}
<div class="alert alert-info"><a class="panel-close close" data-dismiss="alert">×</a><i class="glyphicon glyphicon-info-sign"></i> {{ . }}</div>
{{end}}
<a class="torrent-hr" href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">{{ if Sukebei}}{{ call $.T (CategoryName .Category .SubCategory) }}{{else}}{{ call $.T (CategoryName .Category .SubCategory) }}{{end}}</a> <br>
<div id="torrent-name" class="{{if eq .Status 2}}remake{{end}}
{{if eq .Status 3}}trusted{{end}}
{{if eq .Status 4}}aplus{{end}}">
<p style="text-align: center;" class="torrent-hr">{{.Name}}</p>
</div>
<br>
<table>
<tr class="torrent-info-row">
<td class="torrent-info-td torrent-info-label">Name:</td><td class="torrent-info-td torrent-info-data">{{.Name}}</td>
<td class="torrent-info-td torrent-info-label">Category:</td><td class="torrent-info-td torrent-info-data"><a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">{{ if Sukebei}}{{ call $.T (CategoryName .Category .SubCategory) }}{{else}}{{ call $.T (CategoryName .Category .SubCategory) }}{{end}}</a> <br></td>
<td class="torrent-info-td torrent-info-label">Date:</td><td class="torrent-info-td date-short">{{.Date}}</td>
</tr>
<tr class="torrent-info-row">
@ -25,7 +29,7 @@
<td class="torrent-info-td torrent-info-label">{{call $.T "leechers"}}:</td><td class="torrent-info-td">{{if .LastScrape.IsZero}}{{call $.T "unknown"}}{{else}}{{.Leechers}}{{end}}</td>
</tr>
<tr class="torrent-info-row">
<td class="torrent-info-td torrent-info-label">{{call $.T "hash"}}:</td><td style="font-family: monospace;" class="torrent-view-td torrent-info-data">{{.Hash}}</td>
<td class="torrent-info-td torrent-info-label">{{call $.T "hash"}}:</td><td style="font-size: small;" class="torrent-view-td torrent-info-data">{{.Hash}}</td>
<td class="torrent-info-td torrent-info-label">{{call $.T "completed"}}:</td><td class="torrent-info-td">{{if .LastScrape.IsZero}}{{call $.T "unknown"}}{{else}}{{.Completed}}{{end}}</td>
</tr>
<tr class="torrent-info-row">
@ -33,13 +37,33 @@
<td class="torrent-info-td torrent-info-label">{{call $.T "last_scraped"}}</td><td class="torrent-info-td">{{if not .LastScrape.IsZero}}{{formatDateRFC .LastScrape}}{{else}}{{call $.T "unknown"}}{{end}}</td>
</tr>
</table>
<div class="torrent-buttons">
<a href="{{.Magnet}}" class="form-input torrent-magnet-button">Magnet!</a>
<a href="{{.TorrentLink}}" class="form-input">Torrent!</a>
<div class="torrent-buttons">
<a href="{{.Magnet}}" class="form-input">Magnet</a>
<a href="{{.TorrentLink}}" class="form-input">Torrent</a>
{{ if gt $.User.ID 0}}
<script>
function reportPopup() {
reportContent = `
<h4>{{ call $.T "report_torrent_number" (print $.Torrent.ID) }}</h4>
<b>{{ call $.T "report_type" }}:</b>
<form method="post" action="/report/{{$.Torrent.ID}}">
<input type="radio" name="report_type" value="illegal" required> {{ call $.T "illegal_content" }}<br />
<input type="radio" name="report_type" value="spam" required> {{ call $.T "spam_garbage" }}<br />
<input type="radio" name="report_type" value="wrongcat" required> {{ call $.T "wrong_category" }}<br />
<input type="radio" name="report_type" value="dup" required> {{ call $.T "duplicate_deprecated" }}<br />
<button type="submit" class="btn btn-default">{{ call $.T "report_btn" }}</button>
</form> <br />
`
reportWindow = window.open("", 'reportWindow', "width=300,height=300"); // Opens a new window
reportWindow.document.write(reportContent);
}
</script>
<a onclick="reportPopup();" class="form-input">{{ call $.T "report_btn" }}</a>
{{end}}
</div>
<p class="torrent-hr">{{call $.T "description"}}</p>
{{ if ne .Description ""}}
<div class="torrent-info-box">{{.Description}}</div>
<div style="padding-left: 14px;" class="torrent-info-box">{{.Description}}</div>
{{else}}
<p>No description provided!</p>
{{end}}
@ -99,8 +123,8 @@
<div class="comment-form">
<div class="comment-text">
<label style="margin-top: 5px; margin-left: 5px;" class="input-label" for="comment">Submit a comment!</label> <br>
<textarea placeholder="Senkyuu~" name="comment" class="form-input" cols="50" rows="50"></textarea>
</div>
<textarea style="width: 80%;" placeholder="サンキュー" name="comment" class="form-input" rows="50"></textarea>
</div><br />
<div class="comment-captcha">
{{block "captcha" (makeCaptchaData .CaptchaID $.T)}}{{end}}
<button type="submit" class="form-input">{{call $.T "submit" }}</button>