forked from linuskmr/lmgtfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
61 lines (51 loc) · 2.15 KB
/
script.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
(async () => {
const queryUrlParameter = new URLSearchParams(window.location.search).get('q');
const urlInput = document.getElementById('url');
const queryInput = document.getElementById('query');
// When the page is refreshed, the input fields keep their values,
// but we want to re-execute the typing animation, which requires
// the input fields to be empty. So we clear them here.
urlInput.value = '';
queryInput.value = '';
// Enter google.com into the URL input field
document.getElementById('info').innerText = "1. Go to google.com";
await sleep(2000);
await typeIntoInputField(urlInput, "https://google.com");
// Show the Google search website
document.getElementById('google-search').style.opacity = 1;
// Enter the search query into the query input field
document.getElementById('info').innerText = "2. Enter your search query";
await sleep(2000);
await typeIntoInputField(queryInput, queryUrlParameter, 150);
// Show the cursor
await sleep(500);
document.getElementById('cursor').style.opacity = 1;
// Redirect to Google search results page
document.getElementById('info').innerText = "Click 'Search'. Was it that hard?";
await sleep(5000);
document.getElementById('search-form').submit();
})()
/**
* Types the given text into the given input field with a delay between each character.
* @param {HTMLInputElement} inputField to type the text into.
* @param {string} text to type into the input field.
* @param {int} delay in ms between each character being typed.
*/
async function typeIntoInputField(inputField, text, delay = 100) {
// Don't use `for (const char in text.split(''))` to iterate through the chars of a string
// because it doesn't handle UTF-8 characters correctly, see https://stackoverflow.com/a/34717402/14350146
for (const char of text) {
inputField.focus();
inputField.value += char;
await sleep(delay);
}
}
/**
* Sleeps for/returns after `ms` milliseconds (without blocking the main thread).
*
* Note that this function is `async` and must thus be `await`ed.
* Otherwise, it will return a `Promise` and will have *no* effect.
*/
async function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}