Update Redditlikekerfuffle.HTML
This commit is contained in:
parent
a8a0c04cf4
commit
b9dfed4cf7
1 changed files with 8 additions and 17 deletions
|
@ -2,28 +2,26 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="icon" href="Dangrain.ico" type="image/x-icon">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Bitter(twitter clone)</title>
|
<title>Anonymous Twitter</title>
|
||||||
<h1>Use this as you would Twitter, oh, sorry X, lol</h1>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div>
|
||||||
<h2>Post a Bitter</h2>
|
<h2>Post a Tweet</h2>
|
||||||
<textarea id="tweetInput" rows="1" cols="50"></textarea>
|
<textarea id="tweetInput" rows="4" cols="50"></textarea>
|
||||||
<br>
|
<br>
|
||||||
<button onclick="postTweet()">Post</button>
|
<button onclick="postTweet()">Post</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h2>Bitters</h2>
|
<h2>Tweets</h2>
|
||||||
<ul id="tweetList"></ul>
|
<ul id="tweetList"></ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const username = 'Dangrainage';
|
const username = 'Dangrainage';
|
||||||
const repo = 'Urban';
|
const repo = 'Urban';
|
||||||
const token = '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';
|
const token = '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';
|
||||||
|
|
||||||
// GitHub API endpoint
|
// GitHub API endpoint
|
||||||
const githubApiUrl = `https://api.github.com/repos/${username}/${repo}/contents/`;
|
const githubApiUrl = `https://api.github.com/repos/${username}/${repo}/contents/`;
|
||||||
|
@ -32,13 +30,8 @@
|
||||||
function fetchTweets() {
|
function fetchTweets() {
|
||||||
fetch(githubApiUrl)
|
fetch(githubApiUrl)
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(responseData => {
|
.then(files => {
|
||||||
// Check if responseData is an array
|
const tweetFiles = files.filter(file => file.name.endsWith('.json'));
|
||||||
const files = Array.isArray(responseData) ? responseData : [];
|
|
||||||
|
|
||||||
const tweetFiles = files
|
|
||||||
.filter(file => file.name.endsWith('.json'))
|
|
||||||
.sort((a, b) => b.name.localeCompare(a.name)); // Sort by filename in descending order
|
|
||||||
|
|
||||||
// Display tweets
|
// Display tweets
|
||||||
displayTweets(tweetFiles);
|
displayTweets(tweetFiles);
|
||||||
|
@ -68,7 +61,6 @@
|
||||||
})
|
})
|
||||||
.catch(error => console.error('Error fetching tweet content:', error));
|
.catch(error => console.error('Error fetching tweet content:', error));
|
||||||
|
|
||||||
// Append the tweet to the list
|
|
||||||
tweetList.appendChild(listItem);
|
tweetList.appendChild(listItem);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -79,8 +71,7 @@
|
||||||
const tweetText = tweetInput.value;
|
const tweetText = tweetInput.value;
|
||||||
|
|
||||||
if (tweetText.trim() !== '') {
|
if (tweetText.trim() !== '') {
|
||||||
const timestamp = Date.now();
|
const fileName = `tweet_${Date.now()}.json`;
|
||||||
const fileName = `tweet_${timestamp}.json`;
|
|
||||||
const fileContent = JSON.stringify({ text: tweetText }, null, 2);
|
const fileContent = JSON.stringify({ text: tweetText }, null, 2);
|
||||||
|
|
||||||
// Create a new tweet file
|
// Create a new tweet file
|
||||||
|
|
Loading…
Add table
Reference in a new issue