mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-03-13 05:51:03 +00:00
Following > list of users followed by any user
This commit is contained in:
parent
a9b6accbde
commit
0f9571f0e1
@ -1324,6 +1324,28 @@ button.disabled:hover
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
/*************************************
|
/*************************************
|
||||||
|
****************** FOLLOWING MODAL
|
||||||
|
**************************************/
|
||||||
|
.following-modal .modal-wrapper
|
||||||
|
{
|
||||||
|
width: 560px;
|
||||||
|
height: 470px;
|
||||||
|
margin: -200px 0 0 -280px;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
.following-modal .modal-content
|
||||||
|
{
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.following-modal .modal-buttons
|
||||||
|
{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.following-modal ol
|
||||||
|
{
|
||||||
|
margin: 15px;
|
||||||
|
}
|
||||||
|
/*************************************
|
||||||
****************** LOADER ************
|
****************** LOADER ************
|
||||||
**************************************/
|
**************************************/
|
||||||
.postboard-loading
|
.postboard-loading
|
||||||
|
@ -346,7 +346,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<ul class="module profile-data">
|
<ul class="module profile-data">
|
||||||
<li><a href="#"><span class="posts-count"> </span>Posts</a></li>
|
<li><a href="#"><span class="posts-count"> </span>Posts</a></li>
|
||||||
<li><a href="#"><span class="following-count"> </span>Following</a></li>
|
<li><a href="#" class="open-following-modal"><span class="following-count"> </span>Following</a></li>
|
||||||
<li><a href="#"><span class="followers-count"> </span>Followers</a></li>
|
<li><a href="#"><span class="followers-count"> </span>Followers</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<button class="follow" href="#">Follow</button>
|
<button class="follow" href="#">Follow</button>
|
||||||
@ -391,6 +391,31 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- MODAL DE HASHTAGS END -->
|
<!-- MODAL DE HASHTAGS END -->
|
||||||
|
|
||||||
|
<!-- MODAL DE FOLLOWING -->
|
||||||
|
<div id="following-modal-template">
|
||||||
|
<!-- ÁREA DE PROFILE PHOTO INIT -->
|
||||||
|
<h2>All users publicly followed by <span class="following-screen-name">@<b></b></span></h2>
|
||||||
|
<!-- ÁREA DE PROFILE END -->
|
||||||
|
|
||||||
|
<!-- ÁREA DE FOLLOWING INIT -->
|
||||||
|
<ol class="following-list">
|
||||||
|
<li id="following-by-user-template" style="display: none;">
|
||||||
|
<div class="mini-following-info" data-screen-name="">
|
||||||
|
<a href="#" class="open-following-modal">
|
||||||
|
<img class="mini-following-photo" src="img/grayed_avatar_placeholder_24.png" alt="user-photo"/>
|
||||||
|
<span class="mini-following-name">Fulano da Silva</span>
|
||||||
|
<span class="mini-screen-name">@
|
||||||
|
<b class="following-screen-name"></b>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<!-- ÁREA DE FOLLOWERS END -->
|
||||||
|
</div>
|
||||||
|
<!-- MODAL DE FOLLOWING END -->
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- TEMPLATES END -->
|
<!-- TEMPLATES END -->
|
||||||
|
26
home.html
26
home.html
@ -353,7 +353,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<ul class="module profile-data">
|
<ul class="module profile-data">
|
||||||
<li><a href="#"><span class="posts-count"> </span>Posts</a></li>
|
<li><a href="#"><span class="posts-count"> </span>Posts</a></li>
|
||||||
<li><a href="#"><span class="following-count"> </span>Following</a></li>
|
<li><a href="#" class="open-following-modal"><span class="following-count"> </span>Following</a></li>
|
||||||
<li><a href="#"><span class="followers-count"> </span>Followers</a></li>
|
<li><a href="#"><span class="followers-count"> </span>Followers</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<button class="follow" href="#">Follow</button>
|
<button class="follow" href="#">Follow</button>
|
||||||
@ -398,6 +398,30 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- MODAL DE HASHTAGS END -->
|
<!-- MODAL DE HASHTAGS END -->
|
||||||
|
|
||||||
|
<!-- MODAL DE FOLLOWING -->
|
||||||
|
<div id="following-modal-template">
|
||||||
|
<!-- ÁREA DE PROFILE PHOTO INIT -->
|
||||||
|
<h2>All users publicly followed by <span class="following-screen-name">@<b></b></span></h2>
|
||||||
|
<!-- ÁREA DE PROFILE END -->
|
||||||
|
|
||||||
|
<!-- ÁREA DE FOLLOWING INIT -->
|
||||||
|
<ol class="following-list">
|
||||||
|
<li id="following-by-user-template" style="display: none;">
|
||||||
|
<div class="mini-following-info" data-screen-name="">
|
||||||
|
<a href="#" class="open-following-modal">
|
||||||
|
<img class="mini-following-photo" src="img/grayed_avatar_placeholder_24.png" alt="user-photo"/>
|
||||||
|
<span class="mini-following-name">Fulano da Silva</span>
|
||||||
|
<span class="mini-screen-name">@
|
||||||
|
<b class="following-screen-name"></b>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<!-- ÁREA DE FOLLOWERS END -->
|
||||||
|
</div>
|
||||||
|
<!-- MODAL DE FOLLOWING END -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- TEMPLATES END -->
|
<!-- TEMPLATES END -->
|
||||||
|
@ -100,7 +100,7 @@ function timeSincePost(t) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Profile, mentions and hashtag modal
|
// Profile, mentions, hashtag, and following modal
|
||||||
// -----------------------------------
|
// -----------------------------------
|
||||||
|
|
||||||
function newProfileModal(username) {
|
function newProfileModal(username) {
|
||||||
@ -198,6 +198,32 @@ function openMentionsModal(e)
|
|||||||
resetMentionsCount();
|
resetMentionsCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function newFollowingModal(username) {
|
||||||
|
var followingModalContent = $( "#following-modal-template" ).children().clone(true);
|
||||||
|
|
||||||
|
updateFollowingData(followingModalContent, username);
|
||||||
|
|
||||||
|
return followingModalContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
function openFollowingModal(e)
|
||||||
|
{
|
||||||
|
e.stopPropagation();
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
var $this = $( this );
|
||||||
|
var username = $.MAL.followingUrlToUser( $this.attr("href") );
|
||||||
|
|
||||||
|
var followingModalClass = "following-modal";
|
||||||
|
openModal( followingModalClass );
|
||||||
|
|
||||||
|
var followingModalContent = newFollowingModal( username );
|
||||||
|
followingModalContent.appendTo("." +followingModalClass + " .modal-content");
|
||||||
|
|
||||||
|
//título do modal
|
||||||
|
$( "."+followingModalClass + " h3" ).text( "Followed by " + username );
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Post actions, submit, count characters
|
// Post actions, submit, count characters
|
||||||
// --------------------------------------
|
// --------------------------------------
|
||||||
@ -438,5 +464,6 @@ function initInterfaceCommon() {
|
|||||||
|
|
||||||
$( ".open-profile-modal").bind( "click", openProfileModal );
|
$( ".open-profile-modal").bind( "click", openProfileModal );
|
||||||
$( ".open-hashtag-modal").bind( "click", openHashtagModal );
|
$( ".open-hashtag-modal").bind( "click", openHashtagModal );
|
||||||
|
$( ".open-following-modal").bind( "click", openFollowingModal );
|
||||||
$( ".userMenu-connections a").bind( "click", openMentionsModal );
|
$( ".userMenu-connections a").bind( "click", openMentionsModal );
|
||||||
}
|
}
|
||||||
|
@ -147,6 +147,15 @@ var MAL = function()
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.followingUrlToUser = function(url) {
|
||||||
|
var dummyUrl = this.isFollowingUrl("");
|
||||||
|
var urlIdx = url.indexOf(dummyUrl);
|
||||||
|
if( urlIdx >= 0 )
|
||||||
|
return url.substr(urlIdx + dummyUrl.length);
|
||||||
|
else
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
this.mentionsUrl = function(username) {
|
this.mentionsUrl = function(username) {
|
||||||
if( $.hasOwnProperty("mobile") ) {
|
if( $.hasOwnProperty("mobile") ) {
|
||||||
return "#mentions?user=" + username;
|
return "#mentions?user=" + username;
|
||||||
@ -170,6 +179,14 @@ var MAL = function()
|
|||||||
return "#dmchat?user=" + username;
|
return "#dmchat?user=" + username;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.isFollowingUrl = function(username) {
|
||||||
|
if( $.hasOwnProperty("mobile") ) {
|
||||||
|
return "#following?user=" + username;
|
||||||
|
} else {
|
||||||
|
return "#following?user=" + username;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.followUrl = function(username) {
|
this.followUrl = function(username) {
|
||||||
if( $.hasOwnProperty("mobile") ) {
|
if( $.hasOwnProperty("mobile") ) {
|
||||||
|
@ -174,10 +174,16 @@ function updateProfileData(profileModalContent, username) {
|
|||||||
getPostsCount( username, profileModalContent.find(".posts-count") );
|
getPostsCount( username, profileModalContent.find(".posts-count") );
|
||||||
getFollowers( username, profileModalContent.find(".followers-count") );
|
getFollowers( username, profileModalContent.find(".followers-count") );
|
||||||
getNumFollowing( username, profileModalContent.find(".following-count") );
|
getNumFollowing( username, profileModalContent.find(".following-count") );
|
||||||
|
|
||||||
|
profileModalContent.find(".following-count").parent().attr("href", $.MAL.isFollowingUrl(username));
|
||||||
|
|
||||||
requestPostRecursively(profileModalContent.find(".postboard-posts"),username,"status",10);
|
requestPostRecursively(profileModalContent.find(".postboard-posts"),username,"status",10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateFollowingData(followingModalContent, username) {
|
||||||
|
followingModalContent.find(".following-screen-name b").text(username);
|
||||||
|
loadFollowingIntoList( username, $(followingModalContent[1]) );
|
||||||
|
}
|
||||||
|
|
||||||
function clearHashtagProcessed() {
|
function clearHashtagProcessed() {
|
||||||
_hashtagProcessedMap = {};
|
_hashtagProcessedMap = {};
|
||||||
|
@ -83,6 +83,23 @@ function getNumFollowing( username, item ) {
|
|||||||
}, null);
|
}, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function loadFollowingIntoList( username, html_list ) {
|
||||||
|
loadFollowingFromDht( username, 1, [], 0,
|
||||||
|
function(args, following, seqNum) {
|
||||||
|
html_list.html("");
|
||||||
|
$.each(following, function(i, following_user){
|
||||||
|
var following_user_li = $( "#following-by-user-template" ).children().clone(true);
|
||||||
|
following_user_li.find(".mini-following-info").attr("data-screen-name", following_user);
|
||||||
|
following_user_li.find(".following-screen-name b").text(following_user);
|
||||||
|
|
||||||
|
getAvatar( following_user, following_user_li.find(".mini-following-photo") );
|
||||||
|
getFullname( following_user, following_user_li.find(".mini-following-name") );
|
||||||
|
|
||||||
|
html_list.append( following_user_li );
|
||||||
|
});
|
||||||
|
}, null);
|
||||||
|
}
|
||||||
|
|
||||||
// load following list from localStorage and then from the dht resource
|
// load following list from localStorage and then from the dht resource
|
||||||
function loadFollowing(cbFunc, cbArg) {
|
function loadFollowing(cbFunc, cbArg) {
|
||||||
loadFollowingFromStorage();
|
loadFollowingFromStorage();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user