mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	Fix bug
This commit is contained in:
		
							parent
							
								
									4539655c5d
								
							
						
					
					
						commit
						86bbcd5ea2
					
				
					 1 changed files with 46 additions and 44 deletions
				
			
		| 
						 | 
					@ -11,53 +11,55 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
'use strict';
 | 
					'use strict';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Get the current url information
 | 
					{
 | 
				
			||||||
const url = new URL(location.href);
 | 
						// Get the current url information
 | 
				
			||||||
 | 
						const url = new URL(location.href);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Extarct the (sub) domain part of the current url
 | 
						// Extarct the (sub) domain part of the current url
 | 
				
			||||||
//
 | 
						//
 | 
				
			||||||
// e.g.
 | 
						// e.g.
 | 
				
			||||||
//   misskey.alice               => misskey
 | 
						//   misskey.alice               => misskey
 | 
				
			||||||
//   misskey.strawberry.pasta    => misskey
 | 
						//   misskey.strawberry.pasta    => misskey
 | 
				
			||||||
//   dev.misskey.alice.tachibana => dev
 | 
						//   dev.misskey.alice.tachibana => dev
 | 
				
			||||||
let app = url.host.split('.')[0];
 | 
						let app = url.host.split('.')[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Detect the user language
 | 
						// Detect the user language
 | 
				
			||||||
// Note: The default language is English
 | 
						// Note: The default language is English
 | 
				
			||||||
let lang = navigator.language.split('-')[0];
 | 
						let lang = navigator.language.split('-')[0];
 | 
				
			||||||
if (!/^(en|ja)$/.test(lang)) lang = 'en';
 | 
						if (!/^(en|ja)$/.test(lang)) lang = 'en';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Detect the user agent
 | 
						// Detect the user agent
 | 
				
			||||||
const ua = navigator.userAgent.toLowerCase();
 | 
						const ua = navigator.userAgent.toLowerCase();
 | 
				
			||||||
const isMobile = /mobile|iphone|ipad|android/.test(ua);
 | 
						const isMobile = /mobile|iphone|ipad|android/.test(ua);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Get the <head> element
 | 
						// Get the <head> element
 | 
				
			||||||
const head = document.getElementsByTagName('head')[0];
 | 
						const head = document.getElementsByTagName('head')[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// If mobile, insert the viewport meta tag
 | 
						// If mobile, insert the viewport meta tag
 | 
				
			||||||
if (isMobile) {
 | 
						if (isMobile) {
 | 
				
			||||||
	const meta = document.createElement('meta');
 | 
							const meta = document.createElement('meta');
 | 
				
			||||||
	meta.setAttribute('name', 'viewport');
 | 
							meta.setAttribute('name', 'viewport');
 | 
				
			||||||
	meta.setAttribute('content', [
 | 
							meta.setAttribute('content', [
 | 
				
			||||||
		['width', 'device-width'],
 | 
								['width', 'device-width'],
 | 
				
			||||||
		['initial-scale', '1'],
 | 
								['initial-scale', '1'],
 | 
				
			||||||
		['minimum-scale', '1'],
 | 
								['minimum-scale', '1'],
 | 
				
			||||||
		['maximum-scale', '1'],
 | 
								['maximum-scale', '1'],
 | 
				
			||||||
		['user-scalable', 'no']
 | 
								['user-scalable', 'no']
 | 
				
			||||||
	].map(x => x.join('=')).join(','));
 | 
							].map(x => x.join('=')).join(','));
 | 
				
			||||||
	head.appendChild(meta);
 | 
							head.appendChild(meta);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// Switch desktop or mobile version
 | 
				
			||||||
 | 
						if (app == 'misskey') {
 | 
				
			||||||
 | 
							app = isMobile ? 'mobile' : 'desktop';
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// Load an app script
 | 
				
			||||||
 | 
						// Note: 'async' make it possible to load the script asyncly.
 | 
				
			||||||
 | 
						//       'defer' make it possible to run the script when the dom loaded.
 | 
				
			||||||
 | 
						const script = document.createElement('script');
 | 
				
			||||||
 | 
						script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`);
 | 
				
			||||||
 | 
						script.setAttribute('async', 'true');
 | 
				
			||||||
 | 
						script.setAttribute('defer', 'true');
 | 
				
			||||||
 | 
						head.appendChild(script);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					 | 
				
			||||||
// Switch desktop or mobile version
 | 
					 | 
				
			||||||
if (app == 'misskey') {
 | 
					 | 
				
			||||||
	app = isMobile ? 'mobile' : 'desktop';
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Load an app script
 | 
					 | 
				
			||||||
// Note: 'async' make it possible to load the script asyncly.
 | 
					 | 
				
			||||||
//       'defer' make it possible to run the script when the dom loaded.
 | 
					 | 
				
			||||||
const script = document.createElement('script');
 | 
					 | 
				
			||||||
script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`);
 | 
					 | 
				
			||||||
script.setAttribute('async', 'true');
 | 
					 | 
				
			||||||
script.setAttribute('defer', 'true');
 | 
					 | 
				
			||||||
head.appendChild(script);
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue