ant-design/index.js

26 lines
774 B
JavaScript
Raw Normal View History

2016-11-07 11:48:28 +08:00
/* eslint no-console:0 */
function pascalCase(name) {
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 {
exports[pascalCase(match[1])] = v;
2016-11-07 11:48:28 +08:00
}
}
});
module.exports = require('./components');