forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload-tweets.js
80 lines (63 loc) · 2.34 KB
/
load-tweets.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
var twitter = {
bind: function() {
twitter.waitForIframe();
},
updateInitialText(text) {
$("[data-target='twitter-timeline']").text(text);
},
waitForIframe: function() {
var count = 0;
var interval = setInterval(function() {
var iframe = document.getElementById("twitter-widget-0");
if (iframe !== null) {
clearInterval(interval);
twitter.updateInitialText("");
twitter.copyContent(iframe);
}
// Give up after 5 seconds
if (count >= 5) {
clearInterval(interval);
twitter.updateInitialText("Twitter widget could not be loaded.");
} else {
count += 1;
}
}, 1000);
},
copyContent(iframe) {
var tweets = $(iframe.contentWindow.document).
find("ol.timeline-TweetList > li").
map(function() {
return {
isRetweet: $(this).find('.timeline-Tweet-retweetCredit').length > 0,
tweetAuthor: $(this).find('.tweetAuthor-screenName').text(),
inReplyTo: $(this).find('.timeline-Tweet-inReplyTo').text(),
tweetHTML: $(this).find('p.timeline-tweet-text').html()
}
}).get();
$("#twitter-widget-0").remove();
twitter.populateCustomTweets(tweets);
},
populateCustomTweets(tweets) {
var tweetsWrapper = $("<div class=\"row tweets-wrapper\"></div>");
tweets.forEach(function(tweet) {
var tweetWrapper = $("<div class=\"col-md-4 tweet\"></div>");
var metadata = $("<p class=\"tweet-header\"></p>");
if (tweet.isRetweet) {
metadata.append("<span class=\"retweeted\">PyTorch Retweeted " + tweet.tweetAuthor + "</span><br />");
}
if (tweet.inReplyTo) {
metadata.append("<span class=\"in-reply-to\">" + tweet.inReplyTo + "</span>");
}
tweetWrapper.append(metadata);
tweetWrapper.append("<p>" + tweet.tweetHTML + "</p>");
tweetWrapper.append(
"<div class=\"tweet-author\"> \
PyTorch, <a href=\"https://twitter.com/pytorch\" target=\"_blank\" class=\"twitter-handle\">@pytorch</a> \
</div>"
);
tweetWrapper.prepend("<div class=\"tweet-bird\"></div>");
tweetsWrapper.append(tweetWrapper);
});
$("[data-target='twitter-timeline']").append(tweetsWrapper);
}
}