2016-11-07 11:48:28 +08:00
|
|
|
/* eslint no-console:0 */
|
2020-09-25 11:22:02 +08:00
|
|
|
function pascalCase(name) {
|
2018-11-28 12:33:09 +08:00
|
|
|
return name.charAt(0).toUpperCase() + name.slice(1).replace(/-(\w)/g, (m, n) => n.toUpperCase());
|
2016-11-07 11:48:28 +08:00
|
|
|
}
|
|
|
|
|
2016-11-07 14:03:45 +08:00
|
|
|
// Just import style for https://github.com/ant-design/ant-design/issues/3745
|
2017-01-13 17:48:30 +08:00
|
|
|
const req = require.context('./components', true, /^\.\/[^_][\w-]+\/style\/index\.tsx?$/);
|
2016-11-07 11:48:28 +08:00
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
req.keys().forEach(mod => {
|
2016-11-07 11:48:28 +08:00
|
|
|
let v = req(mod);
|
|
|
|
if (v && v.default) {
|
|
|
|
v = v.default;
|
|
|
|
}
|
|
|
|
const match = mod.match(/^\.\/([^_][\w-]+)\/index\.tsx?$/);
|
|
|
|
if (match && match[1]) {
|
|
|
|
if (match[1] === 'message' || match[1] === 'notification') {
|
|
|
|
// message & notification should not be capitalized
|
|
|
|
exports[match[1]] = v;
|
|
|
|
} else {
|
2020-09-25 11:22:02 +08:00
|
|
|
exports[pascalCase(match[1])] = v;
|
2016-11-07 11:48:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-10-31 12:09:06 +08:00
|
|
|
module.exports = require('./components');
|