site-libsoc/Server/app/svelte/public/js/libraries/serverTools.js

103 lines
3.1 KiB
JavaScript
Raw Normal View History

2023-06-15 01:41:54 +07:00
// Get data from server
export function getData(path,callback) {
var xhr = new XMLHttpRequest();
xhr.overrideMimeType("application/json");
xhr.open('GET', path, true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == "200") {
if (callback !== undefined) {
callback(xhr.responseText);
}
}
};
xhr.send(null);
}
// Parse JSON from given path into a given variable under a given key
export function getJSON(variable,key,path) {
getData(path,function(response) {
// Parse JSON string into object
variable[key] = JSON.parse(response);
});
}
export function sendData(route,data,callback) {
var xhr = new XMLHttpRequest();
xhr.open("POST", route, true)
xhr.setRequestHeader('Content-Type', 'application/json')
xhr.onreadystatechange = function() {
if(xhr.readyState === XMLHttpRequest.DONE) {
var status = xhr.status;
if (status === 0 || (status >= 200 && status < 400)) {
// The request has been completed successfully
if (callback !== undefined) {
callback(xhr.responseText)
}
} else {
// Oh no! There has been an error with the request!
}
}
};
xhr.send(JSON.stringify(data))
}
export function sendText(route,data,callback) {
var xhr = new XMLHttpRequest();
xhr.open("POST", route, true)
xhr.setRequestHeader('Content-Type', 'text/plain')
xhr.onreadystatechange = function() {
if(xhr.readyState === XMLHttpRequest.DONE) {
var status = xhr.status;
if (status === 0 || (status >= 200 && status < 400)) {
// The request has been completed successfully
if (callback !== undefined) {
callback(xhr.responseText)
}
} else {
// Oh no! There has been an error with the request!
}
}
};
xhr.send(data)
}
2023-07-03 03:07:45 +07:00
function onlyUnique(value, index, array) {
return array.indexOf(value) === index;
}
2023-07-03 16:55:46 +07:00
export let locales = {
en: "English",
ru: "Русский"
}
2023-07-03 03:07:45 +07:00
export function loadLocaleContent(content,componentName,loaded,callback) {
2023-07-03 16:55:46 +07:00
let locale
2023-07-03 03:07:45 +07:00
let langs
2023-07-03 16:55:46 +07:00
let localesAvailable = Object.keys(locales)
let localeUrl = location.href.split("/").filter(x => localesAvailable.includes(x))
if (localeUrl.length>0) {
locale = localeUrl
2023-07-03 03:07:45 +07:00
}
2023-07-03 16:55:46 +07:00
else {
langs = navigator.languages.map(x => x.split("-")[0]).filter(onlyUnique)
for (let lang of langs) {
if (localesAvailable.includes(lang)) {
locale = lang
2023-07-03 03:07:45 +07:00
}
2023-07-03 16:55:46 +07:00
break
}
if (locale==undefined) {
locale = "en"
}
}
getData("/locales/" + locale + "/" + componentName + ".json" ,function(response) {
2023-07-05 01:38:05 +07:00
let parsed = JSON.parse(response)
2023-07-04 01:28:58 +07:00
if (callback!=undefined) {
2023-07-05 01:38:05 +07:00
callback(parsed)
2023-07-04 01:28:58 +07:00
}
2023-07-03 16:55:46 +07:00
content.set(parsed)
loaded = 1
2023-07-03 03:07:45 +07:00
})
2023-07-04 01:27:18 +07:00
return locale
2023-07-03 03:07:45 +07:00
}