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

103 lines
2.7 KiB
React
Raw Normal View History

2017-12-22 17:49:38 +08:00
export function getMenuItems(moduleData, locale, categoryOrder, typeOrder) {
2016-08-04 10:52:09 +08:00
const menuMeta = moduleData.map(item => item.meta);
2017-12-22 17:49:38 +08:00
const menuItems = [];
const sortFn = (a, b) => (a.order || 0) - (b.order || 0);
menuMeta.sort(sortFn).forEach((meta) => {
if (!meta.category) {
menuItems.push(meta);
} else {
const category = meta.category[locale] || meta.category;
let group = menuItems.filter(i => i.title === category)[0];
if (!group) {
group = {
type: 'category',
title: category,
children: [],
order: categoryOrder[category],
};
menuItems.push(group);
}
if (meta.type) {
let type = group.children.filter(i => i.title === meta.type)[0];
if (!type) {
type = {
type: 'type',
title: meta.type,
children: [],
order: typeOrder[meta.type],
};
group.children.push(type);
}
type.children.push(meta);
} else {
group.children.push(meta);
}
}
});
2017-12-22 17:49:38 +08:00
return menuItems.map((i) => {
if (i.children) {
i.children = i.children.sort(sortFn);
}
return i;
}).sort(sortFn);
}
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`;
}
2017-07-10 22:17:52 +08:00
export function ping(callback) {
// eslint-disable-next-line
2017-09-25 14:15:06 +08:00
const url = 'https://private-a' + 'lipay' + 'objects.alip' + 'ay.com/alip' + 'ay-rmsdeploy-image/rmsportal/RKuAiriJqrUhyqW.png';
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);
}
2017-02-21 13:36:17 +08:00
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 loadScript(src) {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.type = 'text/javascript';
script.src = src;
script.onload = resolve;
script.onerror = reject;
document.head.appendChild(script);
});
}