Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHamidreza Ghavami <hamid.r.gh.1998@gmail.com>2023-05-08 16:34:12 +0300
committerHamidreza Ghavami <hamid.r.gh.1998@gmail.com>2023-05-08 16:34:12 +0300
commitd137deccfa49fdd202dc7ce5147ad71d450c3134 (patch)
treed2b665f0cdf820cda9f69cfa767869db692bb02c /web/assets/js/langs.js
parent00777e3a258c19301c8b98e55b2b79df8d9585a6 (diff)
fix style height when rotating + move cookie util to their specific file
Diffstat (limited to 'web/assets/js/langs.js')
-rw-r--r--web/assets/js/langs.js84
1 files changed, 29 insertions, 55 deletions
diff --git a/web/assets/js/langs.js b/web/assets/js/langs.js
index e83b05f3..9e1f0911 100644
--- a/web/assets/js/langs.js
+++ b/web/assets/js/langs.js
@@ -1,41 +1,41 @@
const supportLangs = [
{
- name : "English",
- value : "en-US",
- icon : "🇺🇸"
+ name: 'English',
+ value: 'en-US',
+ icon: '🇺🇸',
},
{
- name : "Farsi",
- value : "fa_IR",
- icon : "🇮🇷"
+ name: 'Farsi',
+ value: 'fa_IR',
+ icon: '🇮🇷',
},
{
- name : "汉语",
- value : "zh-Hans",
- icon : "🇨🇳"
+ name: '汉语',
+ value: 'zh-Hans',
+ icon: '🇨🇳',
},
{
- name : "Russian",
- value : "ru_RU",
- icon : "🇷🇺"
+ name: 'Russian',
+ value: 'ru_RU',
+ icon: '🇷🇺',
},
-]
+];
-function getLang(){
- let lang = getCookie('lang')
+function getLang() {
+ let lang = getCookie('lang');
- if (! lang){
- if (window.navigator){
+ if (!lang) {
+ if (window.navigator) {
lang = window.navigator.language || window.navigator.userLanguage;
- if (isSupportLang(lang)){
- setCookie('lang' , lang , 150)
- }else{
- setCookie('lang' , 'en-US' , 150)
+ if (isSupportLang(lang)) {
+ setCookie('lang', lang, 150);
+ } else {
+ setCookie('lang', 'en-US', 150);
window.location.reload();
}
- }else{
- setCookie('lang' , 'en-US' , 150)
+ } else {
+ setCookie('lang', 'en-US', 150);
window.location.reload();
}
}
@@ -43,47 +43,21 @@ function getLang(){
return lang;
}
-function setLang(lang){
-
- if (!isSupportLang(lang)){
+function setLang(lang) {
+ if (!isSupportLang(lang)) {
lang = 'en-US';
}
- setCookie('lang' , lang , 150)
+ setCookie('lang', lang, 150);
window.location.reload();
}
-function isSupportLang(lang){
- for (l of supportLangs){
- if (l.value === lang){
+function isSupportLang(lang) {
+ for (l of supportLangs) {
+ if (l.value === lang) {
return true;
}
}
return false;
}
-
-
-
-function getCookie(cname) {
- let name = cname + "=";
- let decodedCookie = decodeURIComponent(document.cookie);
- let ca = decodedCookie.split(';');
- for(let i = 0; i <ca.length; i++) {
- let c = ca[i];
- while (c.charAt(0) == ' ') {
- c = c.substring(1);
- }
- if (c.indexOf(name) == 0) {
- return c.substring(name.length, c.length);
- }
- }
- return "";
-}
-
-function setCookie(cname, cvalue, exdays) {
- const d = new Date();
- d.setTime(d.getTime() + (exdays*24*60*60*1000));
- let expires = "expires="+ d.toUTCString();
- document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
-} \ No newline at end of file