-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea04ecf
commit f83d4b3
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
function redirectToLoginPage() { | ||
window.location.href = "https://login.microsoft.com"; | ||
} | ||
|
||
function searchRandomWordAndOpenEdge() { | ||
// Try fetching from the primary API first | ||
fetch('https://random-word-api.vercel.app/api?words=1') | ||
.then(response => response.json()) | ||
.then(data => { | ||
let word = data[0]; | ||
displayWord(word); | ||
openEdgeAndSearch(word); | ||
setTimeout(goBackToButton, 1000); // Adjusted the delay to 1 second | ||
}) | ||
.catch(error => { | ||
console.error('Primary API failed, switching to backup:', error); | ||
// If primary API fails, fetch from the backup API | ||
fetch('https://random-word-api.herokuapp.com/word') | ||
.then(response => response.json()) | ||
.then(data => { | ||
let word = data[0]; | ||
displayWord(word); | ||
openEdgeAndSearch(word); | ||
setTimeout(goBackToButton, 1000); // Adjusted the delay to 1 second | ||
}) | ||
.catch(backupError => { | ||
console.error('Backup API failed:', backupError); | ||
}); | ||
}); | ||
} | ||
|
||
function displayWord(word) { | ||
const codeBlock = document.getElementById('codeBlock'); | ||
codeBlock.textContent = word; | ||
} | ||
|
||
function openEdgeAndSearch(word) { | ||
var searchQuery = encodeURIComponent(word); | ||
var searchUrl = "https://www.bing.com/search?q=" + searchQuery; | ||
window.open(searchUrl, "_blank"); | ||
} | ||
|
||
function goBackToButton() { | ||
document.getElementById('searchButton').scrollIntoView(); | ||
} |