mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:18:26 +01:00
comments on mobile :3
This commit is contained in:
parent
e8190464ed
commit
1f8695893f
1 changed files with 343 additions and 13 deletions
|
@ -905,6 +905,173 @@ body {
|
|||
-moz-user-select:none;
|
||||
-ms-user-select:none;
|
||||
user-select:none
|
||||
}
|
||||
.comments-area {
|
||||
background: #f1f9ff;
|
||||
padding: 50px 30px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
@media (max-width: 414px) {
|
||||
.comments-area {
|
||||
padding: 50px 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.comments-area h4 {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
color: #002347;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.comments-area h5 {
|
||||
font-size: 16px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.comments-area a {
|
||||
color: #002347;
|
||||
}
|
||||
|
||||
.comments-area .comment-list {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.comments-area .comment-list:last-child {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.comments-area .comment-list.left-padding {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
@media (max-width: 413px) {
|
||||
.comments-area .comment-list .single-comment h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
.comments-area .comment-list .single-comment .date {
|
||||
font-size: 11px;
|
||||
}
|
||||
.comments-area .comment-list .single-comment .comment {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.comments-area .thumb {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.comments-area .date {
|
||||
font-size: 13px;
|
||||
color: #777777;
|
||||
margin-bottom: 13px;
|
||||
}
|
||||
|
||||
.comments-area .comment {
|
||||
color: #777777;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.comments-area .btn-reply {
|
||||
background-color: #fff;
|
||||
color: #002347;
|
||||
border: 1px solid #eee;
|
||||
padding: 2px 18px;
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
font-weight: 600;
|
||||
-webkit-transition: all 0.3s ease 0s;
|
||||
-moz-transition: all 0.3s ease 0s;
|
||||
-o-transition: all 0.3s ease 0s;
|
||||
transition: all 0.3s ease 0s;
|
||||
}
|
||||
|
||||
.comments-area .btn-reply:hover {
|
||||
background: #fdc632;
|
||||
color: #002347;
|
||||
}
|
||||
|
||||
.comment-form {
|
||||
background: #f1f9ff;
|
||||
text-align: center;
|
||||
padding: 47px 30px 43px;
|
||||
margin-top: 50px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.comment-form h4 {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
font-size: 18px;
|
||||
line-height: 22px;
|
||||
color: #002347;
|
||||
}
|
||||
|
||||
.comment-form .name {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.comment-form .name {
|
||||
padding-right: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.comment-form .email {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.comment-form .email {
|
||||
padding-left: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.comment-form .form-control {
|
||||
padding: 8px 20px;
|
||||
background: #fff;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
color: #777777;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.comment-form .form-control:focus {
|
||||
box-shadow: none;
|
||||
border: 1px solid #eee;
|
||||
}
|
||||
|
||||
.comment-form textarea.form-control {
|
||||
height: 140px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
.comment-form ::-webkit-input-placeholder {
|
||||
/* Chrome/Opera/Safari */
|
||||
font-size: 15px;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.comment-form ::-moz-placeholder {
|
||||
/* Firefox 19+ */
|
||||
font-size: 15px;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.comment-form :-ms-input-placeholder {
|
||||
/* IE 10+ */
|
||||
font-size: 15px;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.comment-form :-moz-placeholder {
|
||||
/* Firefox 18- */
|
||||
font-size: 15px;
|
||||
color: #777;
|
||||
}
|
||||
.v-application--is-ltr .v-chip .v-chip__close.v-icon.v-icon--right {
|
||||
margin-right:-4px
|
||||
|
@ -1227,6 +1394,96 @@ padding: 3px;
|
|||
}
|
||||
#descs span { display: block; }
|
||||
#descs span a { display: inline-block; }
|
||||
|
||||
#comments-container .backtotop {
|
||||
margin: 0%;
|
||||
display: none;
|
||||
}
|
||||
#comments-container .backtotop a {
|
||||
margin-top: .5em;
|
||||
}
|
||||
#comments .close { display: none; }
|
||||
#comments {
|
||||
font-size: .94em;
|
||||
line-height: 1.2em;
|
||||
text-align: left;
|
||||
padding: .6em 3%;
|
||||
margin: 0;
|
||||
background: #000;
|
||||
border-top: none;
|
||||
border-radius: 23px;
|
||||
height: 100%;
|
||||
}
|
||||
#set-language { margin-bottom: .2em; }
|
||||
#set-language + p {
|
||||
display: inline-block;
|
||||
font-size: 1em; /* 15px */
|
||||
margin: .45em 0 0;
|
||||
}
|
||||
|
||||
#commentss { padding: .4em 0; }
|
||||
#commentss p {margin: 0;
|
||||
font-weight: 900;
|
||||
font-stretch: ultra-expanded;
|
||||
padding: 3px;
|
||||
}
|
||||
#commentss span {
|
||||
display: inline-block;
|
||||
width: 10.5em;
|
||||
line-height: 2em;
|
||||
}
|
||||
#commentss span a {
|
||||
line-height: 1.9em;
|
||||
}
|
||||
#commentss span.original { font-weight: bold; }
|
||||
/* Display/hide language list */
|
||||
|
||||
#comments-container { display: none; }
|
||||
#comments-container:target { display: block; }
|
||||
|
||||
#rec-cont:target { display: none; }
|
||||
#rec-cont { display: block; }
|
||||
|
||||
.backtotop b { display: none; }
|
||||
|
||||
body { position: relative; }
|
||||
#comments-container {
|
||||
position: absolute;
|
||||
margin-top: -12.4em;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
#language-container .backtotop a {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
margin-top: 0;
|
||||
}
|
||||
#comments .close {
|
||||
float: right;
|
||||
display: block;
|
||||
}
|
||||
#comments .close span {
|
||||
display: none;
|
||||
}
|
||||
#comments .close:after {
|
||||
content: "\2A09";
|
||||
float: right;
|
||||
position: relative; bottom: .1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#commentss {
|
||||
column-width: 10em;
|
||||
column-count: 3;
|
||||
column-gap: 0;
|
||||
}
|
||||
#commentss span { display: block; }
|
||||
#commentss span a { display: inline-block; }
|
||||
|
||||
</style>
|
||||
<style>body, html { margin: 0; padding: 0; } * { font-family: sans-serif; color:#fff } .player { background-color: #000 !important; display: grid; grid-template-columns: 1fr min-content; grid-template-rows: max-content 1fr max-content max-content max-content; gap: 0 0; width: 100%; /* height: 100%; */ aspect-ratio: 16 / 9; } .player * { color: #fff; } .player.embed, video.embed { position: fixed; top: 0; bottom: 0; left: 0; right: 0; } .player * { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .player > video { position: relative; width: 100%; height: 100%; z-index: 0; grid-area: 1 / 1 / 6 / 3; } .player.hide-controls > .player-title, .player.hide-controls > .player-controls, .player.hide-controls > .player-playback-bar-container, .player.hide-controls > .player-menu { display: none !important; } .player-controls { background-color: #0007; display: flex; justify-content: center; align-items: center; z-index: 1; grid-area: 1 / 1 / 6 / 3; } .player-button { width: 96px; height: 96px; font-size: 90px; text-align: center; line-height: 48px; } .player-tiny-button { width: 40px; font-size: 20px; text-align: center; } .player-tiny-button > i { color: #ddd; } .player-button, .player-button * { color: #dddddd !important; text-decoration: none; } .player-button > i { min-width: 48px; } .player-button:hover, .player-button:hover * { color: #fff !important; } .player-playback-bar { transition: width linear 100ms; } .player-playback-bar-container { grid-area: 4 / 1 / 5 / 3; display: flex; column-gap: 8px; justify-content: center; align-items: center; height: 8px; transition: height linear 100ms; width: 100%; z-index: 2; margin-bottom: 10px; } .player-playback-bar-bg { background-color: #fff3 !important; width: 100%; height: 100%; z-index: 2; display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr; } .player-playback-bar-bg > * { grid-area: 1 / 1 / 2 / 2; } .player-playback-bar-buffer { background-color: #fffa !important; height: 100%; width: 0; z-index: 3; } .player-playback-bar-fg { background-color: #f00 !important; height: 100%; width: 0; z-index: 4; } .player-buffering { grid-area: 1 / 1 / 6 / 3; z-index: 1; display: flex; justify-content: center; align-items: center; } .player-buffering-spinner { width: 80px; height: 80px; }</style>
|
||||
<body>
|
||||
|
@ -1333,6 +1590,7 @@ padding: 3px;
|
|||
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="descs" style="display: contents;">
|
||||
<h3 style="font-family:'Ginto Nord';font-weight:900;white-space:yes"> Description </h3>
|
||||
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;/*! width: 4.5em; */height: 0;">
|
||||
|
@ -1383,6 +1641,7 @@ padding: 3px;
|
|||
</div>
|
||||
|
||||
|
||||
|
||||
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
|
||||
|
||||
<p class="description" style="padding: 10px;"><%-String(video.Description).replace(/\n/g, " <br> ")%> </p>
|
||||
|
@ -1456,29 +1715,100 @@ PokeTube Mobile v12.10.22a - Node <%=process.version%> - V8 v<%=process.versions
|
|||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<% if (comments) { %>
|
||||
<div id="comments-container">
|
||||
|
||||
<div class="video-title" style="font-family:'Ginto Nord';font-weight:900;white-space:yes;margin-top: 10px;">Comments </div>
|
||||
<div style="padding:0">
|
||||
<% if (!video.Channel.Name.endsWith(' - Topic')) { %>
|
||||
<p>
|
||||
theres <%=comments%> total comments rigth now on this video. view em on <a href="https://invidio.us/watch?v=<%=video.id%>">invidious</a>
|
||||
<div class="backtotop">
|
||||
<hr class="no-display" />
|
||||
<a href="#top"><b>▲</b></a>
|
||||
</div>
|
||||
<div id="comments" class="rounded-corners">
|
||||
<div class="button">
|
||||
<a href="#top" class="close"></a>
|
||||
</div>
|
||||
<div id="set-language" class="button">
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div id="commentss" style="display: contents;">
|
||||
<h3 style="font-family:'Ginto Nord';font-weight:900;white-space:yes"> Comments </h3>
|
||||
<p style="padding: 0;margin: 0;font-family: Inter;">
|
||||
Top Comments
|
||||
</p>
|
||||
<% } %> <% } %>
|
||||
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;/*! width: 4.5em; */height: 0;">
|
||||
<% if (!Array.isArray( inv.comments)) { %>
|
||||
<p>
|
||||
Comments couldnt load ;-; (<a href="https://codeberg.org/Ashley/poketube/issues/new">Report dis issue</a> or refresh the god damn page lol)
|
||||
</p>
|
||||
<% } %>
|
||||
|
||||
<% if (video.Channel.Name.endsWith(' - Topic')) { %>
|
||||
disabled for topic channels <% } %>
|
||||
|
||||
<% if (Array.isArray( inv.comments)) { %>
|
||||
|
||||
<% inv.comments.forEach(x =>{ %>
|
||||
|
||||
<div>
|
||||
|
||||
<div class="comment-list left-padding">
|
||||
<div class="single-comment justify-content-between d-flex">
|
||||
<div class="user justify-content-between d-flex">
|
||||
<div class="desc">
|
||||
<h5 style="display: flex;"><div class="thumb">
|
||||
<a href="/channel?id=<%- x.authorId%>" class="avatar">
|
||||
<img src="https://p.poketube.fun/<%= x.authorThumbnails[1].url %>" style="width: 45px;height: 45px;">
|
||||
</a>
|
||||
</div>
|
||||
<p style="margin: 7px;font-family:inter">
|
||||
<%- x.author%> </p></h5>
|
||||
<p class="comment">
|
||||
<%- x.contentHtml %>
|
||||
<br> <br>
|
||||
<span style="display: grid;grid-auto-columns: max-content;"><%- x.publishedText %> • <%- convert(x.likeCount) %> Likes</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<% }) %>
|
||||
|
||||
<% } %>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
|
||||
|
||||
<div class="video-title" style="font-family:'Ginto Nord';font-weight:900;white-space:yes;margin-top: 10px;">Comments </div>
|
||||
<p>
|
||||
View The comments on dis video :3
|
||||
<a id="language-button" href="#comments-container" style="float: right;" class="switch">
|
||||
<i class="fa-thin fa-chevron-down"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="secondary" style="padding-top: 0;">
|
||||
|
||||
<div class="recommended-list" style="color:#fff">
|
||||
<div class="recommended-list" id="rec-cont" style="color:#fff">
|
||||
|
||||
<% if (!r) { %>
|
||||
|
||||
|
|
Loading…
Reference in a new issue