Skip to content

Instantly share code, notes, and snippets.

@utgwkk
Forked from hubgit/twitter-archive-viewer.html
Last active July 31, 2019 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save utgwkk/3ffb41fc65fc841a113db7943a87ba36 to your computer and use it in GitHub Desktop.
Save utgwkk/3ffb41fc65fc841a113db7943a87ba36 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<meta charset="utf-8">
<title>Twitter Archive Viewer</title>
<script>window.YTD = { tweet: {}, account: {} }</script>
<script src="tweet.js"></script><!-- this is loading a file from the archive -->
<script src="account.js"></script><!-- this is loading a file from the archive -->
<style>
.tweet { border: 1px solid #eee; margin: 8px }
.full_text { padding: 8px }
.created_at { padding: 8px; color: #777 }
</style>
<body>
<div id="root"></div>
<script>
const tweets = []
let account = {}
for (const part of Object.values(window.YTD.tweet)) {
tweets.push(...part)
}
for (const part of Object.values(window.YTD.account)) {
account = part[0].account
}
const newestFirst = (a, b) => new Date(b.created_at) - new Date(a.created_at)
const buildURL = (screenName, id) => `https://twitter.com/${screenName}/status/${id}`
const renderTweet = tweet => `
<div class="tweet">
<div class="full_text">${tweet.full_text}</div>
<div class="created_at"><a href="${buildURL(account.username, tweet.id_str)}">${tweet.created_at}</a></div>
</div>`
document.getElementById('root').innerHTML = tweets.sort(newestFirst).map(renderTweet).join('\n')
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment