2013-08-19 22:30:57 +09:00
2015-06-02 01:27:36 +09:00
/ * · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · ·
· ·
· ·
· Q V I T T E R ·
· ·
2015-07-02 02:15:31 +09:00
· ·
2015-06-02 01:27:36 +09:00
· < o ) ·
· / _ //// ·
· ( _ _ _ _ / ·
· ( o < ·
· o > \ \ \ \ _ \ ·
2015-07-02 02:15:31 +09:00
· \ \ ) \ _ _ _ _ ) ·
· ·
2015-06-02 01:27:36 +09:00
· ·
· @ licstart The following is the entire license notice for the ·
· JavaScript code in this page . ·
· ·
· Copyright ( C ) 2015 Hannes Mannerheim and other contributors ·
2015-07-02 02:15:31 +09:00
· ·
2015-06-02 01:27:36 +09:00
· ·
· This program is free software : you can redistribute it and / or modify ·
· it under the terms of the GNU Affero General Public License as ·
· published by the Free Software Foundation , either version 3 of the ·
· License , or ( at your option ) any later version . ·
· ·
· This program is distributed in the hope that it will be useful , ·
· but WITHOUT ANY WARRANTY ; without even the implied warranty of ·
· MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the ·
· GNU Affero General Public License for more details . ·
· ·
· You should have received a copy of the GNU Affero General Public License ·
· along with this program . If not , see < http : //www.gnu.org/licenses/>. ·
· ·
2015-07-02 02:15:31 +09:00
· @ licend The above is the entire license notice ·
· for the JavaScript code in this page . ·
· ·
2015-06-02 01:27:36 +09:00
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · * /
2013-08-19 22:30:57 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-02-26 05:16:24 +09:00
· Show favs and requeets in queet element
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param q : queet jQuery object
2015-07-02 02:15:31 +09:00
· @ param data : object with users that has faved and requeeted
·
2013-08-19 22:30:57 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
function showFavsAndRequeetsInQueet ( q , data ) {
2013-08-19 22:30:57 +09:00
2015-06-24 22:34:44 +09:00
// set the non-expanded fav- and rq-count
q . children ( '.queet' ) . find ( '.action-fav-num' ) . html ( data . favs . length ) ;
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.action-fav-num' ) . attr ( 'data-fav-num' , data . favs . length ) ;
2015-06-24 22:34:44 +09:00
q . children ( '.queet' ) . find ( '.action-rq-num' ) . html ( data . repeats . length ) ;
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.action-rq-num' ) . attr ( 'data-rq-num' , data . repeats . length ) ;
2015-06-24 22:34:44 +09:00
// don't proceed if queet is not expanded
if ( ! q . hasClass ( 'expanded' ) || q . hasClass ( 'collapsing' ) ) {
return ;
}
2015-07-02 02:15:31 +09:00
// don't proceed and remove expanded stats if all favs and repeats are removed
2015-06-24 22:34:44 +09:00
if ( data . favs . length < 1 && data . repeats . length < 1 ) {
q . children ( '.queet' ) . find ( '.stats' ) . remove ( ) ;
return ;
2015-07-02 02:15:31 +09:00
}
2015-06-24 22:34:44 +09:00
2015-02-26 05:16:24 +09:00
// remove any existing stats container and add a new empty one
if ( q . children ( '.queet' ) . find ( 'ul.stats' ) . length > 0 ) {
q . children ( '.queet' ) . find ( 'ul.stats' ) . remove ( ) ;
2013-08-19 22:30:57 +09:00
}
2015-06-24 22:34:44 +09:00
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.queet-stats-container' ) . prepend ( '<ul class="stats"><li class="avatar-row"></li></ul>' ) ;
// set the expanded fav-count number
2015-02-26 05:16:24 +09:00
if ( data . favs . length > 0 ) {
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
if ( data . favs . length == 1 ) {
var favLabel = window . sL . favoriteNoun ;
}
else if ( data . favs . length > 1 ) {
var favLabel = window . sL . favoritesNoun ;
}
2015-06-24 22:34:44 +09:00
2015-02-26 05:16:24 +09:00
if ( q . children ( '.queet' ) . find ( '.fav-count' ) . length > 0 ) {
q . children ( '.queet' ) . find ( '.fav-count' ) . children ( 'strong' ) . html ( data . favs . length ) ;
2015-07-02 02:15:31 +09:00
}
2015-02-26 05:16:24 +09:00
else {
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( 'li.avatar-row' ) . before ( '<li class="fav-count"><a>' + favLabel + ' </a><strong>' + data . favs . length + '</strong></li>' ) ;
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// add repeats
if ( data . repeats . length > 0 ) {
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
if ( data . repeats . length == 1 ) {
var repeatsLabel = window . sL . requeetNoun ;
}
else if ( data . repeats . length > 1 ) {
var repeatsLabel = window . sL . requeetsNoun ;
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
if ( q . children ( '.queet' ) . find ( '.rq-count' ) . length > 0 ) {
q . children ( '.queet' ) . find ( '.rq-count' ) . children ( 'strong' ) . html ( data . repeats . length ) ;
2015-07-02 02:15:31 +09:00
}
2015-02-26 05:16:24 +09:00
else {
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( 'li.avatar-row' ) . before ( '<li class="rq-count"><a>' + repeatsLabel + ' </a><strong>' + data . repeats . length + '</strong></li>' ) ;
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// merge favs and repeats objects by user_id (removes duplicate users)
var favsAndRepeats = { } ;
$ . each ( data . repeats , function ( ) {
favsAndRepeats [ this . user _id ] = this ;
} ) ;
$ . each ( data . favs , function ( ) {
favsAndRepeats [ this . user _id ] = this ;
} ) ;
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// make an object with time the key
var favsAndRepeatsByTime = { } ;
$ . each ( favsAndRepeats , function ( ) {
favsAndRepeatsByTime [ this . time ] = this ;
2015-07-02 02:15:31 +09:00
} ) ;
2015-02-26 05:16:24 +09:00
// create an array with times and sort it
var timeSorted = [ ] ;
$ . each ( favsAndRepeats , function ( ) {
timeSorted . push ( this . time ) ;
} ) ;
timeSorted . sort ( ) ;
// display avatars in chronological order, max 7
var avatarnum = 1 ;
$ . each ( timeSorted , function ( ) {
q . children ( '.queet' ) . find ( '.avatar-row' ) . append ( '<a title="' + favsAndRepeatsByTime [ this ] . fullname + '" data-user-id="' + favsAndRepeatsByTime [ this ] . user _id + '" href="' + favsAndRepeatsByTime [ this ] . profileurl + '"><img alt="' + favsAndRepeatsByTime [ this ] . fullname + '" src="' + favsAndRepeatsByTime [ this ] . avatarurl + '" class="avatar size24" id="av-' + favsAndRepeatsByTime [ this ] . user _id + '"></a>' ) ;
2015-07-02 02:15:31 +09:00
if ( avatarnum > 15 ) {
2015-02-26 05:50:16 +09:00
return false ;
}
2015-02-26 05:16:24 +09:00
avatarnum ++ ;
} ) ;
2013-08-19 22:30:57 +09:00
}
2015-06-03 06:45:46 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-06-03 06:45:46 +09:00
· Build profile card HTML
2015-07-02 02:15:31 +09:00
·
2015-06-03 06:45:46 +09:00
· @ param data : an object with a user array
2015-07-02 02:15:31 +09:00
·
2015-06-03 06:45:46 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
function buildProfileCard ( data ) {
data = cleanUpUserObject ( data ) ;
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// use avatar if no cover photo
var coverPhotoHtml = '' ;
if ( data . cover _photo !== false ) {
coverPhotoHtml = 'background-image:url(\'' + data . cover _photo + '\')' ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// follows me?
var follows _you = '' ;
if ( data . follows _you === true && window . myUserID != data . id ) {
2015-07-02 02:15:31 +09:00
var follows _you = '<span class="follows-you">' + window . sL . followsYou + '</span>' ;
2015-06-03 06:45:46 +09:00
}
// show user actions if logged in
var followingClass = '' ;
if ( data . following ) {
followingClass = 'following' ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
var followButton = '' ;
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' && window . myUserID != data . id ) {
var followButton = '<div class="user-actions"><button data-follow-user-id="' + data . id + '" data-follow-user="' + data . statusnet _profile _url + '" type="button" class="qvitter-follow-button ' + followingClass + '"><span class="button-text follow-text"><i class="follow"></i>' + window . sL . userFollow + '</span><span class="button-text following-text">' + window . sL . userFollowing + '</span><span class="button-text unfollow-text">' + window . sL . userUnfollow + '</span></button></div>' ;
2015-06-03 06:45:46 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// follow from external instance if logged out
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name == 'undefined' ) {
var followButton = '<div class="user-actions"><button type="button" class="external-follow-button ' + followingClass + '"><span class="button-text follow-text"><i class="follow"></i>' + window . sL . userExternalFollow + '</span></button></div>' ;
2015-06-03 06:45:46 +09:00
}
// edit profile button if me
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' && window . myUserID == data . id ) {
var followButton = '<div class="user-actions"><button type="button" class="edit-profile-button"><span class="button-text edit-profile-text">' + window . sL . editMyProfile + '</span></button></div>' ;
}
2015-06-03 06:45:46 +09:00
// is webpage empty?
var emptyWebpage = '' ;
if ( data . url . length < 1 ) {
2015-07-02 02:15:31 +09:00
emptyWebpage = ' empty' ;
2015-06-03 06:45:46 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// full card html
data . profileCardHtml = ' \
< div class = "profile-card" > \
< div class = "profile-header-inner" style = "' + coverPhotoHtml + '" > \
< div class = "profile-header-inner-overlay" > < / d i v > \
< a class = "profile-picture" href = "' + data.profile_image_url_original + '" > \
< img src = "' + data.profile_image_url_profile_size + '" / > \
< / a > \
< div class = "profile-card-inner" > \
< h1 class = "fullname" > ' + data.name + ' < span > < / s p a n > < / h 1 > \
< h2 class = "username" > \
< span class = "screen-name" > @ ' + data.screen_name + ' < / s p a n > \
' + follows_you + ' \
< / h 2 > \
< div class = "bio-container" > < p > ' + data.description + ' < / p > < / d i v > \
< p class = "location-and-url" > \
< span class = "location" > ' + data.location + ' < / s p a n > \
< span class = "url' + emptyWebpage + '" > \
< span class = "divider" > · < / s p a n > \
< a href = "' + data.url + '" > ' + data.url.replace(' http : //','').replace('https://','') + '</a>\
< / s p a n > \
< / p > \
< / d i v > \
< / d i v > \
< div class = "profile-banner-footer" > \
< ul class = "stats" > \
< li > < a class = "tweet-stats" > ' + window.sL.notices + ' < strong > ' + data.statuses_count + ' < / s t r o n g > < / a > < / l i > \
< li > < a class = "following-stats" > ' + window.sL.following + ' < strong > ' + data.friends_count + ' < / s t r o n g > < / a > < / l i > \
< li > < a class = "follower-stats" > ' + window.sL.followers + ' < strong > ' + data.followers_count + ' < / s t r o n g > < / a > < / l i > \
< li > < a class = "groups-stats" > ' + window.sL.groups + ' < strong > ' + data.groups_count + ' < / s t r o n g > < / a > < / l i > \
< / u l > \
' + followButton + ' \
< div class = "clearfix" > < / d i v > \
< / d i v > \
< / d i v > \
' ;
return data ;
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-06-03 06:45:46 +09:00
· Build external profile card HTML
2015-07-02 02:15:31 +09:00
·
· @ param data : an object containing data . external user array ,
2015-06-03 06:45:46 +09:00
· and maybe ( hopefully ) also a data . local user array
2015-07-02 02:15:31 +09:00
·
2015-06-03 06:45:46 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
function buildExternalProfileCard ( data ) {
// local profile id and follow class
var followLocalIdHtml = '' ;
2015-07-02 02:15:31 +09:00
var followingClass = '' ;
2015-06-03 06:45:46 +09:00
if ( typeof data . local != 'undefined' && data . local !== null ) {
followLocalIdHtml = ' data-follow-user-id="' + data . local . id + '"' ;
if ( data . local . following ) {
followingClass = 'following' ;
}
}
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// follows me?
var follows _you = '' ;
if ( data . local !== null && data . local . follows _you === true && window . myUserID != data . local . id ) {
2015-07-02 02:15:31 +09:00
var follows _you = '<span class="follows-you">' + window . sL . followsYou + '</span>' ;
}
2015-06-03 06:45:46 +09:00
// empty strings and zeros instead of null
data = cleanUpUserObject ( data . external ) ;
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// old statusnet-versions might not have full avatar urls in their api response
if ( typeof data . profile _image _url _original == 'undefined'
|| data . profile _image _url _original === null
|| data . profile _image _url _original . length == 0 ) {
2015-07-02 02:15:31 +09:00
data . profile _image _url _original = data . profile _image _url ;
2015-06-03 06:45:46 +09:00
}
if ( typeof data . profile _image _url _profile _size == 'undefined'
|| data . profile _image _url _profile _size === null
|| data . profile _image _url _profile _size . length == 0 ) {
2015-07-02 02:15:31 +09:00
data . profile _image _url _profile _size = data . profile _image _url ;
}
2015-06-03 06:45:46 +09:00
// we might have a cover photo
if ( typeof data . cover _photo != 'undefined' && data . cover _photo !== false ) {
var cover _photo = data . cover _photo ;
}
else {
2015-07-02 02:15:31 +09:00
var cover _photo = data . profile _image _url _original ;
2015-06-03 06:45:46 +09:00
}
// is webpage empty?
var emptyWebpage = '' ;
if ( data . url . length < 1 ) {
2015-07-02 02:15:31 +09:00
emptyWebpage = ' empty' ;
}
2015-06-05 09:17:33 +09:00
var serverUrl = guessInstanceUrlWithoutProtocolFromProfileUrlAndNickname ( data . statusnet _profile _url , data . screen _name ) ;
2015-07-02 02:15:31 +09:00
data . screenNameWithServer = '@' + data . screen _name + '@' + serverUrl ;
var followButton = '<div class="user-actions"><button' + followLocalIdHtml + ' data-follow-user="' + data . statusnet _profile _url + '" type="button" class="qvitter-follow-button ' + followingClass + '"><span class="button-text follow-text"><i class="follow"></i>' + window . sL . userFollow + '</span><span class="button-text following-text">' + window . sL . userFollowing + '</span><span class="button-text unfollow-text">' + window . sL . userUnfollow + '</span></button></div>' ;
2015-06-03 06:45:46 +09:00
data . profileCard = ' \
< div class = "profile-card" > \
< div class = "profile-header-inner" style = "background-image:url(\'' + cover_photo + '\')" > \
< div class = "profile-header-inner-overlay" > < / d i v > \
< a class = "profile-picture" > < img src = "' + data.profile_image_url_profile_size + '" / > < / a > \
< div class = "profile-card-inner" > \
< h1 class = "fullname" > ' + data.name + ' < span > < / s p a n > < / h 1 > \
< h2 class = "username" > \
< span class = "screen-name" > \
< a target = "_blank" href = "' + data.statusnet_profile_url + '" > ' + data.screenNameWithServer + ' < / a > \
< / s p a n > \
' + follows_you + ' \
< / h 2 > \
< div class = "bio-container" > < p > ' + data.description + ' < / p > < / d i v > \
< p class = "location-and-url" > \
< span class = "location" > ' + data.location + ' < / s p a n > \
< span class = "url' + emptyWebpage + '" > \
< span class = "divider" > · < / s p a n > \
< a target = "_blank" href = "' + data.url + '" > ' + data.url.replace(' http : //','').replace('https://','') + '</a>\
< / s p a n > \
< / p > \
< / d i v > \
< / d i v > \
< div class = "profile-banner-footer" > \
< ul class = "stats" > \
< li > < a target = "_blank" href = "' + data.statusnet_profile_url + '" > ' + window.sL.notices + ' < strong > ' + data.statuses_count + ' < / s t r o n g > < / a > < / l i > \
< li > < a target = "_blank" href = "' + data.statusnet_profile_url + '/subscriptions" > ' + window.sL.following + ' < strong > ' + data.friends_count + ' < / s t r o n g > < / a > < / l i > \
< li > < a target = "_blank" href = "' + data.statusnet_profile_url + '/subscribers" > ' + window.sL.followers + ' < strong > ' + data.followers_count + ' < / s t r o n g > < / a > < / l i > \
< / u l > \
' + followButton + ' \
< div class = "clearfix" > < / d i v > \
< / d i v > \
< / d i v > \
2015-07-02 02:15:31 +09:00
< div class = "clearfix" > < / d i v > ' ;
2015-06-03 06:45:46 +09:00
return data ;
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-06-03 06:45:46 +09:00
· Adds a profile card before feed element
2015-07-02 02:15:31 +09:00
·
2015-06-03 06:45:46 +09:00
· @ param data : an object with a user array
2015-07-02 02:15:31 +09:00
·
2015-06-03 06:45:46 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
function addProfileCardToDOM ( data ) {
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// change design
changeDesign ( { backgroundimage : data . background _image , backgroundcolor : data . backgroundcolor , linkcolor : data . linkcolor } ) ;
// remove any old profile card and show profile card
$ ( '#feed' ) . siblings ( '.profile-card' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
$ ( '#feed' ) . before ( data . profileCardHtml ) ;
2015-06-03 06:45:46 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-06-05 09:17:33 +09:00
· Open external profile card in popup
2015-07-02 02:15:31 +09:00
·
2015-06-05 09:17:33 +09:00
· @ param data : an object with a user array
2015-07-02 02:15:31 +09:00
·
2015-06-05 09:17:33 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-06-05 09:17:33 +09:00
function openExternalProfileInPopup ( data ) {
var data = buildExternalProfileCard ( data ) ;
2015-07-02 02:15:31 +09:00
2015-06-05 09:17:33 +09:00
// preview latest notice
var noticeHtml = '' ;
if ( typeof data . status != 'undefined' ) {
data . status . user = data ;
2015-07-02 02:15:31 +09:00
var $noticeHtmlObj = $ ( '<div/>' ) . append ( buildQueetHtml ( data . status ) ) ;
2015-06-10 08:02:55 +09:00
$noticeHtmlObj . find ( '.queet-thumbs' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
var noticeHtml = $noticeHtmlObj . outerHTML ( ) ;
}
2015-06-05 09:17:33 +09:00
popUpAction ( 'popup-external-profile' , data . screenNameWithServer , data . profileCard + noticeHtml , '<a class="go-to-external-profile" href="' + data . statusnet _profile _url + '">' + window . sL . goToExternalProfile + '</a>' ) ;
2015-07-02 02:15:31 +09:00
}
/ * ·
·
2015-06-05 09:17:33 +09:00
· Open local profile card in popup
2015-07-02 02:15:31 +09:00
·
2015-06-05 09:17:33 +09:00
· @ param data : an object with a user array
2015-07-02 02:15:31 +09:00
·
2015-06-05 09:17:33 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-06-05 09:17:33 +09:00
function openLocalProfileInPopup ( data ) {
var data = buildProfileCard ( data ) ;
2015-07-02 02:15:31 +09:00
2015-06-05 09:17:33 +09:00
// preview latest notice
var noticeHtml = '' ;
if ( typeof data . status != 'undefined' ) {
data . status . user = data ;
2015-07-02 02:15:31 +09:00
var $noticeHtmlObj = $ ( '<div/>' ) . append ( buildQueetHtml ( data . status ) ) ;
2015-06-10 08:02:55 +09:00
$noticeHtmlObj . find ( '.queet-thumbs' ) . remove ( ) ;
var noticeHtml = $noticeHtmlObj . outerHTML ( ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-05 09:17:33 +09:00
popUpAction ( 'popup-local-profile' , '@' + data . screen _name , data . profileCardHtml + '<div class="clearfix"></div>' + noticeHtml , '<a class="go-to-local-profile" href="' + data . statusnet _profile _url + '">' + window . sL . goToExternalProfile + '</a>' ) ;
2015-07-02 02:15:31 +09:00
}
/ * ·
·
· Adds a profile card before feed element , with data from the first object in the included object
·
2013-08-19 22:30:57 +09:00
· @ param data : an object with one or more queet objects
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
function profileCardFromFirstObject ( data , screen _name ) {
var first = new Object ( ) ;
for ( var i in data ) {
if ( data . hasOwnProperty ( i ) && typeof ( i ) !== 'function' ) {
first = data [ i ] ;
break ;
}
}
if ( typeof first . user != 'undefined' ) {
2015-07-02 02:15:31 +09:00
addProfileCardToDOM ( first . user ) ;
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Adds a group profile card before feed element
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param data : an object with one or more queet objects
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
function groupProfileCard ( groupAlias ) {
2013-08-19 22:30:57 +09:00
getFromAPI ( 'statusnet/groups/show/' + groupAlias + '.json' , function ( data ) { if ( data ) {
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
data . nickname = data . nickname || '' ;
data . fullname = data . fullname || '' ;
2015-08-26 06:27:08 +09:00
data . stream _logo = data . stream _logo || window . defaultAvatarStreamSize ;
data . homepage _logo = data . homepage _logo || window . defaultAvatarProfileSize ;
data . original _logo = data . original _logo || window . defaultAvatarProfileSize ;
2013-08-19 22:30:57 +09:00
data . description = data . description || '' ;
data . homepage = data . homepage || '' ;
data . url = data . url || '' ;
data . member _count = data . member _count || 0 ;
2015-07-02 02:15:31 +09:00
data . admin _count = data . admin _count || 0 ;
2013-08-19 22:30:57 +09:00
// show user actions if logged in
var memberClass = '' ;
if ( data . member ) {
memberClass = 'member' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
var memberButton = '' ;
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' ) {
var memberButton = '<div class="user-actions"><button data-group-id="' + data . id + '" type="button" class="member-button ' + memberClass + '"><span class="button-text join-text"><i class="join"></i>' + window . sL . joinGroup + '</span><span class="button-text ismember-text">' + window . sL . isMemberOfGroup + '</span><span class="button-text leave-text">' + window . sL . leaveGroup + '</span></button></div>' ;
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2014-01-29 03:42:47 +09:00
// follow from external instance if logged out
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name == 'undefined' ) {
var memberButton = '<div class="user-actions"><button type="button" class="external-member-button"><span class="button-text join-text"><i class="join"></i>' + window . sL . joinExternalGroup + '</span></button></div>' ;
}
2015-05-30 00:30:03 +09:00
// change design
changeDesign ( { backgroundimage : false , backgroundcolor : false , linkcolor : false } ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// add card to DOM
2015-07-02 02:15:31 +09:00
$ ( '#feed' ) . siblings ( '.profile-card' ) . remove ( ) ; // remove any old profile card
$ ( '#feed' ) . before ( '<div class="profile-card"><div class="profile-header-inner" style="background-image:url(' + data . original _logo + ')"><div class="profile-header-inner-overlay"></div><a class="profile-picture" href="' + data . original _logo + '"><img src="' + data . homepage _logo + '" /></a><div class="profile-card-inner"><h1 class="fullname">' + data . fullname + '<span></span></h1><h2 class="username"><span class="screen-name">!' + data . nickname + '</span></span></h2><div class="bio-container"><p>' + data . description + '</p></div><p class="location-and-url"></span><span class="url"><a href="' + data . homepage + '">' + data . homepage . replace ( 'http://' , '' ) . replace ( 'https://' , '' ) + '</a></span></p></div></div><div class="profile-banner-footer"><ul class="stats"><li><a class="member-stats">' + window . sL . memberCount + '<strong>' + data . member _count + '</strong></a></li><li><a class="admin-stats">' + window . sL . adminCount + '<strong>' + data . admin _count + '</strong></a></li></ul>' + memberButton + '<div class="clearfix"></div></div></div>' ) ;
} } ) ;
}
/ * ·
·
2013-08-19 22:30:57 +09:00
· Change stream
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param stream : part of the url to the api ( everything after api base url )
· @ param actionOnSuccess : callback function on success
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
function setNewCurrentStream ( stream , actionOnSuccess , setLocation ) {
2014-01-29 03:42:47 +09:00
// remember state of old stream (including profile card)
window . oldStreams [ window . currentStream ] = $ ( '#feed' ) . siblings ( '.profile-card' ) . outerHTML ( ) + $ ( '#feed' ) . outerHTML ( ) ;
2013-08-19 22:30:57 +09:00
// set location bar from stream
2014-05-14 16:46:07 +09:00
if ( setLocation ) {
2013-08-19 22:30:57 +09:00
setUrlFromStream ( stream ) ;
}
// halt interval that checks for new queets
window . clearInterval ( checkForNewQueetsInterval ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
display _spinner ( ) ;
2015-07-02 02:15:31 +09:00
2014-09-20 09:53:10 +09:00
// scroll to top
$ ( window ) . scrollTop ( 0 ) ;
$ ( 'body' ) . addClass ( 'androidFix' ) . scrollTop ( 0 ) . removeClass ( 'androidFix' ) ;
2015-07-02 02:15:31 +09:00
2015-07-02 02:49:50 +09:00
// blur any selected links
$ ( 'a' ) . blur ( ) ;
// null any searches
$ ( '#feed-body' ) . removeAttr ( 'data-search-page-number' ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// remember the most recent stream selection in global var
2015-07-02 02:15:31 +09:00
window . currentStream = stream ;
2015-06-03 06:45:46 +09:00
// a @user stream, i.e. user's queets, user's followers, user's following, we set _queets_ as the default stream in the menu
2013-08-20 22:26:25 +09:00
if ( stream . substring ( 0 , 45 ) == 'statuses/followers.json?count=20&screen_name='
|| stream . substring ( 0 , 43 ) == 'statuses/friends.json?count=20&screen_name='
2015-07-02 02:15:31 +09:00
|| stream . substring ( 0 , 48 ) == 'statusnet/groups/list.json?count=10&screen_name='
2014-10-03 02:24:54 +09:00
|| stream . substring ( 0 , 43 ) == 'statuses/friends_timeline.json?screen_name='
2015-07-02 02:15:31 +09:00
|| stream . substring ( 0 , 27 ) == 'favorites.json?screen_name='
|| stream . substring ( 0 , 35 ) == 'statuses/mentions.json?screen_name='
2013-08-19 22:30:57 +09:00
|| stream . substring ( 0 , 27 ) == 'statuses/user_timeline.json' ) {
2013-08-20 22:26:25 +09:00
var defaultStreamName = 'statuses/user_timeline.json?' + stream . substring ( stream . indexOf ( 'screen_name=' ) ) ;
var streamHeader = '@' + stream . substring ( stream . lastIndexOf ( '=' ) + 1 ) ;
2013-08-19 22:30:57 +09:00
}
2015-06-03 06:45:46 +09:00
// my user streams, i.e. my followers, my following
2013-08-20 22:26:25 +09:00
else if ( stream == 'statuses/followers.json?count=20'
|| stream == 'statuses/friends.json?count=20'
|| stream == 'statusnet/groups/list.json?count=10' ) {
2013-08-19 22:30:57 +09:00
var defaultStreamName = stream ;
2014-05-16 11:07:30 +09:00
var streamHeader = '@' + window . loggedIn . screen _name ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// the default streams, get header from DOM
2014-10-03 02:24:54 +09:00
else if ( stream == 'statuses/friends_timeline.json'
|| stream == 'statuses/mentions.json'
2015-07-02 02:15:31 +09:00
|| stream == 'qvitter/statuses/notifications.json'
|| stream == 'favorites.json'
2014-01-29 03:42:47 +09:00
|| stream == 'statuses/public_timeline.json'
2015-07-02 02:15:31 +09:00
|| stream == 'statuses/public_and_external_timeline.json' ) {
2013-08-19 22:30:57 +09:00
var defaultStreamName = stream ;
var streamHeader = $ ( '.stream-selection[data-stream-name="' + stream + '"]' ) . attr ( 'data-stream-header' ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// !group stream
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 26 ) == 'statusnet/groups/timeline/'
|| stream . substring ( 0 , 28 ) == 'statusnet/groups/membership/'
|| stream . substring ( 0 , 24 ) == 'statusnet/groups/admins/' ) {
var defaultStreamName = 'statusnet/groups/timeline/' + stream . substring ( stream . lastIndexOf ( '/' ) + 1 ) ;
var streamHeader = '!' + stream . substring ( stream . lastIndexOf ( '/' ) + 1 , stream . indexOf ( '.json' ) ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// #tag stream
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 24 ) == 'statusnet/tags/timeline/' ) {
var defaultStreamName = stream ;
2015-03-07 23:50:43 +09:00
var hashtagString = stream . substring ( stream . indexOf ( '/timeline/' ) + 10 , stream . indexOf ( '.json' ) ) ;
var streamHeader = '#' + replaceHtmlSpecialChars ( decodeURIComponent ( hashtagString ) ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// notice stream
2014-09-25 06:20:35 +09:00
else if ( stream . substring ( 0 , 14 ) == 'statuses/show/' ) {
var defaultStreamName = stream ;
var streamHeader = 'notice/' + stream . substring ( stream . indexOf ( '/show/' ) + 6 , stream . indexOf ( '.json' ) ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// search stream
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 11 ) == 'search.json' ) {
var defaultStreamName = stream ;
2015-01-20 21:47:58 +09:00
var streamHeader = window . sL . searchVerb + ': ' + replaceHtmlSpecialChars ( decodeURIComponent ( stream . substring ( stream . indexOf ( '?q=' ) + 3 ) ) ) ;
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// set the h2 header in the feed
if ( stream . substring ( 0 , 23 ) == 'statuses/followers.json' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = '<div class="queet-streams"><a class="queet-stream following">' + window . sL . following + '</a> / </div>' + window . sL . followers ;
2013-08-19 22:30:57 +09:00
}
else if ( stream . substring ( 0 , 21 ) == 'statuses/friends.json' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = window . sL . following + '<div class="queet-streams">/ <a class="queet-stream followers">' + window . sL . followers + '</a></div>' ;
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 40 ) == 'statuses/user_timeline.json?screen_name=' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = window . sL . notices + '<div class="queet-streams">/ <a class="queet-stream mentions">' + window . sL . mentions + '</a> / <a class="queet-stream favorites">' + window . sL . favoritesNoun + '</a></div>' ;
}
2014-10-03 02:24:54 +09:00
else if ( stream . substring ( 0 , 35 ) == 'statuses/mentions.json?screen_name=' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = '<div class="queet-streams"><a class="queet-stream queets">' + window . sL . notices + '</a> /</div>' + window . sL . mentions + '<div class="queet-streams">/ <a class="queet-stream favorites">' + window . sL . favoritesNoun + '</a></div>' ;
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 27 ) == 'favorites.json?screen_name=' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = '<div class="queet-streams"><a class="queet-stream queets">' + window . sL . notices + '</a> / <a class="queet-stream mentions">' + window . sL . mentions + '</a> /</div>' + window . sL . favoritesNoun ;
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 26 ) == 'statusnet/groups/list.json' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = window . sL . groups ;
}
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 28 ) == 'statusnet/groups/membership/' ) {
var h2FeedHeader = window . sL . memberCount ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 24 ) == 'statusnet/groups/admins/' ) {
var h2FeedHeader = window . sL . adminCount ;
2015-07-02 02:15:31 +09:00
}
2014-10-03 02:24:54 +09:00
else if ( stream . substring ( 0 , 43 ) == 'statuses/friends_timeline.json?screen_name=' ) {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = '<span style="unicode-bidi:bidi-override;direction:ltr;">' + streamHeader + '/all</span>' ; // ugly rtl fix, sry, we should have translations for this stream header
}
2013-08-19 22:30:57 +09:00
else {
2015-07-02 02:15:31 +09:00
var h2FeedHeader = streamHeader ;
}
2014-01-29 03:42:47 +09:00
// if we have a saved copy of this stream, show it immediately (but it is replaced when stream finishes to load later)
if ( typeof window . oldStreams [ window . currentStream ] != "undefined" ) {
2015-07-02 02:15:31 +09:00
$ ( '.profile-card' ) . remove ( ) ;
2014-01-29 03:42:47 +09:00
$ ( '#feed' ) . remove ( ) ;
$ ( '#user-container' ) . after ( window . oldStreams [ window . currentStream ] ) ;
$ ( '.profile-card' ) . css ( 'display' , 'none' ) ;
2015-07-02 02:15:31 +09:00
$ ( '#feed' ) . css ( 'display' , 'none' ) ;
2014-09-20 09:53:10 +09:00
$ ( '.profile-card' ) . show ( ) ;
$ ( '#feed' ) . show ( ) ;
$ ( '#feed-header-inner h2' ) . css ( 'opacity' , '0.2' ) ;
$ ( '#feed-header-inner h2' ) . animate ( { opacity : '1' } , 1000 ) ;
2015-05-19 22:22:52 +09:00
// also mark this stream as the current stream immediately, if a saved copy exists
2015-07-02 02:15:31 +09:00
addStreamToHistoryMenuAndMarkAsCurrent ( streamHeader , defaultStreamName ) ;
2014-01-29 03:42:47 +09:00
}
// otherwise we fade out and wait for stream to load
else {
// fade out
$ ( '#feed,.profile-card' ) . animate ( { opacity : '0' } , 150 , function ( ) {
// when fade out finishes, remove any profile cards and set new header
2015-07-02 02:15:31 +09:00
$ ( '.profile-card' ) . remove ( ) ;
2014-01-29 03:42:47 +09:00
$ ( '#feed-header-inner h2' ) . html ( h2FeedHeader ) ;
2015-07-02 02:15:31 +09:00
} ) ;
2014-01-29 03:42:47 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-07 18:48:41 +09:00
// change design immediately to either cached design or logged in user's
if ( typeof window . oldStreamsDesigns [ theUserOrGroupThisStreamBelongsTo ( window . currentStream ) ] != 'undefined' ) {
changeDesign ( window . oldStreamsDesigns [ theUserOrGroupThisStreamBelongsTo ( window . currentStream ) ] ) ;
}
else {
2015-07-02 02:15:31 +09:00
changeDesign ( { backgroundimage : window . loggedIn . background _image , backgroundcolor : window . loggedIn . backgroundcolor , linkcolor : window . loggedIn . linkcolor } ) ;
2015-06-07 18:48:41 +09:00
}
2015-07-02 02:15:31 +09:00
// for these streams we want a user array in the header to build a profile card
2015-06-03 06:45:46 +09:00
var addUserArray = '' ;
2013-08-19 22:30:57 +09:00
if ( stream . substring ( 0 , 23 ) == 'statuses/followers.json'
|| stream . substring ( 0 , 21 ) == 'statuses/friends.json'
2015-07-02 02:15:31 +09:00
|| stream . substring ( 0 , 26 ) == 'statusnet/groups/list.json'
2014-10-03 02:24:54 +09:00
|| stream . substring ( 0 , 35 ) == 'statuses/mentions.json?screen_name='
2015-06-03 06:45:46 +09:00
|| stream . substring ( 0 , 27 ) == 'favorites.json?screen_name='
2015-07-02 02:15:31 +09:00
|| stream . substring ( 0 , 27 ) == 'statuses/user_timeline.json'
2014-10-03 02:24:54 +09:00
|| stream . substring ( 0 , 43 ) == 'statuses/friends_timeline.json?screen_name=' ) {
2015-06-03 06:45:46 +09:00
addUserArray = '&withuserarray=1' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
2015-06-03 06:45:46 +09:00
// get stream
2015-07-02 02:15:31 +09:00
getFromAPI ( stream + addUserArray , function ( queet _data ) {
2015-06-03 06:45:46 +09:00
if ( queet _data ) {
// while waiting for this data user might have changed stream, so only proceed if current stream still is this one
if ( window . currentStream == stream ) {
2015-07-02 02:15:31 +09:00
2015-06-03 06:45:46 +09:00
// show group profile card if this is a group stream
if ( stream . substring ( 0 , 26 ) == 'statusnet/groups/timeline/'
|| stream . substring ( 0 , 28 ) == 'statusnet/groups/membership/'
|| stream . substring ( 0 , 24 ) == 'statusnet/groups/admins/' ) {
var thisGroupAlias = stream . substring ( stream . lastIndexOf ( '/' ) + 1 , stream . indexOf ( '.json' ) ) ;
groupProfileCard ( thisGroupAlias ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-03 06:45:46 +09:00
// start checking for new queets again
window . clearInterval ( checkForNewQueetsInterval ) ;
checkForNewQueetsInterval = window . setInterval ( function ( ) { checkForNewQueets ( ) } , window . timeBetweenPolling ) ;
// add this stream to the history menu
addStreamToHistoryMenuAndMarkAsCurrent ( streamHeader , defaultStreamName ) ;
2015-07-02 02:15:31 +09:00
remove _spinner ( ) ;
2015-06-03 06:45:46 +09:00
$ ( '#feed-body' ) . html ( '' ) ; // empty feed only now so the scrollers don't flicker on and off
$ ( '#new-queets-bar' ) . parent ( ) . addClass ( 'hidden' ) ; document . title = window . siteTitle ; // hide new queets bar if it's visible there
addToFeed ( queet _data , false , 'visible' ) ; // add stream items to feed element
$ ( '#feed' ) . animate ( { opacity : '1' } , 150 ) ; // fade in
$ ( 'body' ) . removeClass ( 'loading-older' ) ; $ ( 'body' ) . removeClass ( 'loading-newer' ) ;
$ ( 'html,body' ) . scrollTop ( 0 ) ; // scroll to top
2015-07-02 02:15:31 +09:00
actionOnSuccess ( ) ; // return
2013-08-19 22:30:57 +09:00
}
2015-06-03 06:45:46 +09:00
}
2015-07-02 02:15:31 +09:00
} ) ;
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-05-19 22:22:52 +09:00
· Add this stream to history menu if it doesn 't exist there (but not if this is me or if we' re not logged in )
2015-07-02 02:15:31 +09:00
· and mark this stream as current in menu
·
2015-05-19 22:22:52 +09:00
· @ param streamHeader : the header to show in the menu
· @ param defaultStreamName : the stream to link in the history menu
2015-07-02 02:15:31 +09:00
·
2015-05-19 22:22:52 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2015-05-19 22:22:52 +09:00
function addStreamToHistoryMenuAndMarkAsCurrent ( streamHeader , defaultStreamName ) {
if ( $ ( '.stream-selection[data-stream-header="' + streamHeader + '"]' ) . length == 0
&& streamHeader != '@' + window . loggedIn . screen _name
2015-07-02 02:15:31 +09:00
&& typeof window . loggedIn . screen _name != 'undefined' ) {
2015-05-19 22:22:52 +09:00
$ ( '#history-container' ) . append ( '<a class="stream-selection" data-stream-header="' + streamHeader + '" href="' + window . siteInstanceURL + convertStreamToPath ( defaultStreamName ) + '">' + streamHeader + '<i class="chev-right"></i></a>' ) ;
updateHistoryLocalStorage ( ) ;
}
2015-07-02 02:15:31 +09:00
2015-05-19 22:22:52 +09:00
$ ( '.stream-selection' ) . removeClass ( 'current' ) ;
$ ( '.stream-selection[data-stream-header="' + streamHeader + '"]' ) . addClass ( 'current' ) ;
}
2013-08-19 22:30:57 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-11-23 08:31:04 +09:00
· Convert stream to path
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param stream : the stream , e . g . 'public_timeline.json'
2013-11-23 08:31:04 +09:00
· @ returns : relative path
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· · · · · · · · · * /
2013-11-23 08:31:04 +09:00
function convertStreamToPath ( stream ) {
2013-08-20 22:26:25 +09:00
if ( stream . substring ( 0 , 45 ) == 'statuses/followers.json?count=20&screen_name=' ) {
var screenName = stream . substring ( stream . lastIndexOf ( '=' ) + 1 ) ;
2013-11-23 08:31:04 +09:00
return screenName + '/subscribers' ;
2013-08-19 22:30:57 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 43 ) == 'statuses/friends.json?count=20&screen_name=' ) {
2015-07-02 02:15:31 +09:00
var screenName = stream . substring ( stream . lastIndexOf ( '=' ) + 1 ) ;
2013-11-23 08:31:04 +09:00
return screenName + '/subscriptions' ;
2013-08-19 22:30:57 +09:00
}
2014-10-03 02:24:54 +09:00
else if ( stream . substring ( 0 , 35 ) == 'statuses/mentions.json?screen_name=' ) {
2013-08-19 22:30:57 +09:00
var screenName = stream . substring ( stream . indexOf ( '=' ) + 1 ) ;
2013-11-23 08:31:04 +09:00
return screenName + '/replies' ;
2013-08-19 22:30:57 +09:00
}
else if ( stream . substring ( 0 , 27 ) == 'favorites.json?screen_name=' ) {
2015-07-02 02:15:31 +09:00
var screenName = stream . substring ( stream . indexOf ( '=' ) + 1 ) ;
2013-11-23 08:31:04 +09:00
return screenName + '/favorites' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 48 ) == 'statusnet/groups/list.json?count=10&screen_name=' ) {
2015-07-02 02:15:31 +09:00
var screenName = stream . substring ( stream . lastIndexOf ( '=' ) + 1 ) ;
2013-11-23 08:31:04 +09:00
return screenName + '/groups' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream == 'statuses/followers.json?count=20' ) {
2014-05-16 11:07:30 +09:00
return window . loggedIn . screen _name + '/subscribers' ;
2013-08-19 22:30:57 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream == 'statuses/friends.json?count=20' ) {
2014-05-16 11:07:30 +09:00
return window . loggedIn . screen _name + '/subscriptions' ;
2013-08-19 22:30:57 +09:00
}
2014-10-03 02:24:54 +09:00
else if ( stream == 'statuses/mentions.json' ) {
2014-05-16 11:07:30 +09:00
return window . loggedIn . screen _name + '/replies' ;
2013-08-19 22:30:57 +09:00
}
2014-09-25 06:20:35 +09:00
else if ( stream == 'qvitter/statuses/notifications.json' ) {
return window . loggedIn . screen _name + '/notifications' ;
}
2013-08-19 22:30:57 +09:00
else if ( stream == 'favorites.json' ) {
2014-05-16 11:07:30 +09:00
return window . loggedIn . screen _name + '/favorites' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream == 'statusnet/groups/list.json?count=10' ) {
2014-05-16 11:07:30 +09:00
return window . loggedIn . screen _name + '/groups' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 27 ) == 'statuses/user_timeline.json' ) {
var screenName = stream . substring ( stream . indexOf ( '=' ) + 1 ) ;
2015-07-02 02:15:31 +09:00
return screenName ;
2013-08-19 22:30:57 +09:00
}
2014-10-03 02:24:54 +09:00
else if ( stream == 'statuses/friends_timeline.json' ) {
2014-05-16 11:07:30 +09:00
return window . loggedIn . screen _name + '/all' ;
2013-08-19 22:30:57 +09:00
}
2014-11-24 21:47:45 +09:00
else if ( stream . substring ( 0 , 43 ) == 'statuses/friends_timeline.json?screen_name=' ) {
2013-08-19 22:30:57 +09:00
var screenName = stream . substring ( stream . indexOf ( '=' ) + 1 ) ;
2013-11-23 08:31:04 +09:00
return screenName + '/all' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
else if ( stream == 'statuses/public_timeline.json' ) {
2015-08-25 20:27:14 +09:00
return 'main/public' ;
2013-08-19 22:30:57 +09:00
}
2014-05-16 11:07:30 +09:00
else if ( stream == 'statuses/public_and_external_timeline.json' ) {
2014-01-29 03:42:47 +09:00
return 'main/all' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 26 ) == 'statusnet/groups/timeline/' ) {
2013-08-20 22:26:25 +09:00
var groupName = stream . substring ( stream . lastIndexOf ( '/' ) + 1 , stream . indexOf ( '.json' ) ) ;
2013-11-23 08:31:04 +09:00
return 'group/' + groupName ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 28 ) == 'statusnet/groups/membership/' ) {
var groupName = stream . substring ( stream . lastIndexOf ( '/' ) + 1 , stream . indexOf ( '.json' ) ) ;
2013-11-23 08:31:04 +09:00
return 'group/' + groupName + '/members' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
else if ( stream . substring ( 0 , 24 ) == 'statusnet/groups/admins/' ) {
var groupName = stream . substring ( stream . lastIndexOf ( '/' ) + 1 , stream . indexOf ( '.json' ) ) ;
2013-11-23 08:31:04 +09:00
return 'group/' + groupName + '/admins' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 24 ) == 'statusnet/tags/timeline/' ) {
var tagName = stream . substring ( stream . indexOf ( '/timeline/' ) + 10 , stream . indexOf ( '.json' ) ) ;
2013-11-23 08:31:04 +09:00
return 'tag/' + tagName ;
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
else if ( stream . substring ( 0 , 14 ) == 'statuses/show/' ) {
var noticeId = stream . substring ( stream . indexOf ( '/show/' ) + 6 , stream . indexOf ( '.json' ) ) ;
return 'notice/' + noticeId ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
else if ( stream . substring ( 0 , 11 ) == 'search.json' ) {
var searchTerms = stream . substring ( stream . indexOf ( '?q=' ) + 3 ) ;
2013-11-23 08:31:04 +09:00
return 'search/notice?q=' + searchTerms ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
2013-11-23 08:31:04 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-11-23 08:31:04 +09:00
· Sets the location bar in the browser to correspond with given stream
2015-07-02 02:15:31 +09:00
·
2013-11-23 08:31:04 +09:00
· @ param stream : the stream , e . g . 'public_timeline.json'
2015-07-02 02:15:31 +09:00
·
2013-11-23 08:31:04 +09:00
· · · · · · · · · * /
function setUrlFromStream ( stream ) {
history . pushState ( { strm : stream } , '' , '/' + convertStreamToPath ( stream ) ) ;
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Get stream from location bar
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param stream : the stream , e . g . 'public_timeline.json'
2015-07-02 02:15:31 +09:00
·
· · · · · · · · · * /
2013-08-19 22:30:57 +09:00
function getStreamFromUrl ( ) {
var loc = window . location . href . replace ( 'http://' , '' ) . replace ( 'https://' , '' ) . replace ( window . siteRootDomain , '' ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// default/fallback
2015-08-25 21:00:07 +09:00
if ( window . loggedIn ) {
var streamToSet = 'statuses/friends_timeline.json' ;
}
else if ( window . siteLocalOnlyDefaultPath ) {
var streamToSet = 'statuses/public_timeline.json' ;
}
else {
var streamToSet = 'statuses/public_and_external_timeline.json' ;
}
2015-07-02 02:15:31 +09:00
2014-01-29 03:42:47 +09:00
// main/all, i.e. full network
if ( loc == '/main/all' ) {
2014-05-16 11:07:30 +09:00
streamToSet = 'statuses/public_and_external_timeline.json' ;
2015-08-25 20:27:14 +09:00
}
// main/public, i.e. site's public timeline, new gnu social style
else if ( loc == '/main/public' ) {
streamToSet = 'statuses/public_timeline.json' ;
2014-01-29 03:42:47 +09:00
}
2013-11-23 08:31:04 +09:00
// {domain}/{screen_name} or {domain}/{screen_name}/
2014-01-29 03:42:47 +09:00
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . substring ( 0 , loc . length - 1 ) . replace ( '/' , '' ) ) ) ) {
2013-11-23 08:31:04 +09:00
var userToStream = loc . replace ( '/' , '' ) . replace ( '/' , '' ) ;
2013-08-19 22:30:57 +09:00
if ( userToStream . length > 0 ) {
streamToSet = 'statuses/user_timeline.json?screen_name=' + userToStream ;
}
}
// {domain}/{screen_name}/all
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/all' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/all' , '' ) ;
if ( userToStream . length > 0 ) {
2014-05-16 11:07:30 +09:00
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/friends_timeline.json' ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/friends_timeline.json?screen_name=' + userToStream ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// {domain}/{screen_name}/replies
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/replies' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/replies' , '' ) ;
if ( userToStream . length > 0 ) {
2014-05-16 11:07:30 +09:00
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/mentions.json' ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/mentions.json?screen_name=' + userToStream ;
2013-08-19 22:30:57 +09:00
}
}
}
2014-09-25 06:20:35 +09:00
// {domain}/{screen_name}/notifications
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/notifications' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/notifications' , '' ) ;
if ( userToStream . length > 0 ) {
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'qvitter/statuses/notifications.json' ;
2014-09-25 06:20:35 +09:00
}
else {
// not allowed for others than logged in user
window . location . replace ( window . siteInstanceURL ) ;
}
}
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// {domain}/{screen_name}/favorites
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/favorites' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/favorites' , '' ) ;
if ( userToStream . length > 0 ) {
2014-05-16 11:07:30 +09:00
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'favorites.json' ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
streamToSet = 'favorites.json?screen_name=' + userToStream ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// {domain}/{screen_name}/subscribers
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/subscribers' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/subscribers' , '' ) ;
if ( userToStream . length > 0 ) {
2014-05-16 11:07:30 +09:00
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/followers.json?count=20' ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/followers.json?count=20&screen_name=' + userToStream ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// {domain}/{screen_name}/subscriptions
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/subscriptions' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/subscriptions' , '' ) ;
if ( userToStream . length > 0 ) {
2014-05-16 11:07:30 +09:00
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/friends.json?count=20' ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
streamToSet = 'statuses/friends.json?count=20&screen_name=' + userToStream ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// {domain}/{screen_name}/groups
else if ( ( /^[a-zA-Z0-9]+$/ . test ( loc . replace ( '/' , '' ) . replace ( '/groups' , '' ) ) ) ) {
var userToStream = loc . replace ( '/' , '' ) . replace ( '/groups' , '' ) ;
if ( userToStream . length > 0 ) {
2014-05-16 11:07:30 +09:00
if ( window . loggedIn . screen _name == userToStream ) {
2015-07-02 02:15:31 +09:00
streamToSet = 'statusnet/groups/list.json?count=10' ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
streamToSet = 'statusnet/groups/list.json?count=10&screen_name=' + userToStream ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// {domain}/tag/{tag}
else if ( loc . indexOf ( '/tag/' ) > - 1 ) {
var tagToStream = loc . replace ( '/tag/' , '' ) ;
if ( tagToStream . length > 0 ) {
streamToSet = 'statusnet/tags/timeline/' + tagToStream + '.json' ;
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
2014-09-25 06:20:35 +09:00
// {domain}/notice/{notide_id}
else if ( loc . indexOf ( '/notice/' ) > - 1 ) {
var noticeToStream = loc . replace ( '/notice/' , '' ) ;
if ( noticeToStream . length > 0 ) {
streamToSet = 'statuses/show/' + noticeToStream + '.json' ;
}
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
2013-08-20 22:26:25 +09:00
// {domain}/group/{group}/members, {domain}/group/{group}/admins or {domain}/group/{group}
2015-07-02 02:15:31 +09:00
else if ( loc . indexOf ( '/group/' ) > - 1 ) {
2013-08-20 22:26:25 +09:00
if ( loc . indexOf ( '/members' ) > - 1 ) {
var groupToStream = loc . replace ( '/group/' , '' ) . replace ( '/members' , '' ) ;
if ( groupToStream . length > 0 ) {
streamToSet = 'statusnet/groups/membership/' + groupToStream + '.json?count=20' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
}
else if ( loc . indexOf ( '/admins' ) > - 1 ) {
var groupToStream = loc . replace ( '/group/' , '' ) . replace ( '/admins' , '' ) ;
if ( groupToStream . length > 0 ) {
streamToSet = 'statusnet/groups/admins/' + groupToStream + '.json?count=20' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
}
else {
var groupToStream = loc . replace ( '/group/' , '' ) ;
if ( groupToStream . length > 0 ) {
streamToSet = 'statusnet/groups/timeline/' + groupToStream + '.json' ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// {domain}/search/notice?q={urlencoded searh terms}
else if ( loc . indexOf ( '/search/notice?q=' ) > - 1 ) {
2015-01-20 22:45:42 +09:00
var searchToStream = replaceHtmlSpecialChars ( loc . replace ( '/search/notice?q=' , '' ) ) ;
2013-11-23 08:31:04 +09:00
if ( searchToStream . length > 0 ) {
2013-08-19 22:30:57 +09:00
streamToSet = 'search.json?q=' + searchToStream ;
}
2015-07-02 02:15:31 +09:00
}
return streamToSet ;
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Expand / de - expand queet
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param q : the stream item to expand
2013-11-23 08:31:04 +09:00
· @ param doScrolling : if we should scroll back to position or not
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2013-11-23 08:31:04 +09:00
function expand _queet ( q , doScrolling ) {
2015-07-02 02:15:31 +09:00
// don't do anything if this is a queet being posted
2014-11-24 21:47:45 +09:00
if ( q . hasClass ( 'temp-post' ) ) {
return ;
2015-07-02 02:15:31 +09:00
}
2014-11-24 21:47:45 +09:00
// don't expand if this is a remote profile popup
2015-06-05 16:13:36 +09:00
if ( q . closest ( '#popup-external-profile, #popup-local-profile' ) . length > 0 ) {
2014-11-24 21:47:45 +09:00
return ;
}
2015-07-02 02:15:31 +09:00
2013-11-23 08:31:04 +09:00
doScrolling = typeof doScrolling !== 'undefined' ? doScrolling : true ;
2013-08-19 22:30:57 +09:00
var qid = q . attr ( 'data-quitter-id' ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// de-expand if expanded
if ( q . hasClass ( 'expanded' ) && ! q . hasClass ( 'collapsing' ) ) {
2013-11-23 08:31:04 +09:00
var sel = getSelection ( ) . toString ( ) ;
2015-07-02 02:15:31 +09:00
if ( ! sel
2014-10-18 00:08:14 +09:00
&& ! q . find ( '.queet-button' ) . children ( 'button' ) . hasClass ( 'enabled' )
&& ! q . find ( '.queet-button' ) . children ( 'button' ) . hasClass ( 'too-long' ) ) { // don't collapse if text is selected, or if queet has an active queet button, or if queet text is too long
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
// remove some things right away
q . find ( '.inline-reply-caret' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
// "unplay" gif image on collapse if there's only one attachment (switch to thumb)
var gifToUnPlay = q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . children ( '.thumb-container.play-button' ) . children ( '.attachment-thumb[data-mime-type="image/gif"]' ) ;
if ( gifToUnPlay . length > 0 ) {
gifToUnPlay . attr ( 'src' , gifToUnPlay . attr ( 'data-thumb-url' ) ) ;
gifToUnPlay . parent ( '.thumb-container' ) . css ( 'background-image' , 'url(\'' + gifToUnPlay . attr ( 'data-thumb-url' ) + '\')' ) ;
}
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
// show thumbs (if hidden) and remove any iframe video immediately
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.queet-thumbs' ) . removeClass ( 'hide-thumbs' ) ;
2015-06-17 07:44:18 +09:00
q . children ( '.queet' ) . find ( 'iframe' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
2013-11-23 08:31:04 +09:00
q . addClass ( 'collapsing' ) ;
if ( q . hasClass ( 'conversation' ) ) {
2015-07-02 02:15:31 +09:00
q . removeClass ( 'expanded' ) ;
q . removeClass ( 'collapsing' ) ;
2013-11-23 08:31:04 +09:00
q . find ( '.view-more-container-top' ) . remove ( ) ;
q . find ( '.view-more-container-bottom' ) . remove ( ) ;
q . find ( '.stream-item.conversation' ) . remove ( ) ;
q . find ( '.inline-reply-queetbox' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
q . find ( '.expanded-content' ) . remove ( ) ;
2013-11-23 08:31:04 +09:00
}
else {
2015-07-02 02:15:31 +09:00
rememberMyScrollPos ( q . children ( '.queet' ) , qid , 0 ) ;
2014-01-29 03:42:47 +09:00
// give stream item a height
q . css ( 'height' , q . height ( ) + 'px' ) ;
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.expanded-content' ) . css ( 'height' , q . find ( '.expanded-content' ) . height ( ) + 'px' ) ;
2015-06-10 06:42:41 +09:00
q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . css ( 'max-height' , q . find ( '.queet-thumbs.thumb-num-1' ) . height ( ) + 'px' ) ;
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1 .thumb-container' ) . css ( 'max-height' , q . find ( '.queet-thumbs.thumb-num-1' ) . height ( ) + 'px' ) ;
2014-01-29 03:42:47 +09:00
q . children ( 'div' ) . not ( '.queet' ) . children ( 'a' ) . css ( 'opacity' , '0.5' ) ;
q . children ( 'div' ) . not ( '.queet' ) . children ( ) . children ( ) . css ( 'opacity' , '0.5' ) ;
2014-11-24 21:47:45 +09:00
var collapseTime = 100 + q . find ( '.stream-item.conversation:not(.hidden-conversation)' ) . length * 50 ;
2015-07-02 02:15:31 +09:00
2014-01-29 03:42:47 +09:00
// set transition time (needs to be delayed, otherwise webkit animates the height-setting above)
2015-07-02 02:15:31 +09:00
setTimeout ( function ( ) {
2014-01-29 03:42:47 +09:00
q . children ( '.queet' ) . css ( '-moz-transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
q . children ( '.queet' ) . css ( '-o-transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
q . children ( '.queet' ) . css ( '-webkit-transition-duration' , Math . round ( collapseTime * 1000 * 10 ) / 10 + 's' ) ;
q . children ( '.queet' ) . css ( 'transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
2015-06-10 06:42:41 +09:00
q . children ( '.queet' ) . find ( '.expanded-content, .queet-thumbs.thumb-num-1, .queet-thumbs.thumb-num-1 .thumb-container' ) . css ( '-moz-transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
q . children ( '.queet' ) . find ( '.expanded-content, .queet-thumbs.thumb-num-1, .queet-thumbs.thumb-num-1 .thumb-container' ) . css ( '-o-transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
q . children ( '.queet' ) . find ( '.expanded-content, .queet-thumbs.thumb-num-1, .queet-thumbs.thumb-num-1 .thumb-container' ) . css ( '-webkit-transition-duration' , Math . round ( collapseTime * 1000 * 10 ) / 10 + 's' ) ;
q . children ( '.queet' ) . find ( '.expanded-content, .queet-thumbs.thumb-num-1, .queet-thumbs.thumb-num-1 .thumb-container' ) . css ( 'transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
2014-01-29 03:42:47 +09:00
q . css ( '-moz-transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
q . css ( '-o-transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
q . css ( '-webkit-transition-duration' , Math . round ( collapseTime * 1000 * 10 ) / 10 + 's' ) ;
q . css ( 'transition-duration' , Math . round ( collapseTime / 1000 * 10 ) / 10 + 's' ) ;
// set new heights and margins to animate to
2015-06-10 06:42:41 +09:00
var animateToHeight = q . children ( '.queet' ) . outerHeight ( ) - q . find ( '.inline-reply-queetbox' ) . outerHeight ( ) - q . children ( '.queet' ) . find ( '.expanded-content' ) . outerHeight ( ) - Math . max ( 0 , q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . outerHeight ( ) - 250 ) - 2 ;
2014-11-24 21:47:45 +09:00
if ( animateToHeight < 73 ) { // no less than this
animateToHeight = 73 ;
}
q . css ( 'height' , animateToHeight + 'px' ) ;
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . css ( 'margin-top' , '-' + ( q . children ( '.queet' ) . offset ( ) . top - q . offset ( ) . top ) + 'px' ) ;
2015-06-10 06:42:41 +09:00
q . children ( '.queet' ) . find ( '.expanded-content' ) . css ( 'height' , '0' ) ;
q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1, .queet-thumbs.thumb-num-1 .thumb-container' ) . css ( 'max-height' , '250px' ) ;
2015-07-02 02:15:31 +09:00
2015-06-10 06:42:41 +09:00
if ( doScrolling ) {
setTimeout ( function ( ) {
backToMyScrollPos ( q , qid , 500 , function ( ) {
cleanUpAfterCollapseQueet ( q ) ;
} ) ;
} , collapseTime ) ;
}
else {
setTimeout ( function ( ) {
2015-07-02 02:15:31 +09:00
cleanUpAfterCollapseQueet ( q ) ;
} , collapseTime ) ;
2015-06-10 06:42:41 +09:00
}
2015-07-02 02:15:31 +09:00
} , 50 ) ;
}
2013-11-23 08:31:04 +09:00
}
2013-08-19 22:30:57 +09:00
}
2014-09-25 06:20:35 +09:00
else if ( ! q . hasClass ( 'collapsing' ) ) {
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
// not for acitivity or notifications
if ( ! q . hasClass ( 'activity' ) && ! q . hasClass ( 'repeat' ) && ! q . hasClass ( 'like' ) && ! q . hasClass ( 'follow' ) ) {
2015-07-02 02:15:31 +09:00
2014-11-24 21:47:45 +09:00
q . addClass ( 'expanded' ) ;
q . prev ( ) . addClass ( 'next-expanded' ) ;
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// if shortened queet, get full text
if ( q . children ( '.queet' ) . find ( 'span.attachment.more' ) . length > 0 ) {
var attachmentId = q . children ( '.queet' ) . find ( 'span.attachment.more' ) . attr ( 'data-attachment-id' ) ;
2015-07-02 02:15:31 +09:00
2015-02-26 07:46:32 +09:00
// get full html for queet, first try localstorage cache
2015-07-02 23:57:51 +09:00
var cacheData = localStorageObjectCache _GET ( 'fullQueetHtml' , qid ) ;
if ( cacheData ) {
q . children ( '.queet' ) . find ( '.queet-text' ) . html ( cacheData ) ;
q . children ( '.queet' ) . outerHTML ( detectRTL ( q . children ( '.queet' ) . outerHTML ( ) ) ) ;
}
else {
getFromAPI ( "attachment/" + attachmentId + ".json" , function ( data ) {
if ( data ) {
localStorageObjectCache _STORE ( 'fullQueetHtml' , qid , data ) ;
q . children ( '.queet' ) . find ( '.queet-text' ) . html ( $ . trim ( data ) ) ;
q . children ( '.queet' ) . outerHTML ( detectRTL ( q . children ( '.queet' ) . outerHTML ( ) ) ) ;
}
} ) ;
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// add expanded container
var longdate = parseTwitterLongDate ( q . find ( '.created-at' ) . attr ( 'data-created-at' ) ) ;
var qurl = q . find ( '.created-at' ) . find ( 'a' ) . attr ( 'href' ) ;
2015-07-02 02:15:31 +09:00
2013-11-23 08:31:04 +09:00
var metadata = '<span class="longdate" title="' + longdate + '">' + longdate + ' · ' + unescape ( q . attr ( 'data-source' ) ) + '</span> · <a href="' + qurl + '" class="permalink-link">' + window . sL . details + '</a>' ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// show expanded content
2015-07-02 02:15:31 +09:00
q . find ( '.stream-item-footer' ) . before ( '<div class="expanded-content"><div class="queet-stats-container"></div><div class="client-and-actions"><span class="metadata">' + metadata + '</span></div></div>' ) ;
2015-06-17 07:44:18 +09:00
// "play" gif image on expand if there's only one attachment (switch to full gif from thumb)
var gifToPlay = q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . children ( '.thumb-container.play-button' ) . children ( '.attachment-thumb[data-mime-type="image/gif"]' ) ;
if ( gifToPlay . length > 0 ) {
gifToPlay . attr ( 'src' , gifToPlay . attr ( 'data-full-image-url' ) ) ;
gifToPlay . parent ( '.thumb-container' ) . css ( 'background-image' , 'url(\'' + gifToPlay . attr ( 'data-full-image-url' ) + '\')' ) ;
2015-02-25 04:44:48 +09:00
}
2015-06-17 07:44:18 +09:00
// if there's only one thumb and it's a youtube video, show it inline
if ( q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . children ( '.thumb-container.play-button.youtube' ) . length == 1 ) {
var youtubeId = q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . children ( '.thumb-container.play-button.youtube' ) . children ( '.attachment-thumb' ) . attr ( 'data-full-image-url' ) . replace ( 'http://www.youtube.com/watch?v=' , '' ) . replace ( 'https://www.youtube.com/watch?v=' , '' ) . replace ( 'http://youtu.be/' , '' ) . replace ( 'https://youtu.be/' , '' ) . substr ( 0 , 11 ) ;
if ( q . children ( '.queet' ) . find ( '.expanded-content' ) . children ( '.media' ) . children ( 'iframe[src="//www.youtube.com/embed/' + youtubeId + '"]' ) . length < 1 ) { // not if already showed
// hide video thumbnail if it's the only one
if ( q . children ( '.queet' ) . find ( '.queet-thumbs' ) . children ( '.thumb-container' ) . length < 2 ) {
q . children ( '.queet' ) . find ( '.queet-thumbs' ) . addClass ( 'hide-thumbs' ) ;
}
// show video
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.expanded-content' ) . prepend ( '<div class="media"><iframe width="510" height="315" src="//www.youtube.com/embed/' + youtubeId + '" frameborder="0" allowfullscreen></iframe></div>' ) ;
}
2015-06-17 07:44:18 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
// show certain attachments in expanded content
2015-06-17 09:16:03 +09:00
if ( q . data ( 'attachments' ) != 'undefined' ) {
$ . each ( q . data ( 'attachments' ) , function ( ) {
2015-07-02 02:15:31 +09:00
2015-06-17 09:16:03 +09:00
var attachment _mimetype = this . mimetype ;
2015-07-02 02:15:31 +09:00
var attachment _title = this . url ;
2015-06-17 09:16:03 +09:00
// filename extension
var attachment _title _extension = attachment _title . substr ( ( ~ - attachment _title . lastIndexOf ( "." ) >>> 0 ) + 2 ) ;
2014-05-12 07:23:57 +09:00
2015-06-17 09:16:03 +09:00
// attachments in the content link to /attachment/etc url and not direct to image/video, link is in title
if ( typeof attachment _title != 'undefined' ) {
2015-07-02 02:15:31 +09:00
2015-06-17 09:16:03 +09:00
// hack to make remote webm-movies load
if ( attachment _title _extension == 'webm' ) {
attachment _mimetype = 'video/webm' ;
}
2015-02-25 10:11:32 +09:00
2015-06-17 09:16:03 +09:00
// videos
if ( $ . inArray ( attachment _mimetype , [ 'video/mp4' , 'video/ogg' , 'video/quicktime' , 'video/webm' ] ) >= 0 ) {
if ( q . children ( '.queet' ) . find ( '.expanded-content' ) . children ( '.media' ) . children ( 'video' ) . children ( 'source[href="' + attachment _title + '"]' ) . length < 1 ) { // not if already showed
// local attachment with a thumbnail
var attachment _poster = '' ;
if ( typeof this . thumb _url != 'undefined' ) {
attachment _poster = ' poster="' + this . thumb _url + '"' ;
}
if ( q . children ( '.queet' ) . find ( '.expanded-content' ) . children ( '.media' ) . length > 0 ) {
q . children ( '.queet' ) . find ( '.media' ) . last ( ) . after ( '<div class="media"><video class="u-video" controls="controls"' + attachment _poster + '><source type="' + attachment _mimetype + '" src="' + attachment _title + '" /></video></div>' ) ;
}
else {
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.expanded-content' ) . prepend ( '<div class="media"><video class="u-video" controls="controls"' + attachment _poster + '><source type="' + attachment _mimetype + '" src="' + attachment _title + '" /></video></div>' ) ;
2015-06-17 09:16:03 +09:00
}
}
2015-02-25 10:11:32 +09:00
}
2015-06-17 09:16:03 +09:00
else {
// other plugins, e.g. gotabulo, can check for other attachment file formats to expand
window . currentlyExpanding = {
"attachment_title" : attachment _title ,
"attachment_mimetype" : attachment _mimetype ,
"attachment_title_extension" : attachment _title _extension ,
"streamItem" : q ,
2015-07-02 02:15:31 +09:00
"thisAttachmentLink" : $ ( this )
2015-06-17 09:16:03 +09:00
} ;
$ ( document ) . trigger ( 'qvitterExpandOtherAttachments' ) ;
}
2015-03-03 08:33:18 +09:00
}
2015-07-02 02:15:31 +09:00
} ) ;
2015-06-17 09:16:03 +09:00
}
2013-08-19 22:30:57 +09:00
2015-02-26 05:16:24 +09:00
// get and show favs and repeats
2015-07-02 02:15:31 +09:00
getFavsAndRequeetsForQueet ( q , qid ) ;
2013-08-19 22:30:57 +09:00
// show conversation and reply form (but not if already in conversation)
if ( ! q . hasClass ( 'conversation' ) ) {
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// show conversation (wait for css to animate the margin 50ms)
setTimeout ( function ( ) {
getConversation ( q , qid ) ;
} , 50 ) ;
2015-07-02 02:15:31 +09:00
2013-09-03 01:13:15 +09:00
// show inline reply form if logged in
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' ) {
q . children ( '.queet' ) . append ( replyFormHtml ( q , qid ) ) ;
2015-07-02 23:57:51 +09:00
// if we have cached text, expand the reply form and add that
var queetBox = q . children ( '.queet' ) . find ( '.queet-box' ) ;
var cachedText = decodeURIComponent ( queetBox . attr ( 'data-cached-text' ) ) ;
var cachedTextText = $ ( '<div/>' ) . html ( cachedText ) . text ( ) ;
if ( cachedText != 'undefined' ) {
queetBox . click ( ) ;
queetBox . html ( cachedText ) ;
setSelectionRange ( queetBox [ 0 ] , cachedTextText . length , cachedTextText . length ) ;
queetBox . trigger ( 'input' ) ;
}
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
}
2014-11-24 21:47:45 +09:00
function cleanUpAfterCollapseQueet ( q ) {
q . css ( 'height' , 'auto' ) ;
q . children ( '.queet' ) . css ( 'margin-top' , '0' ) ;
q . removeClass ( 'expanded' ) ;
2015-07-02 02:15:31 +09:00
q . prev ( ) . removeClass ( 'next-expanded' ) ;
q . removeClass ( 'collapsing' ) ;
q . find ( '.expanded-content' ) . remove ( ) ;
2014-11-24 21:47:45 +09:00
q . find ( '.view-more-container-top' ) . remove ( ) ;
q . find ( '.view-more-container-bottom' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
q . find ( '.inline-reply-queetbox' ) . remove ( ) ;
q . find ( '.stream-item.conversation' ) . remove ( ) ;
q . find ( '.show-full-conversation' ) . remove ( ) ;
q . removeAttr ( 'style' ) ;
2014-11-24 21:47:45 +09:00
q . children ( '.queet' ) . removeAttr ( 'style' ) ;
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1' ) . removeAttr ( 'style' ) ;
q . children ( '.queet' ) . find ( '.queet-thumbs.thumb-num-1 .thumb-container' ) . css ( 'max-height' , '' ) ;
2014-11-24 21:47:45 +09:00
}
2014-05-28 03:40:51 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2014-05-28 03:40:51 +09:00
· Get an inline queet box
2015-07-02 02:15:31 +09:00
·
2014-05-28 03:40:51 +09:00
· @ return the html for the queet box
·
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2014-05-28 03:40:51 +09:00
function queetBoxHtml ( ) {
var startText = encodeURIComponent ( window . sL . compose ) ;
2015-07-02 02:15:31 +09:00
return '<div class="inline-reply-queetbox"><div class="queet-box queet-box-syntax" data-start-text="' + startText + '">' + decodeURIComponent ( startText ) + '</div><div class="syntax-middle"></div><div class="syntax-two" contenteditable="true"></div><div class="mentions-suggestions"></div><div class="queet-toolbar toolbar-reply"><div class="queet-box-extras"><button class="upload-image"></button><button class="shorten disabled">URL</button></div><div class="queet-button"><span class="queet-counter"></span><button>' + window . sL . queetVerb + '</button></div></div></div>' ;
2014-05-28 03:40:51 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Get a reply form
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param q : the stream item to open reply form in
· @ param qid : queet id
· @ return the html for the reply form
·
· · · · · · · · · * /
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
function replyFormHtml ( q , qid ) {
2015-07-02 23:57:51 +09:00
// if we have cached text in localstorage
var data = localStorageObjectCache _GET ( 'queetBoxInput' , 'queet-box-' + qid ) ;
if ( data ) {
var cachedText = encodeURIComponent ( data ) ;
}
// get all @:s
2013-11-29 20:49:54 +09:00
var user _screen _name = q . children ( '.queet' ) . find ( '.screen-name' ) . html ( ) . substring ( 1 ) ;
2013-08-19 22:30:57 +09:00
var user _screen _name _html = '<a>@' + user _screen _name + '</a>' ;
2015-07-02 02:15:31 +09:00
var user _screen _name _text = '@' + user _screen _name ;
2013-08-19 22:30:57 +09:00
var reply _to _screen _name = '' ;
2015-07-02 02:15:31 +09:00
var reply _to _screen _name _html = '' ;
var reply _to _screen _name _text = '' ;
2013-08-19 22:30:57 +09:00
if ( q . attr ( 'data-in-reply-to-screen-name' ) . length > 0 // not if not a reply
&& q . attr ( 'data-in-reply-to-screen-name' ) != $ ( '#user-screen-name' ) . html ( ) // not if it's me
&& q . attr ( 'data-in-reply-to-screen-name' ) != user _screen _name // not same screen name twice
) {
2015-07-02 02:15:31 +09:00
reply _to _screen _name = q . attr ( 'data-in-reply-to-screen-name' ) ;
reply _to _screen _name _html = ' <a>@' + reply _to _screen _name + '</a>' ;
reply _to _screen _name _text = ' @' + reply _to _screen _name ;
2013-08-19 22:30:57 +09:00
}
var more _reply _tos = '' ;
2015-07-02 02:15:31 +09:00
var more _reply _tos _text = '' ;
2013-11-29 20:49:54 +09:00
$ . each ( q . children ( '.queet' ) . find ( '.queet-text' ) . find ( '.mention' ) , function ( key , obj ) {
2015-06-17 09:16:03 +09:00
var thisMention = $ ( obj ) . html ( ) . replace ( '@' , '' ) ;
if ( thisMention != user _screen _name && thisMention != reply _to _screen _name && thisMention != $ ( '#user-screen-name' ) . html ( ) ) {
more _reply _tos = more _reply _tos + ' <a>@' + thisMention + '</a>' ;
2015-07-02 02:15:31 +09:00
more _reply _tos _text = more _reply _tos _text + ' @' + thisMention ;
2013-08-19 22:30:57 +09:00
}
} ) ;
2015-07-02 02:15:31 +09:00
2015-07-02 23:57:51 +09:00
var startText = window . sL . replyTo + ' ' + user _screen _name _html + reply _to _screen _name _html + more _reply _tos + ' <br>' ;
var repliesText = user _screen _name _text + reply _to _screen _name _text + more _reply _tos _text + ' ' ;
startText = encodeURIComponent ( startText ) ;
repliesText = encodeURIComponent ( repliesText ) ;
return '<div class="inline-reply-queetbox"><span class="inline-reply-caret"><span class="caret-inner"></span></span><img class="reply-avatar" src="' + $ ( '#user-avatar' ) . attr ( 'src' ) + '" /><div class="queet-box queet-box-syntax" id="queet-box-' + qid + '" data-start-text="' + startText + '" data-replies-text="' + repliesText + '" data-cached-text="' + cachedText + '">' + decodeURIComponent ( startText ) + '</div><div class="syntax-middle"></div><div class="syntax-two" contenteditable="true"></div><div class="mentions-suggestions"></div><div class="queet-toolbar toolbar-reply"><div class="queet-box-extras"><button class="upload-image"></button><button class="shorten disabled">URL</button></div><div class="queet-button"><span class="queet-counter"></span><button>' + window . sL . queetVerb + '</button></div></div></div>' ;
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Popup for replies , deletes , etc
2015-07-02 02:15:31 +09:00
·
2013-08-19 22:30:57 +09:00
· @ param popupId : popups id
· @ param heading : popops header
2015-07-02 02:15:31 +09:00
· @ param bodyHtml : popups body html
· @ param footerHtml : popups footer html
·
· · · · · · · · · · · · · * /
2013-08-19 22:30:57 +09:00
2015-06-10 06:42:41 +09:00
function popUpAction ( popupId , heading , bodyHtml , footerHtml , popUpWidth ) {
2014-11-24 21:47:45 +09:00
$ ( '.modal-container' ) . remove ( ) ; // remove any open popups
2013-08-19 22:30:57 +09:00
var allFooterHtml = '' ;
if ( footerHtml ) {
allFooterHtml = '<div class="modal-footer">' + footerHtml + '</div>' ;
}
2015-07-02 02:15:31 +09:00
$ ( 'body' ) . prepend ( '<div id="' + popupId + '" class="modal-container"><div class="modal-draggable"><div class="modal-content"><button class="modal-close" type="button"><span class="icon"></span></button><div class="modal-header"><h3 class="modal-title">' + heading + '</h3></div><div class="modal-body">' + bodyHtml + '</div>' + allFooterHtml + '</div></div></div>' ) ;
2015-06-10 06:42:41 +09:00
var thisPopUp = $ ( '#' + popupId ) . children ( '.modal-draggable' ) ;
if ( typeof popUpWidth != 'undefined' ) {
thisPopUp . width ( popUpWidth ) ;
}
centerPopUp ( thisPopUp ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-10 06:42:41 +09:00
function centerPopUp ( thisPopUp ) {
thisPopUp . css ( 'margin-top' , '' ) ;
2015-07-02 02:15:31 +09:00
thisPopUp . css ( 'margin-left' , '' ) ;
2015-06-10 06:42:41 +09:00
var this _modal _height = thisPopUp . height ( ) ;
var this _modal _width = thisPopUp . width ( ) ;
var popupPos = thisPopUp . offset ( ) . top - $ ( window ) . scrollTop ( ) ;
2013-08-19 22:30:57 +09:00
if ( ( popupPos - ( this _modal _height / 2 ) ) < 5 ) {
var marginTop = 5 - popupPos ;
}
else {
var marginTop = 0 - this _modal _height / 2 ;
}
2015-06-10 06:42:41 +09:00
thisPopUp . css ( 'margin-top' , marginTop + 'px' ) ;
2015-07-02 02:15:31 +09:00
thisPopUp . css ( 'margin-left' , '-' + ( this _modal _width / 2 ) + 'px' ) ;
2015-06-10 06:42:41 +09:00
thisPopUp . draggable ( { handle : ".modal-header" } ) ;
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2015-02-26 05:16:24 +09:00
· Get and show conversation
2013-08-19 22:30:57 +09:00
·
2015-07-02 02:15:31 +09:00
· This function has grown into a monster , needs fixing
·
· · · · · · · · · · · · · * /
2013-08-19 22:30:57 +09:00
2015-02-26 05:16:24 +09:00
function getConversation ( q , qid ) {
2015-01-27 09:57:08 +09:00
2015-02-26 05:16:24 +09:00
// check if we have a conversation for this notice cached in localstorage
2015-07-02 23:57:51 +09:00
var cacheData = localStorageObjectCache _GET ( 'conversation' , q . attr ( 'data-conversation-id' ) ) ;
if ( cacheData ) {
showConversation ( q , qid , cacheData ) ;
}
2015-02-26 05:16:24 +09:00
// always get most recent conversation from server
2015-07-02 02:15:31 +09:00
getFromAPI ( 'statusnet/conversation/' + q . attr ( 'data-conversation-id' ) + '.json?count=100' , function ( data ) { if ( data ) {
2014-11-24 21:47:45 +09:00
2015-02-26 05:16:24 +09:00
// cache in localstorage
2015-03-06 07:35:08 +09:00
localStorageObjectCache _STORE ( 'conversation' , q . attr ( 'data-conversation-id' ) , data ) ;
2013-11-23 08:31:04 +09:00
2015-07-02 02:15:31 +09:00
showConversation ( q , qid , data ) ;
2015-02-26 05:16:24 +09:00
} } ) ;
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
function showConversation ( q , qid , data ) {
rememberMyScrollPos ( q . children ( '.queet' ) , qid , 0 ) ;
2015-07-02 02:15:31 +09:00
if ( data && ! q . hasClass ( 'collapsing' ) ) {
2014-05-12 20:20:26 +09:00
2015-02-26 05:16:24 +09:00
if ( data . length > 1 ) {
var before _or _after = 'before' ;
$ . each ( data . reverse ( ) , function ( key , obj ) {
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// switch to append after original queet
2015-07-02 02:15:31 +09:00
if ( obj . id == qid ) {
2015-02-26 05:16:24 +09:00
before _or _after = 'after' ;
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// don't add clicked queet to DOM, but all else
// note: first we add the full conversation, but hidden
if ( obj . id != qid ) {
2015-07-02 02:15:31 +09:00
var queetTime = parseTwitterDate ( obj . created _at ) ;
2015-02-26 05:16:24 +09:00
if ( obj . source == 'activity' ) {
var queetHtml = '<div id="conversation-stream-item-' + obj . id + '" class="stream-item conversation activity hidden-conversation" data-source="' + escape ( obj . source ) + '" data-quitter-id="' + obj . id + '" data-quitter-id-in-stream="' + obj . id + '"><div class="queet" id="conversation-q-' + obj . id + '"><div class="queet-content"><div class="stream-item-header"><small class="created-at" data-created-at="' + obj . created _at + '"><a>' + queetTime + '</a></small></div><div class="queet-text">' + $ . trim ( obj . statusnet _html ) + '</div></div></div></div>' ;
2015-06-17 09:16:03 +09:00
// detect rtl
queetHtml = detectRTL ( queetHtml ) ;
2015-02-26 05:16:24 +09:00
}
else {
var queetHtml = buildQueetHtml ( obj , obj . id , 'conversation hidden-conversation' , false , true ) ;
2015-07-02 02:15:31 +09:00
}
2015-02-26 05:16:24 +09:00
if ( q . hasClass ( 'expanded' ) ) { // add queet to conversation only if still expanded
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// replace already existing queets' html
if ( q . children ( '#conversation-stream-item-' + obj . id ) . length > 0 ) {
var streamItemInnerHtml = $ ( '<div/>' ) . append ( queetHtml ) . find ( '.stream-item' ) . html ( ) ;
q . children ( '#conversation-stream-item-' + obj . id ) . html ( streamItemInnerHtml ) ;
2015-07-02 02:15:31 +09:00
2014-11-24 21:47:45 +09:00
}
2015-02-26 05:16:24 +09:00
else if ( before _or _after == 'before' ) {
q . children ( '.queet' ) . before ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
else {
2015-02-26 05:16:24 +09:00
if ( q . children ( '.queet' ) . nextAll ( '.conversation' ) . length < 1 ) {
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . after ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . nextAll ( '.conversation' ) . last ( ) . after ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
convertAttachmentMoreHref ( ) ;
2015-02-26 05:16:24 +09:00
} ) ;
2013-08-19 22:30:57 +09:00
}
else {
remove _spinner ( ) ;
2015-02-26 05:16:24 +09:00
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// loop trough this stream items conversation and show the "strict" line of replies
findInReplyToStatusAndShow ( q , qid , q . attr ( 'data-in-reply-to-status-id' ) , true , false ) ;
backToMyScrollPos ( q . children ( '.queet' ) , qid , false ) ;
findAndMarkLastVisibleInConversation ( q ) ;
}
else {
remove _spinner ( ) ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
2014-11-26 08:58:56 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2014-11-26 08:58:56 +09:00
· Add last visible class , since that ' s not possible to select in pure css
·
2015-07-02 02:15:31 +09:00
· · · · · · · · · · · · · * /
2014-11-26 08:58:56 +09:00
function findAndMarkLastVisibleInConversation ( streamItem ) {
streamItem . children ( ) . removeClass ( 'last-visible' ) ;
2015-07-02 02:15:31 +09:00
streamItem . children ( ) . removeClass ( 'first-visible-after-parent' ) ;
2014-11-26 09:51:07 +09:00
streamItem . children ( ) . not ( '.hidden-conversation' ) . last ( ) . addClass ( 'last-visible' ) ;
2015-07-02 02:15:31 +09:00
streamItem . children ( '.queet' ) . nextAll ( ) . not ( '.hidden-conversation' ) . first ( ) . addClass ( 'first-visible-after-parent' ) ;
2014-11-26 08:58:56 +09:00
}
2013-08-19 22:30:57 +09:00
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Recursive walker functions to view onlt reyplies to replies , not full conversation
·
2015-07-02 02:15:31 +09:00
· · · · · · · · · · · · · * /
2015-02-26 05:16:24 +09:00
function findInReplyToStatusAndShow ( q , qid , reply , only _first , onlyINreplyto ) {
2013-08-19 22:30:57 +09:00
var reply _found = $ ( '#stream-item-' + qid ) . find ( '.stream-item[data-quitter-id="' + reply + '"]' ) ;
2015-07-02 02:15:31 +09:00
var reply _found _reply _to = $ ( '#stream-item-' + qid ) . find ( '.stream-item[data-quitter-id="' + reply _found . attr ( 'data-in-reply-to-status-id' ) + '"]' ) ;
2013-08-19 22:30:57 +09:00
if ( reply _found . length > 0 ) {
reply _found . removeClass ( 'hidden-conversation' ) ;
2014-01-29 03:42:47 +09:00
reply _found . css ( 'opacity' , '1' ) ;
2013-08-19 22:30:57 +09:00
if ( only _first && reply _found _reply _to . length > 0 ) {
2015-02-26 05:16:24 +09:00
if ( q . children ( '.view-more-container-top' ) . length < 1 ) {
2015-07-02 02:15:31 +09:00
if ( q . children ( '.queet' ) . prevAll ( '.hidden-conversation' ) . length > 0 ) {
q . prepend ( '<div class="view-more-container-top" data-trace-from="' + reply + '"><a>' + window . sL . viewMoreInConvBefore + '</a></div>' ) ;
2015-03-30 06:38:45 +09:00
}
2015-02-26 05:16:24 +09:00
}
findReplyToStatusAndShow ( q , qid , qid , true ) ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
findInReplyToStatusAndShow ( q , qid , reply _found . attr ( 'data-in-reply-to-status-id' ) , false , onlyINreplyto ) ;
2013-08-19 22:30:57 +09:00
}
}
else if ( ! onlyINreplyto ) {
2015-02-26 05:16:24 +09:00
findReplyToStatusAndShow ( q , qid , qid , true ) ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
checkForHiddenConversationQueets ( q , qid ) ;
}
2013-08-19 22:30:57 +09:00
}
// recursive function to find the replies to a status
2015-02-26 05:16:24 +09:00
function findReplyToStatusAndShow ( q , qid , this _id , only _first ) {
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
var replies _found = q . find ( '.stream-item[data-in-reply-to-status-id="' + this _id + '"]' ) ;
$ . each ( replies _found , function ( k , reply _found ) {
var reply _founds _reply = q . find ( '.stream-item[data-in-reply-to-status-id="' + $ ( reply _found ) . attr ( 'data-quitter-id' ) + '"]' ) ;
$ ( reply _found ) . removeClass ( 'hidden-conversation' ) ;
$ ( reply _found ) . css ( 'opacity' , '1' ) ;
2015-07-02 02:15:31 +09:00
2014-01-29 03:42:47 +09:00
if ( ! only _first ) {
2015-02-26 05:16:24 +09:00
findReplyToStatusAndShow ( q , qid , $ ( this ) . attr ( 'data-quitter-id' ) , false ) ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
if ( only _first && reply _founds _reply . length > 0 ) {
2015-02-26 05:16:24 +09:00
if ( q . children ( '.view-more-container-bottom' ) . length < 1 ) {
2015-07-02 02:15:31 +09:00
if ( q . children ( '.queet' ) . nextAll ( '.hidden-conversation' ) . length > 0 ) {
q . append ( '<div class="view-more-container-bottom" data-replies-after="' + qid + '"><a>' + window . sL . viewMoreInConvAfter + '</a></div>' ) ;
}
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
} ) ;
2015-07-02 02:15:31 +09:00
checkForHiddenConversationQueets ( q , qid ) ;
2013-08-19 22:30:57 +09:00
}
// helper function for the above recursive functions
2015-02-26 05:16:24 +09:00
function checkForHiddenConversationQueets ( q , qid ) {
2013-08-19 22:30:57 +09:00
// here we check if there are any remaining hidden queets in conversation, if there are, we put a "show full conversation"-link
2015-02-26 05:16:24 +09:00
if ( q . find ( '.hidden-conversation' ) . length > 0 ) {
if ( q . children ( '.queet' ) . find ( '.show-full-conversation' ) . length == 0 ) {
2015-07-02 02:15:31 +09:00
q . children ( '.queet' ) . find ( '.stream-item-footer' ) . append ( '<span class="show-full-conversation" data-stream-item-id="' + qid + '">' + window . sL . expandFullConversation + '</span>' ) ;
2014-11-24 21:47:45 +09:00
// if this is a single notice, we show conversation
if ( window . currentStream . substring ( 0 , 14 ) == 'statuses/show/' ) {
2015-02-26 05:16:24 +09:00
q . children ( '.queet' ) . find ( '.show-full-conversation' ) . trigger ( 'click' ) ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
}
else {
2015-02-26 05:16:24 +09:00
q . children ( '.queet' ) . find ( '.show-full-conversation' ) . remove ( ) ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
/ * ·
·
2013-08-19 22:30:57 +09:00
· Build stream items and add them to feed
·
· Also a function that has grown out of control ... Needs total makeover
·
2015-07-02 02:15:31 +09:00
· · · · · · · · · · · · · * /
2014-10-17 23:06:39 +09:00
function addToFeed ( feed , after , extraClasses , isReply ) {
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
// some streams, e.g. /statuses/show/1234.json is not enclosed in an array, make sure it is
if ( ! $ . isArray ( feed ) ) {
2015-07-02 02:15:31 +09:00
feed = [ feed ] ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
$ . each ( feed . reverse ( ) , function ( key , obj ) {
2015-07-02 02:15:31 +09:00
var extraClassesThisRun = extraClasses ;
2014-11-24 21:47:45 +09:00
// is this a temp-post-placeholder?
var isTempPost = false ;
if ( after ) {
if ( after . indexOf ( 'stream-item-temp-post' ) > - 1 ) {
2015-07-02 02:15:31 +09:00
isTempPost = true ;
2014-11-24 21:47:45 +09:00
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
2015-06-19 03:55:46 +09:00
2014-10-17 23:06:39 +09:00
// if this is the notifications feed, but not if it is a reply
if ( window . currentStream . substring ( 0 , 35 ) == 'qvitter/statuses/notifications.json'
2015-07-02 02:15:31 +09:00
&& ! isReply ) {
2014-11-14 08:48:02 +09:00
// don't show any notices with object_type "activity"
2014-11-24 21:47:45 +09:00
if ( typeof obj . notice != 'undefined' && obj . notice !== null && obj . notice . is _activity === true ) {
2014-11-14 08:48:02 +09:00
return true ;
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
// only if this notification isn't already in stream
2015-07-02 02:15:31 +09:00
if ( $ ( '#feed-body > .stream-item[data-quitter-id-in-stream="' + obj . id + '"]' ) . length == 0 ) {
2014-09-25 06:20:35 +09:00
obj . from _profile . description = obj . from _profile . description || '' ;
2015-07-02 02:15:31 +09:00
var notificationTime = parseTwitterDate ( obj . created _at ) ;
2014-09-25 06:20:35 +09:00
if ( obj . is _seen == '0' ) {
extraClassesThisRun = extraClassesThisRun + ' not-seen'
}
2015-07-02 02:15:31 +09:00
2014-11-24 21:47:45 +09:00
// external
var ostatusHtml = '' ;
if ( obj . from _profile . is _local === false ) {
2015-02-25 06:50:31 +09:00
ostatusHtml = '<a target="_blank" title="' + window . sL . goToOriginalNotice + '" class="ostatus-link" href="' + obj . from _profile . statusnet _profile _url + '"></a>' ;
2014-11-24 21:47:45 +09:00
}
2015-07-02 02:15:31 +09:00
if ( obj . ntype == 'like' ) {
2014-09-25 06:20:35 +09:00
var noticeTime = parseTwitterDate ( obj . notice . created _at ) ;
2015-06-19 03:55:46 +09:00
var notificationHtml = '<div data-quitter-id-in-stream="' + obj . id + '" id="stream-item-n-' + obj . id + '" class="stream-item ' + extraClassesThisRun + ' notification like"><div class="queet"><div class="dogear"></div>' + ostatusHtml + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj . from _profile . statusnet _profile _url + '"></span><img class="avatar" src="' + obj . from _profile . profile _image _url + '" /><strong class="name" data-user-id="' + obj . from _profile . id + '" title="@' + obj . from _profile . screen _name + '">' + obj . from _profile . name + '</strong></a> ' + window . sL . xFavedYourQueet + '<small class="created-at" data-created-at="' + obj . created _at + '" title="' + obj . created _at + '">' + notificationTime + '</small></div><div class="small-grey-notice"><a href="' + window . siteInstanceURL + 'notice/' + obj . notice . id + '">' + noticeTime + '</a>: ' + $ . trim ( obj . notice . statusnet _html ) + '</div></div></div></div>' ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
else if ( obj . ntype == 'repeat' ) {
2014-09-25 06:20:35 +09:00
var noticeTime = parseTwitterDate ( obj . notice . created _at ) ;
2015-06-19 03:55:46 +09:00
var notificationHtml = '<div data-quitter-id-in-stream="' + obj . id + '" id="stream-item-n-' + obj . id + '" class="stream-item ' + extraClassesThisRun + ' notification repeat"><div class="queet"><div class="queet-content"><div class="dogear"></div>' + ostatusHtml + '<div class="stream-item-header"><a class="account-group" href="' + obj . from _profile . statusnet _profile _url + '"><img class="avatar" src="' + obj . from _profile . profile _image _url + '" /><strong class="name" data-user-id="' + obj . from _profile . id + '" title="@' + obj . from _profile . screen _name + '">' + obj . from _profile . name + '</strong></a> ' + window . sL . xRepeatedYourQueet + '<small class="created-at" data-created-at="' + obj . created _at + '" title="' + obj . created _at + '">' + notificationTime + '</small></div><div class="small-grey-notice"><a href="' + window . siteInstanceURL + 'notice/' + obj . notice . id + '">' + noticeTime + '</a>: ' + $ . trim ( obj . notice . statusnet _html ) + '</div></div></div></div>' ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
else if ( obj . ntype == 'mention' ) {
2014-09-25 06:20:35 +09:00
var notificationHtml = buildQueetHtml ( obj . notice , obj . id , extraClassesThisRun + ' notification mention' ) ;
2015-07-02 02:15:31 +09:00
}
else if ( obj . ntype == 'reply' ) {
2014-09-25 06:20:35 +09:00
var notificationHtml = buildQueetHtml ( obj . notice , obj . id , extraClassesThisRun + ' notification reply' ) ;
2015-07-02 02:15:31 +09:00
}
else if ( obj . ntype == 'follow' ) {
2014-11-24 21:47:45 +09:00
var notificationHtml = '<div data-quitter-id-in-stream="' + obj . id + '" id="stream-item-n-' + obj . id + '" class="stream-item ' + extraClassesThisRun + ' notification follow"><div class="queet"><div class="queet-content">' + ostatusHtml + '<div class="stream-item-header"><a class="account-group" href="' + obj . from _profile . statusnet _profile _url + '"><img class="avatar" src="' + obj . from _profile . profile _image _url + '" /><strong class="name" data-user-id="' + obj . from _profile . id + '" title="@' + obj . from _profile . screen _name + '">' + obj . from _profile . name + '</strong></a> ' + window . sL . xStartedFollowingYou + '<small class="created-at" data-created-at="' + obj . created _at + '" title="' + obj . created _at + '">' + notificationTime + '</small></div></div></div></div>' ;
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
if ( after ) {
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( notificationHtml ) ;
2014-09-25 06:20:35 +09:00
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#feed-body' ) . prepend ( notificationHtml ) ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
// add not seen notification circle
$ . each ( $ ( '.notification.not-seen .queet' ) , function ( ) {
if ( $ ( this ) . children ( '.not-seen' ) . length < 1 ) {
$ ( this ) . prepend ( '<div class="not-seen"></div>' ) ;
}
} ) ;
}
}
2013-08-19 22:30:57 +09:00
// if this is a user feed
2014-11-24 21:47:45 +09:00
else if ( ( window . currentStream . substring ( 0 , 21 ) == 'statuses/friends.json'
2013-08-20 22:26:25 +09:00
|| window . currentStream . substring ( 0 , 18 ) == 'statuses/followers'
|| window . currentStream . substring ( 0 , 28 ) == 'statusnet/groups/membership/'
2014-11-24 21:47:45 +09:00
|| window . currentStream . substring ( 0 , 24 ) == 'statusnet/groups/admins/' )
&& isTempPost === false // not if we're posting queet
2015-07-02 02:15:31 +09:00
) {
2013-08-20 22:26:25 +09:00
// only if not user is already in stream
2015-07-02 02:15:31 +09:00
if ( $ ( '#stream-item-' + obj . id ) . length == 0 ) {
2013-08-20 22:26:25 +09:00
obj . description = obj . description || '' ;
2015-07-02 02:15:31 +09:00
2014-11-24 21:47:45 +09:00
// external
var ostatusHtml = '' ;
if ( obj . is _local === false ) {
2015-07-07 04:30:16 +09:00
ostatusHtml = '<a target="_blank" title="' + window . sL . goToTheUsersRemoteProfile + '" class="ostatus-link" href="' + obj . statusnet _profile _url + '"></a>' ;
2015-07-02 02:15:31 +09:00
}
2015-03-06 09:34:02 +09:00
// rtl or not
var rtlOrNot = '' ;
if ( $ ( 'body' ) . hasClass ( 'rtl' ) ) {
rtlOrNot = 'rtl' ;
}
2015-07-02 02:15:31 +09:00
2013-08-20 22:26:25 +09:00
// show user actions
var followingClass = '' ;
if ( obj . following ) {
followingClass = 'following' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
var followButton = '' ;
2014-05-16 11:07:30 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' // if logged in
2015-07-02 02:15:31 +09:00
&& window . myUserID != obj . id ) { // not if this is me
if ( ! ( obj . statusnet _profile _url . indexOf ( '/twitter.com/' ) > - 1 && obj . following === false ) ) { // only unfollow twitter users
var followButton = '<div class="user-actions"><button data-follow-user-id="' + obj . id + '" data-follow-user="' + obj . statusnet _profile _url + '" type="button" class="qvitter-follow-button ' + followingClass + '"><span class="button-text follow-text"><i class="follow"></i>' + window . sL . userFollow + '</span><span class="button-text following-text">' + window . sL . userFollowing + '</span><span class="button-text unfollow-text">' + window . sL . userUnfollow + '</span></button></div>' ;
2013-08-20 22:26:25 +09:00
}
}
2015-07-02 02:15:31 +09:00
2015-03-06 09:34:02 +09:00
var userHtml = '<div id="stream-item-' + obj . id + '" class="stream-item user"><div class="queet ' + rtlOrNot + '">' + followButton + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj . statusnet _profile _url + '"><img class="avatar" src="' + obj . profile _image _url _profile _size + '" /><strong class="name" data-user-id="' + obj . id + '">' + obj . name + '</strong> <span class="screen-name">@' + obj . screen _name + '</span></a>' + ostatusHtml + '</div><div class="queet-text">' + obj . description + '</div></div></div></div>' ;
2015-07-02 02:15:31 +09:00
2013-08-20 22:26:25 +09:00
if ( after ) {
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( userHtml ) ;
2013-08-20 22:26:25 +09:00
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#feed-body' ) . prepend ( userHtml ) ;
2013-08-19 22:30:57 +09:00
}
}
}
2015-07-02 02:15:31 +09:00
2013-08-20 22:26:25 +09:00
// if this is a list of groups
2014-11-24 21:47:45 +09:00
else if ( window . currentStream . substring ( 0 , 26 ) == 'statusnet/groups/list.json'
&& isTempPost === false // not if we're posting queet
) {
2013-08-19 22:30:57 +09:00
2013-08-20 22:26:25 +09:00
// only if not group is already in stream
2015-07-02 02:15:31 +09:00
if ( $ ( '#stream-item-' + obj . id ) . length == 0 ) {
2013-08-20 22:26:25 +09:00
obj . description = obj . description || '' ;
2015-08-26 06:27:08 +09:00
obj . stream _logo = obj . stream _logo || window . defaultAvatarStreamSize ;
2015-07-02 02:15:31 +09:00
2015-03-06 09:34:02 +09:00
// rtl or not
var rtlOrNot = '' ;
if ( $ ( 'body' ) . hasClass ( 'rtl' ) ) {
rtlOrNot = 'rtl' ;
}
2015-07-02 02:15:31 +09:00
2013-08-20 22:26:25 +09:00
// show group actions if logged in
var memberClass = '' ;
if ( obj . member ) {
memberClass = 'member' ;
2015-07-02 02:15:31 +09:00
}
2013-08-20 22:26:25 +09:00
var memberButton = '' ;
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' ) {
var memberButton = '<div class="user-actions"><button data-group-id="' + obj . id + '" type="button" class="member-button ' + memberClass + '"><span class="button-text join-text"><i class="join"></i>' + window . sL . joinGroup + '</span><span class="button-text ismember-text">' + window . sL . isMemberOfGroup + '</span><span class="button-text leave-text">' + window . sL . leaveGroup + '</span></button></div>' ;
}
2014-01-29 03:42:47 +09:00
var groupAvatar = obj . stream _logo ;
if ( obj . homepage _logo != null ) {
groupAvatar = obj . homepage _logo ;
}
2015-03-06 09:34:02 +09:00
var groupHtml = '<div id="stream-item-' + obj . id + '" class="stream-item user"><div class="queet ' + rtlOrNot + '">' + memberButton + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj . url + '"><img class="avatar" src="' + groupAvatar + '" /><strong class="name" data-group-id="' + obj . id + '">' + obj . fullname + '</strong> <span class="screen-name">!' + obj . nickname + '</span></a></div><div class="queet-text">' + obj . description + '</div></div></div></div>' ;
2015-07-02 02:15:31 +09:00
2013-08-20 22:26:25 +09:00
if ( after ) {
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( groupHtml ) ;
2013-08-20 22:26:25 +09:00
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#feed-body' ) . prepend ( groupHtml ) ;
}
2013-08-20 22:26:25 +09:00
}
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
// if this is a retweet
else if ( typeof obj . retweeted _status != 'undefined' ) {
2014-11-24 21:47:45 +09:00
// don't show any notices with object_type "activity"
if ( typeof obj . retweeted _status . is _activity != 'undefined' && obj . retweeted _status . is _activity === true ) {
return true ;
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// retweeted object already exist in feed
2015-07-02 02:15:31 +09:00
if ( $ ( '#q-' + obj . retweeted _status . id ) . length > 0 ) {
2013-08-19 22:30:57 +09:00
// only if not already shown and not mine
if ( $ ( '#requeet-' + obj . id ) . length == 0 && obj . user . statusnet _profile _url != $ ( '#user-profile-link' ) . children ( 'a' ) . attr ( 'href' ) ) {
2015-07-02 02:15:31 +09:00
// if requeeted before
2014-11-24 21:47:45 +09:00
if ( $ ( '#q-' + obj . retweeted _status . id + ' > .context' ) . find ( '.requeet-text' ) . length > 0 ) {
2013-08-19 22:30:57 +09:00
// if users rt not already added
2014-11-24 21:47:45 +09:00
if ( $ ( '#q-' + obj . retweeted _status . id + ' > .context' ) . find ( '.requeet-text' ) . find ( 'a[data-user-id="' + obj . user . id + '"]' ) . length == 0 ) {
$ ( '#q-' + obj . retweeted _status . id + ' > .context' ) . find ( '.requeet-text' ) . children ( 'a' ) . last ( ) . after ( '<a data-user-id="' + obj . user . id + '" href="' + obj . user . statusnet _profile _url + '"> <b>' + obj . user . name + '</b></a>' ) ;
2013-08-19 22:30:57 +09:00
}
}
2014-11-24 21:47:45 +09:00
// if no context requeets
2013-08-19 22:30:57 +09:00
else {
2014-11-24 21:47:45 +09:00
var requeetHtml = '<a data-user-id="' + obj . user . id + '" href="' + obj . user . statusnet _profile _url + '"> <b>' + obj . user . name + '</b></a>' ;
2015-07-02 02:15:31 +09:00
$ ( '#q-' + obj . retweeted _status . id ) . prepend ( '<div class="context" id="requeet-' + obj . id + '"><span class="with-icn"><i class="badge-requeeted"></i><span class="requeet-text"> ' + window . sL . requeetedBy . replace ( '{requeeted-by}' , requeetHtml ) + '</span></span></div>' ) ;
2013-08-19 22:30:57 +09:00
}
}
}
2013-08-20 00:46:56 +09:00
// retweeted object don't exist in feed
else {
2013-08-19 22:30:57 +09:00
2015-07-02 02:15:31 +09:00
var queetHtml = buildQueetHtml ( obj . retweeted _status , obj . id , extraClassesThisRun , obj ) ;
2013-08-19 22:30:57 +09:00
if ( after ) {
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#feed-body' ) . prepend ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// ordinary tweet
else {
2015-07-02 02:15:31 +09:00
2015-06-19 03:55:46 +09:00
// if this is a special qvitter-delete-notice activity notice it means we try to hide
// the deleted notice from our stream
2015-07-02 22:00:57 +09:00
// the uri is in the obj.text var, between the double curly brackets
2015-07-02 02:15:31 +09:00
if ( typeof obj . qvitter _delete _notice != 'undefined' && obj . qvitter _delete _notice == true ) {
2015-07-02 22:00:57 +09:00
var uriToHide = obj . text . substring ( obj . text . indexOf ( '{{' ) + 2 , obj . text . indexOf ( '}}' ) ) ;
var streamItemToHide = $ ( '.stream-item[data-uri="' + uriToHide + '"]' ) ;
2015-06-19 03:55:46 +09:00
streamItemToHide . animate ( { opacity : '0.2' } , 1000 , 'linear' , function ( ) {
$ ( this ) . css ( 'height' , $ ( this ) . height ( ) + 'px' ) ;
$ ( this ) . animate ( { height : '0px' } , 500 , 'linear' , function ( ) {
$ ( this ) . remove ( ) ;
} ) ;
} ) ;
2015-07-02 02:15:31 +09:00
}
2015-06-19 03:55:46 +09:00
2013-08-19 22:30:57 +09:00
// only if not already exist
2015-07-02 02:15:31 +09:00
if ( $ ( '#q-' + obj . id ) . length == 0 ) {
2013-08-19 22:30:57 +09:00
// activity get special design
2015-07-06 17:36:25 +09:00
if ( obj . source == 'activity' || obj . is _activity === true ) {
2015-07-02 02:15:31 +09:00
var queetTime = parseTwitterDate ( obj . created _at ) ;
2015-06-19 03:55:46 +09:00
var queetHtml = '<div id="stream-item-' + obj . id + '" class="stream-item activity ' + extraClassesThisRun + '" data-quitter-id="' + obj . id + '" data-conversation-id="' + obj . statusnet _conversation _id + '" data-quitter-id-in-stream="' + obj . id + '"><div class="queet" id="q-' + obj . id + '"><div class="queet-content"><div class="stream-item-header"><small class="created-at" data-created-at="' + obj . created _at + '"><a href="' + window . siteInstanceURL + 'notice/' + obj . id + '">' + queetTime + '</a></small></div><div class="queet-text">' + $ . trim ( obj . statusnet _html ) + '</div></div></div></div>' ;
2013-08-19 22:30:57 +09:00
// detect rtl
2015-07-02 02:15:31 +09:00
queetHtml = detectRTL ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
if ( after ) {
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#feed-body' ) . prepend ( queetHtml ) ;
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// if this is my queet, remove any temp-queets
if ( typeof obj . user != 'undefined' ) {
if ( obj . user . screen _name == $ ( '#user-screen-name' ) . html ( ) ) {
if ( $ ( '.temp-post' ) . length > 0 ) {
$ ( '.temp-post' ) . each ( function ( ) {
// remove temp duplicate
$ ( this ) . css ( 'display' , 'none' ) ;
2015-07-02 02:15:31 +09:00
// we do this so this queet gets added after correct temp-queet in expanded conversations
2013-08-19 22:30:57 +09:00
if ( $ ( this ) . find ( '.queet-text' ) . text ( ) == obj . text ) {
after = $ ( this ) . attr ( 'id' ) ;
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
// but don't hide my new queet
extraClassesThisRun = 'visible' ;
} ) ;
2015-07-02 02:15:31 +09:00
}
2013-08-19 22:30:57 +09:00
}
}
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
var queetHtml = buildQueetHtml ( obj , obj . id , extraClassesThisRun ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
if ( after ) {
if ( $ ( '#' + after ) . hasClass ( 'conversation' ) ) { // if this is a reply, give stream item some conversation formatting
if ( $ ( '#conversation-q-' + obj . id ) . length == 0 ) { // only if it's not already there
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( queetHtml . replace ( 'id="stream-item' , 'id="conversation-stream-item' ) . replace ( 'class="stream-item' , 'class="stream-item conversation' ) . replace ( 'id="q' , 'id="conversation-q' ) ) ;
$ ( '#' + after ) . remove ( ) ;
2013-08-19 22:30:57 +09:00
}
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#' + after ) . after ( queetHtml ) ;
}
2013-08-19 22:30:57 +09:00
}
else {
2015-07-02 02:15:31 +09:00
$ ( '#feed-body' ) . prepend ( queetHtml ) ;
2014-09-25 06:20:35 +09:00
// if this is a single notice, we expand it
if ( window . currentStream . substring ( 0 , 14 ) == 'statuses/show/' ) {
expand _queet ( $ ( '#stream-item-' + obj . id ) ) ;
}
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
}
2015-07-02 02:15:31 +09:00
2014-11-24 21:47:45 +09:00
// fadeout any posting-popups
setTimeout ( function ( ) {
$ ( '#popup-sending' ) . fadeOut ( 1000 , function ( ) {
$ ( '#popup-sending' ) . remove ( ) ;
} ) ;
} , 100 ) ;
2015-07-02 02:15:31 +09:00
2013-08-19 22:30:57 +09:00
}
}
}
2015-07-02 02:15:31 +09:00
convertAttachmentMoreHref ( ) ;
} ) ;
2013-08-19 22:30:57 +09:00
$ ( '.stream-selection' ) . removeAttr ( 'data-current-user-stream-name' ) ; // don't remeber user feeds
2015-07-02 02:15:31 +09:00
}
/ * ·
·
2014-09-25 06:20:35 +09:00
· Build HTML for a queet from an object
2015-07-02 02:15:31 +09:00
·
2014-09-25 06:20:35 +09:00
· @ param obj : a queet object
· @ param requeeted _by : if this is a requeet
2015-07-02 02:15:31 +09:00
·
· · · · · · · · · · · · · * /
2013-08-19 22:30:57 +09:00
2015-02-26 05:16:24 +09:00
function buildQueetHtml ( obj , idInStream , extraClassesThisRun , requeeted _by , isConversation ) {
2015-07-02 02:15:31 +09:00
2015-02-26 07:46:32 +09:00
// if we have the full html for a truncated notice cached in localstorage, we use that
2015-07-02 23:57:51 +09:00
var cacheData = localStorageObjectCache _GET ( 'fullQueetHtml' , obj . id ) ;
if ( cacheData ) {
obj . statusnet _html = cacheData ;
}
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
// we don't want to print 'null' in in_reply_to_screen_name-attribute, someone might have that username!
var in _reply _to _screen _name = '' ;
if ( obj . in _reply _to _screen _name != null ) {
in _reply _to _screen _name = obj . in _reply _to _screen _name ;
2015-02-26 05:16:24 +09:00
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// conversations has some slightly different id's
var idPrepend = '' ;
if ( typeof isConversation != 'undefined' && isConversation === true ) {
var idPrepend = 'conversation-' ;
}
2014-09-25 06:20:35 +09:00
2015-01-27 09:57:08 +09:00
// is this mine?
2015-07-02 02:15:31 +09:00
var isThisMine = 'not-mine' ;
2014-09-25 06:20:35 +09:00
if ( obj . user . id == window . myUserID ) {
2015-01-27 09:57:08 +09:00
var isThisMine = 'is-mine' ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
2015-02-26 05:16:24 +09:00
// requeeted by me?
2015-07-02 02:15:31 +09:00
var requeetedByMe = '' ;
2015-02-26 05:16:24 +09:00
if ( obj . repeated _id ) {
requeetedByMe = ' data-requeeted-by-me-id="' + obj . repeated _id + '" ' ;
}
2015-07-02 02:15:31 +09:00
2015-01-27 09:57:08 +09:00
// requeet html
var requeetedClass = '' ;
if ( obj . repeated ) {
2014-11-24 21:47:45 +09:00
var requeetHtml = '<li class="action-rt-container"><a class="with-icn done"><span class="icon sm-rt" title="' + window . sL . requeetedVerb + '"></span></a></li>' ;
2014-09-25 06:20:35 +09:00
var requeetedClass = 'requeeted' ;
}
else {
2015-01-27 09:57:08 +09:00
var requeetHtml = '<li class="action-rt-container"><a class="with-icn"><span class="icon sm-rt ' + isThisMine + '" title="' + window . sL . requeetVerb + '"></span></a></li>' ;
2014-09-25 06:20:35 +09:00
}
// favorite html
var favoritedClass = '' ;
if ( obj . favorited ) {
2014-11-24 21:47:45 +09:00
var favoriteHtml = '<a class="with-icn done"><span class="icon sm-fav" title="' + window . sL . favoritedVerb + '"></span></a>' ;
2014-09-25 06:20:35 +09:00
favoritedClass = 'favorited' ;
}
else {
2014-11-24 21:47:45 +09:00
var favoriteHtml = '<a class="with-icn"><span class="icon sm-fav" title="' + window . sL . favoriteVerb + '"></span></a>' ;
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
// actions only for logged in users
var queetActions = '' ;
2015-07-02 02:15:31 +09:00
if ( typeof window . loggedIn . screen _name != 'undefined' ) {
2015-06-24 22:34:44 +09:00
queetActions = '<ul class="queet-actions"><li class="action-reply-container"><a class="with-icn"><span class="icon sm-reply" title="' + window . sL . replyVerb + '"></span></a></li>' + requeetHtml + '<li class="action-rq-num" data-rq-num="' + obj . repeat _num + '">' + obj . repeat _num + '</li><li class="action-fav-container">' + favoriteHtml + '</li><li class="action-fav-num" data-fav-num="' + obj . fave _num + '">' + obj . fave _num + '</li><li class="action-ellipsis-container"><a class="with-icn"><span class="icon sm-ellipsis" title="' + window . sL . ellipsisMore + '"></span></a></li></ul>' ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
// reply-to html
var reply _to _html = '' ;
2014-11-24 21:47:45 +09:00
if ( obj . in _reply _to _screen _name !== null && obj . in _reply _to _profileurl !== null && obj . in _reply _to _screen _name != obj . user . screen _name ) {
reply _to _html = '<span class="reply-to"><a class="h-card mention" href="' + obj . in _reply _to _profileurl + '">@' + obj . in _reply _to _screen _name + '</a></span> ' ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
// in-groups html
2015-07-02 02:15:31 +09:00
var in _groups _html = '' ;
2014-11-25 00:10:59 +09:00
if ( typeof obj . statusnet _in _groups != 'undefined' && obj . statusnet _in _groups !== false && typeof obj . statusnet _in _groups === 'object' ) {
2014-11-24 21:47:45 +09:00
$ . each ( obj . statusnet _in _groups , function ( ) {
2015-08-26 07:11:31 +09:00
in _groups _html = in _groups _html + ' <span class="in-groups"><a class="h-card group" href="' + this . url + '">!' + this . nickname + '</a></span>' ;
2014-11-24 21:47:45 +09:00
} ) ;
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
// image attachment thumbnails
var attachment _html = '' ;
2015-06-10 06:42:41 +09:00
var attachmentNum = 0 ;
2014-09-25 06:20:35 +09:00
if ( typeof obj . attachments != "undefined" ) {
$ . each ( obj . attachments , function ( ) {
2015-06-17 07:44:18 +09:00
if ( this . id != null ) { // if there's an id we assume this is a image or video
2015-01-24 00:28:41 +09:00
var bigThumbW = 1000 ;
var bigThumbH = 3000 ;
if ( bigThumbW > window . siteMaxThumbnailSize ) {
bigThumbW = window . siteMaxThumbnailSize ;
}
if ( bigThumbH > window . siteMaxThumbnailSize ) {
bigThumbH = window . siteMaxThumbnailSize ;
2015-01-26 03:05:09 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-10 06:42:41 +09:00
// very long landscape images should not have background-size:cover
var noCoverClass = '' ;
if ( this . width / this . height > 2 ) {
noCoverClass = ' no-cover' ;
}
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
// play button for videos and animated gifs
2015-07-02 02:15:31 +09:00
var playButtonClass = '' ;
2015-06-17 07:44:18 +09:00
if ( this . url . indexOf ( '://www.youtube.com' ) > - 1
|| ( typeof this . animated != 'undefined' && this . animated === true ) ) {
2015-07-02 02:15:31 +09:00
var playButtonClass = ' play-button' ;
2015-06-17 07:44:18 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
// youtube class
2015-07-02 02:15:31 +09:00
var youTubeClass = '' ;
2015-06-17 07:44:18 +09:00
if ( this . url . indexOf ( '://www.youtube.com' ) > - 1 ) {
youTubeClass = ' youtube' ;
}
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
// animated gifs always get default small non-animated thumbnail
if ( this . animated === true && typeof this . thumb _url != 'undefined' ) {
2015-07-02 02:15:31 +09:00
var img _url = this . thumb _url ;
2015-06-17 07:44:18 +09:00
}
// if no dimensions are set, go with default thumb
else if ( this . width === null && this . height === null && typeof this . thumb _url != 'undefined' ) {
2015-07-02 02:15:31 +09:00
var img _url = this . thumb _url ;
2015-06-10 06:42:41 +09:00
}
2015-06-17 07:44:18 +09:00
// large images get large thumbnail
2015-06-10 06:42:41 +09:00
else if ( this . width > 1000 ) {
var img _url = window . siteAttachmentURLBase + this . id + '/thumbnail?w=' + bigThumbW + '&h=' + bigThumbH ;
2015-01-26 03:05:09 +09:00
}
2015-06-17 07:44:18 +09:00
// no thumbnails for small images
2015-01-26 03:05:09 +09:00
else {
2015-06-10 06:42:41 +09:00
var img _url = this . url ;
2015-01-26 03:05:09 +09:00
}
2015-07-02 02:15:31 +09:00
2015-06-17 07:44:18 +09:00
attachment _html = attachment _html + '<a style="background-image:url(\'' + img _url + '\')" class="thumb-container' + noCoverClass + playButtonClass + youTubeClass + '" href="' + this . url + '"><img class="attachment-thumb" data-mime-type="' + this . mimetype + '" src="' + img _url + '"/ data-width="' + this . width + '" data-height="' + this . height + '" data-full-image-url="' + this . url + '" data-thumb-url="' + img _url + '"></a>' ;
2015-06-10 09:49:07 +09:00
attachmentNum ++ ;
2014-09-25 06:20:35 +09:00
}
2015-03-05 21:00:24 +09:00
else if ( this . mimetype == 'image/svg+xml' ) {
2015-06-10 06:42:41 +09:00
attachment _html = attachment _html + '<a style="background-image:url(\'' + this . url + '\')" class="thumb-container" href="' + this . url + '"><img class="attachment-thumb" data-mime-type="' + this . mimetype + '" src="' + this . url + '"/></a>' ;
2015-06-10 09:49:07 +09:00
attachmentNum ++ ;
2015-03-05 21:00:24 +09:00
}
2014-09-25 06:20:35 +09:00
} ) ;
2015-07-02 02:15:31 +09:00
}
2014-09-25 06:20:35 +09:00
// requeets
var requeetHtml = '' ;
2015-02-26 05:16:24 +09:00
if ( typeof requeeted _by != 'undefined' && requeeted _by !== false ) {
2014-11-24 21:47:45 +09:00
var requeetedByHtml = '<a data-user-id="' + requeeted _by . user . id + '" href="' + requeeted _by . user . statusnet _profile _url + '"> <b>' + requeeted _by . user . name + '</b></a>' ;
requeetHtml = '<div class="context" id="requeet-' + requeeted _by . id + '"><span class="with-icn"><i class="badge-requeeted"></i><span class="requeet-text"> ' + window . sL . requeetedBy . replace ( '{requeeted-by}' , requeetedByHtml ) + '</span></span></div>' ;
2014-09-25 06:20:35 +09:00
}
2015-07-02 02:15:31 +09:00
2014-09-25 06:20:35 +09:00
2014-11-24 21:47:45 +09:00
// external
var ostatusHtml = '' ;
if ( obj . is _local === false ) {
2015-02-25 06:50:31 +09:00
ostatusHtml = '<a target="_blank" title="' + window . sL . goToOriginalNotice + '" class="ostatus-link" href="' + obj . external _url + '"></a>' ;
2014-11-24 21:47:45 +09:00
}
2015-07-02 02:15:31 +09:00
var queetTime = parseTwitterDate ( obj . created _at ) ;
2014-09-25 06:20:35 +09:00
var queetHtml = ' < div \
2015-02-26 05:16:24 +09:00
id = "' + idPrepend + 'stream-item-' + obj.id + '" \
2015-06-19 03:55:46 +09:00
data - uri = "' + obj.uri + '" \
2014-09-25 06:20:35 +09:00
class = "stream-item ' + extraClassesThisRun + ' ' + requeetedClass + ' ' + favoritedClass + '" \
2015-06-17 07:44:18 +09:00
data - attachments = \ '' + JSON . stringify ( obj . attachments ) + '\' \
2014-09-25 06:20:35 +09:00
data - source = "' + escape(obj.source) + '" \
data - quitter - id = "' + obj.id + '" \
data - conversation - id = "' + obj.statusnet_conversation_id + '" \
data - quitter - id - in - stream = "' + idInStream + '" \
data - in - reply - to - screen - name = "' + in_reply_to_screen_name + '" \
2015-02-26 05:16:24 +09:00
data - in - reply - to - status - id = "' + obj.in_reply_to_status_id + '" \
' + requeetedByMe + ' > \
< div class = "queet" id = "' + idPrepend + 'q-' + obj.id + '" > \
2014-11-24 21:47:45 +09:00
' + requeetHtml + ' \
' + ostatusHtml + ' \
2014-09-25 06:20:35 +09:00
< div class = "queet-content" > \
< div class = "stream-item-header" > \
< a class = "account-group" href = "' + obj.user.statusnet_profile_url + '" > \
< img class = "avatar" src = "' + obj.user.profile_image_url_profile_size + '" / > \
< strong class = "name" data - user - id = "' + obj.user.id + '" > ' + obj.user.name + ' < / s t r o n g > \
< span class = "screen-name" > @ ' + obj.user.screen_name + ' < / s p a n > \
< / a > \
< i class = "addressees" > ' + reply_to_html + in_groups_html + ' < / i > \
< small class = "created-at" data - created - at = "' + obj.created_at + '" > \
2014-11-24 21:47:45 +09:00
< a href = "' + window.siteInstanceURL + 'notice/' + obj.id + '" > ' + queetTime + ' < / a > \
2014-09-25 06:20:35 +09:00
< / s m a l l > \
< / d i v > \
< div class = "queet-text" > ' + $.trim(obj.statusnet_html) + ' < / d i v > \
2015-06-10 06:42:41 +09:00
< div class = "queet-thumbs thumb-num-' + attachmentNum + '" > ' + attachment_html + ' < / d i v > \
2014-09-25 06:20:35 +09:00
< div class = "stream-item-footer" > \
' + queetActions + ' \
< / d i v > \
< / d i v > \
< / d i v > \
< / d i v > ' ;
// detect rtl
2015-07-02 02:15:31 +09:00
queetHtml = detectRTL ( queetHtml ) ;
2014-09-25 06:20:35 +09:00
return queetHtml ;
}