-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
160 lines (136 loc) · 3.2 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
const IP = "http://85.215.49.180:60195"
function openurl(url)
{
var link = "whisper-me.de";
window.location.href = "//" + url;
}
function extractDomain(url) {
var domain;
var index = url.indexOf("://") + 3;
index = url.indexOf("/", index);
if (index !== -1) {
domain = url.substring(0, index);
} else {
domain = url;
}
return domain;
}
async function post(endpoint, data = {})
{
const response = await fetch(`${IP}/${endpoint}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
});
return await response.json();
}
async function get(endpoint)
{
const response = await fetch(`${IP}/${endpoint}`, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
return await response.json();
}
function searchGoogle()
{
var query = document.getElementById('searchInput').value;
if (query == "chat") {
openurl("chat.openai.com");
return
} else if (query == "google") {
openurl("google.de");
return
} else if (query == "yt") {
openurl("youtube.de");
return
} else if (query == "regex") {
openurl("regex101.com");
return
//thats basicly the same like (a == "a" || a == "b") but shorter
} else if (["git", "github"].includes(query)) {
openurl("github.com");
return
}
var searchUrl = 'google.com/search?q=' + encodeURIComponent(query);
openurl(searchUrl);
return
}
document.getElementById("searchInput").addEventListener("keypress", function(event)
{
if (event.keyCode === 13) {
searchGoogle();
}
});
function handleMousePosition(event)
{
var screenHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
var mouseY = event.clientY;
if (mouseY >= (screenHeight * 0.90)) {
var settingsbar = document.getElementById('settingsbar');
settingsbar.classList.remove('hidden');
} else {
var settingsbar = document.getElementById('settingsbar');
settingsbar.classList.add('hidden');
}
}
function reloadPage()
{
location.reload();
}
async function newIcon()
{
var name = prompt("Name:", "");
if (name == null || name.trim() == "") {
return 1;
}
var url = prompt("URL:", "");
if (url !== null && url.trim() !== "") {
const icon = {
"name" : name,
"url" : url
}
console.log(await post("postshortcut", icon))
reloadPage();
} else {
alert("url empty");
return;
}
}
async function removeIcon()
{
var name = prompt("Name:", "");
if (name == null || name.trim() == "") {
return;
}
var sure = prompt(`are you sure? Do you want to delete: ${name}? (y|N)`, "");
if (sure == "y" || sure.trim() == "Y") {
console.log(await post("removeshortcut", name))
reloadPage();
} else {
alert("canceld");
}
}
async function getIcons()
{
const shortcuts = await get("getshortcuts");
var itembox = document.getElementById("itembox");
for (let i = 0; i < shortcuts.length; i++) {
var io = shortcuts[i]; //io = i-object
itembox.innerHTML += `<div class="icon" onclick="openurl('${io.url}')">
<img src="https://icon.horse/icon/${extractDomain(io.url)}"/>
<p> ${io.name} </p>
</div>`;
}
}
async function start()
{
getIcons();
document.getElementById("searchInput").focus();
document.addEventListener('mousemove', handleMousePosition);
}
start();