Informações dos ultimos assuntos
3 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Informações dos ultimos assuntos
Detalhes da questão
Endereço do fórum: http://www.brasilplayultimate.com.br
Versão do fórum: PunBB
Descrição
Olá pessoal, tenho duas dúvidas.
Há como fazer aparece as "Respostas e Visualizações" do tópico como o meu sub forum: http://prntscr.com/gms4c3
Nesta parte? http://prntscr.com/gms566
Também gostaria que a parte dos avatares ficasse desta forma: http://prntscr.com/gms5jo
Seria possível ?
Última edição por iScroll em 26.09.17 16:46, editado 1 vez(es)
Re: Informações dos ultimos assuntos
O seu fórum já possui milhões de aplicações AJAX. Acho que colocar mais requests pode prejudicar a conexão do seu fórum, podendo chegar ao ponto de dar request limit. Logo, acho que não deveria prosseguir com isso.
Re: Informações dos ultimos assuntos
Certo, prossiga apenas com o nome de usuário e data da postagem por favor.Luiz escreveu:O seu fórum já possui milhões de aplicações AJAX. Acho que colocar mais requests pode prejudicar a conexão do seu fórum, podendo chegar ao ponto de dar request limit. Logo, acho que não deveria prosseguir com isso.
Re: Informações dos ultimos assuntos
- Código:
$(function() {
$('head').append(
'<style type="text/css">' +
'.recentTopics .main-content {' +
' font-family: helvetica, arial, sans-serif !important;' +
' line-height: 15px;' +
' padding: 0;' +
'}' +
'.recentTopics ul {' +
' padding-left: 0 !important;' +
'}' +
'.mini_photo {' +
' margin-right: 5px;' +
'}' +
'li.recentPost {' +
' min-height: 50px;' +
' padding: 1em 1em 0.5em 1em;' +
' list-style-type: none;' +
' border-bottom: 1px solid #f3f3f3;' +
'}' +
'.recentPost a[href^="/t"] {' +
' font-size: 13.8px;' +
' text-decoration: none;' +
' font-weight: normal;' +
'}' +
'.recentInline {' +
' min-width: 30%;' +
' font-size: 12px;' +
' float: right;' +
'}' +
'.small_links {' +
' display: table;' +
' margin-top: 10px;' +
'}' +
'.local {' +
' font-size: 0;' +
'}' +
'.local a:after {' +
' content: " → ";' +
'}' +
'.local a:last-child:after {' +
' content: "";' +
'}' +
'.small_links, .small_links a {' +
' color: #a4a4a4 !important;' +
' font-size: 12px !important;' +
' text-decoration: none !important;' +
'}' +
'.creator_post:before {' +
' content: "Tópico iniciado por ";' +
'}' +
'.creator_post:after {' +
' content: ", Em: ";' +
'}' +
'.recentTopics {' +
' margin: 15px 0;' +
'}' +
' #right {' +
' position: relative;' +
' top: -354px;' +
'}' +
'</style>'
);
var jModuleRecentPosts = $('.module:contains("Últimos assuntos")');
jModuleRecentPosts
.remove() // Clonando widget de últimos assuntos
.prependTo('#wrapper') // Inserindo no main-content
.addClass('recentTopics') // Adicionando nova classe
.removeClass('module'); // Removendo classe existente
$('.recentTopics').each(function() {
$(this).html(
$(this).html()
.replace(/\»/g, '')
.replace(/\<a href="\/t(.*?)\-/g,'<li class="recentPost"><a href="/t$1-')
.replace(/\<\/a\><br\>/g, '</a><div class="recentInline">')
.replace(/\<a href="\/u([0-9])"\>(.*?)<\/a\>/g, '<a href="/u$1">$2</a><br>')
).find('li').wrapAll('<ul></ul>');
$('a[href^="/u"]', this).each(function() {
var jLinkUser = $(this).attr('href');
$(this).before(
'<a href="' + jLinkUser + '" class="user_photo lastpost-avatar">' +
' <img src="http://r26.imgfast.net/users/2617/31/90/74/avatars/1-40.png" alt="no_photo" class="mini_photo" />' +
'</a>'
);
var jImg = $(this).prev().find('img'),
jUser = sessionStorage.getItem(jLinkUser);
if(jUser) {
jImg.attr('src', jUser);
} else {
$.ajax({
url: jLinkUser + "?change_version=punbb",
type: 'GET',
success: function(data) {
var jImage = $('#profile-advanced-right .module:first img:first', data).attr('src');
jImg.attr('src', jImage);
sessionStorage.setItem(jLinkUser, jImage);
},
error: function(err)
{
console.log("AJAX error in request (Last posts)");
}
});
}
});
$('a[href^="/t"]', this).each(function() {
var jThis = $(this),
jLinkTpc = jThis.attr('href').split('#')[0];
$.ajax({
url: jLinkTpc + "?change_version=punbb",
type: 'GET',
success: function(recent) {
var jCreator = '',
jLocal = $('.crumbs:first a.nav', recent).wrapAll('<div></div>').parent().html(),
jPaging = $('.paging', recent)[0];
jThis.parents('.recentPost').append(
'<div class="small_links">' +
' <span class="creator_post">Carregando...</span>' +
' <span class="local">' + jLocal + '</span>' +
'</div>'
).find('a[href*="change_version"]').each(function() {
var jHref = $(this).attr('href').split('?')[0];
$(this).attr('href', jHref);
});
if(jPaging) {
jCreator = $('a:contains("1")', jPaging).attr('href');
jThis.parents('.recentPost').find('.creator_post').load(jCreator + ' .username:first', function() {
$(this).text($(this).text());
});
} else {
jCreator = $('.username:first', recent).text();
jThis.parents('.recentPost').find('.creator_post').text(jCreator);
}
},
error: function(err)
{
console.log("AJAX error in request (Last posts)");
}
});
});
});
});
Re: Informações dos ultimos assuntos
Adicione ao CSS:
E vi que realmente não é possível capturar o número de posts e visualizações pela maneira que o script foi desenvolvido.
- Código:
.recentPost > .recentInline {
align-items: center;
position: relative;
min-height: 42px;
padding-left: 72px;
box-sizing: border-box;
text-indent: -9999px;
line-height: 18px;
margin-top: -14px;
}
.recentPost > .recentInline > br {
display: none;
}
.recentPost > .recentInline > a {
text-indent: 0;
}
.recentPost > .recentInline > .lastpost-avatar {
position: absolute;
top: 14px;
left: 0;
}
.recentPost > .recentInline > a:last-of-type {
flex: 0 1 100%;
display: block;
position: relative;
margin-left: -15px;
cursor: default;
}
.recentPost > .recentInline > a:last-of-type > span {
cursor: pointer;
}
.recentPost > .recentInline > a:last-of-type::before,
.recentPost > .recentInline > a:last-of-type::after {
font-family: FontAwesome;
color: #333 !important;
}
.recentPost > .recentInline > a:last-of-type::before {
content: '\f007';
margin-right: 5px;
}
.recentPost > .recentInline > a:last-of-type::after {
content: '\f017';
position: absolute;
top: 18px;
left: 0;
}
E vi que realmente não é possível capturar o número de posts e visualizações pela maneira que o script foi desenvolvido.
Re: Informações dos ultimos assuntos
Questão marcada como Resolvida ou o Autor solicitou que ela fosse arquivada. Tópico marcado como Resolvido e movido para Questões resolvidas. |
Tópicos semelhantes
» Ultimos assuntos
» Últimos assuntos não mostra os últimos assuntos
» Últimos assuntos
» Ultimos assuntos
» Ultimos assuntos
» Últimos assuntos não mostra os últimos assuntos
» Últimos assuntos
» Ultimos assuntos
» Ultimos assuntos
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos