forked from Omkar-Sonawane-23/Maa-Vimala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
187 lines (180 loc) · 6.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
let Input = document.getElementById("input_text");
let Body = document.getElementById("body");
let keynum;
Input.value = "";
Body.addEventListener("keydown", function (e) {
const searchcontainer = document.getElementsByClassName("search-bar")[0];
if (event.key.length === 1 && event.key.match(/[a-z0-9]/i)) {
searchcontainer.style.width = '50vw';
searchcontainer.style.transition = 'width 0.2s ease-in-out';
}
Input.focus();
if (window.event) {
keynum = e.keyCode;
}
if (keynum == 13) {
handleDropDown(Input.value);
}
Input.addEventListener("input", function (e) {
if (Input.value == "") {
document.getElementById("content").innerHTML = "";
document.getElementById('result').innerHTML = '';
searchcontainer.style.width = '4.5vw';
} else {
// updateList();
}
}
)
})
// function dropDownHandeler(params) {
// Body.addEventListener("keydown", function (e) {
// const dropdowncontent = document.getElementById("content");
// })
// }
async function showCalcResult(params) {
console.log(params);
let result = document.getElementById("result");
let res = result.innerHTML = "<h1>" + params + "</h1>";
console.log(res);
}
async function showWordSearchResult(params) {
console.log(params);
let result = document.getElementById("result");
if (params.title != "No Definitions Found") {
let res = result.innerHTML = "<h1>" + params[0].meanings[0].definitions[0].definition + "</h1>";
} else {
let res = result.innerHTML = "<h1>" + params.title + "</h1>";
}
}
async function showWikiResult(params) {
document.getElementById('loader').classList.add('loader')
setTimeout(function () {
document.getElementById('loader').classList.remove('loader')
}, 1000);
let result = document.getElementById("result");
result.innerHTML = "";
let list = params.query.search;
result.innerHTML = "<h1>Wikipedia Search Results</h1>";
list.map((item, i) => {
let res = result.innerHTML += `<li class="wiki-result"><a onclick="loadwiki(${list[i].pageid})">` + list[i].title + "</a></li>";
}
)
console.log(res);
}
function loadwiki(params) {
let result = document.getElementById("result");
result.innerHTML = "";
result.innerHTML = `<iframe src="https://en.wikipedia.org/?curid=${params}" width="1500vw" height="900px"></iframe>`;
}
function handleDropDown(search) {
if (search.includes("*") || search.includes("-") || search.includes("/") || search.includes("+")) {
showCalcResult(performCalculation(search));
} else if (hasOnlyOneWord(search)) {
console.log("Word Search");
document.getElementById('loader').classList.add('loader')
setTimeout(function () {
document.getElementById('loader').classList.remove('loader')
}, 1000);
performWordSearch(search)
} else if (search.includes("set") || search.includes("add") || search.includes("todo")) {
console.log("Set Todo");
performTodoSet(search);
} else if (search.includes("remove") || search.includes("delete") || search.includes("remove todo")) {
console.log("remove Todo");
performToDoUpdate(search);
} else if (search.includes("google") || search.includes("search google") || search.includes("how") || search.includes("what") || search.includes("why") || search.includes("how") || search.includes("when") || search.includes("where") || search.includes("who") || search.includes("which") || search.includes("whom") || search.includes("whose") || search.includes("google search")) {
performGoogleSearch(search);
} else if (search.includes("youtube") || search.includes("search youtube") || search.includes("youtube search")) {
performYouTubeSearch(search);
} else if (search.includes("wikipedia") || search.includes("search wikipedia") || search.includes("wikipedia search") || search.includes("wiki")) {
performWikipediaSearch(search);
document.getElementById('loader').classList.add('loader')
setTimeout(function () {
document.getElementById('loader').classList.remove('loader')
}, 1000);
}
else {
performGoogleSearch(search , true);
}
}
function hasOnlyOneWord(inputString) {
var wordRegex = /^\w+$/;
return wordRegex.test(inputString);
}
function performCalculation(expression) {
var calculate = new Function('return ' + expression);
var result = calculate();
return result;
}
function performWordSearch(word) {
let result = fetch(`https://api.dictionaryapi.dev/api/v2/entries/en/${word}`).then(response => {
response.json().then(data => {
showWordSearchResult(data);
})
})
}
function performTodoSet(cmd) {
let res = cmd.split("add ");
let alltodo = JSON.parse(localStorage.getItem("todolist")) || [];
let newTodo = res[1].trim();
alltodo.push(newTodo);
console.log(alltodo);
localStorage.setItem("todolist", JSON.stringify(alltodo));
}
function performToDoUpdate(cmd) {
let res = cmd.split("remove ");
let alltodoRemove = JSON.parse(localStorage.getItem("todolist")) || [];
let indexToRemove = alltodoRemove.indexOf(res[1]);
if (indexToRemove !== -1) {
alltodoRemove.splice(indexToRemove, 1);
localStorage.setItem("todolist", JSON.stringify(alltodoRemove));
} else {
console.log("The word to remove is not in the list.");
}
}
function performGoogleSearch(search, isit) {
let res = search.split("google");
if(isit){
document.location = `https://www.google.com/search?q=${encodeURIComponent(search)}`
}else{
document.location = `https://www.google.com/search?q=${encodeURIComponent(res[1].trim())}`
}
search = "";
}
function performYouTubeSearch(search) {
let res = search.split("youtube");
document.location = `https://www.youtube.com/results?search_query=${encodeURIComponent(res[1].trim())}`
search = "";
}
function performDuckDuckGoSearch(search) {
document.location = `https://duckduckgo.com/?q=${encodeURIComponent(search)}`
search = "";
}
function performBingSearch(search) {
document.location = `https://www.bing.com/search?q=${encodeURIComponent(search)}`
search = "";
}
function performWolframAlphaSearch(search) {
document.location = `https://www.wolframalpha.com/input/?i=${encodeURIComponent(search)}`
search = "";
}
function performWikipediaSearch(search) {
fetch(`https://en.wikipedia.org/w/api.php?action=query&list=search&prop=info&inprop=url&utf8=&format=json&origin=*&srlimit=5&srsearch=${encodeURIComponent(search)}`).then(response => {
response.json().then(data => {
console.log(data);
showWikiResult(data);
})
})
search = "";
}
function performWhetherCheck(search) {
search = "";
}
function performImageSearchOnPexels(search) {
document.location = `https://www.pexels.com/?s=${encodeURIComponent(search)}`
search = "";
}
function performImageSearchOnUnsplashes(search) {
document.location = `https://unsplash.com/s/photos/${encodeURIComponent(search)}`
search = "";
}