You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
908 B
34 lines
908 B
export function isZhCN(name) {
|
|
return /-cn\/?$/.test(name);
|
|
}
|
|
export function isLocalStorageNameSupported() {
|
|
const testKey = 'test';
|
|
const storage = window.localStorage;
|
|
try {
|
|
storage.setItem(testKey, '1');
|
|
storage.removeItem(testKey);
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|
|
export function getLocalizedPathname(path, zhCN, query = {}, hash) {
|
|
const pathname = path.startsWith('/') ? path : `/${path}`;
|
|
let fullPath;
|
|
if (!zhCN) {
|
|
// to enUS
|
|
fullPath = /\/?index-cn/.test(pathname) ? '/' : pathname.replace('-cn', '');
|
|
} else if (pathname === '/') {
|
|
fullPath = '/index-cn';
|
|
} else if (pathname.endsWith('/')) {
|
|
fullPath = pathname.replace(/\/$/, '-cn/');
|
|
} else {
|
|
fullPath = `${pathname}-cn`;
|
|
}
|
|
if (hash) {
|
|
const localHash = hash[zhCN ? 'zhCN' : 'enUS'];
|
|
fullPath += `#${localHash}`;
|
|
}
|
|
return { path: fullPath, query };
|
|
}
|