ant-design/site/theme/template/utils.jsx

53 lines
1.4 KiB
React
Raw Normal View History

export function getMenuItems(moduleData, locale) {
2016-08-04 10:52:09 +08:00
const menuMeta = moduleData.map(item => item.meta);
const menuItems = {};
2016-07-17 14:46:21 +08:00
menuMeta.sort(
(a, b) => (a.order || 0) - (b.order || 0)
).forEach((meta) => {
const category = (meta.category && meta.category[locale]) || meta.category || 'topLevel';
if (!menuItems[category]) {
menuItems[category] = {};
}
const type = meta.type || 'topLevel';
if (!menuItems[category][type]) {
menuItems[category][type] = [];
}
menuItems[category][type].push(meta);
});
return menuItems;
}
export function isZhCN(pathname) {
return /-cn\/?$/.test(pathname);
}
2016-10-18 12:04:09 +08:00
export function getLocalizedPathname(path, zhCN) {
const pathname = path.startsWith('/') ? path : `/${path}`;
if (!zhCN) { // to enUS
return /\/?index-cn/.test(pathname) ? '/' : pathname.replace('-cn', '');
} else if (pathname === '/') {
return '/index-cn';
} else if (pathname.endsWith('/')) {
return pathname.replace(/\/$/, '-cn/');
}
return `${pathname}-cn`;
}
export function ping(url, callback) {
const img = new Image();
let done;
const finish = (status) => {
if (!done) {
done = true;
img.src = '';
callback(status);
}
};
img.onload = () => finish('responded');
img.onerror = () => finish('error');
img.src = url;
2016-07-17 15:25:12 +08:00
return setTimeout(() => finish('timeout'), 1500);
}