-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyleguide.config.js
106 lines (96 loc) · 2.43 KB
/
styleguide.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
const path = require('path');
const dir = path.join(__dirname, 'src');
var glob = require('glob');
const createRe = (components) => {
return new RegExp(
components.map(name => `/${name}`).join('|'));
};
const RE_TYPO = new RegExp([
'Text.jsx'
].join('|'));
const RE_HELPERS = createRe([
'Teleport.jsx',
'TeleportContext.jsx',
'Placer.jsx',
'TargetWrapper.jsx',
'AutoClosable.jsx',
'StateProvider.jsx',
'Transition.jsx',
'Toggler.jsx',
'Popover.jsx',
]);
const RE_CONTROLS = createRe([
'Button.jsx',
'PrimaryButton.jsx',
'TextInput.jsx',
'Dropdown.jsx'
]);
const RE_ELEMENTS = createRe([
'View.jsx',
'Tail.jsx',
'Spinner.jsx',
'FontIcon.jsx',
'CloseCross.jsx',
'Popup.jsx',
]);
const RE_VIEWS = createRe([
'Modal.jsx'
]);
const createMatcher = (re) => () => {
return glob.sync(path.resolve(__dirname, './src/**/*.jsx')).filter((module) => re.test(module));
};
module.exports = {
title: 'Roistat react ui components',
sections: [
{
name: 'Typography',
components: createMatcher(RE_TYPO)
},
{
name: 'Controls',
components: createMatcher(RE_CONTROLS)
},
{
name: 'Views',
components: createMatcher(RE_VIEWS)
},
{
name: 'Helpers',
components: createMatcher(RE_HELPERS)
},
{
name: 'Elements',
components: createMatcher(RE_ELEMENTS)
}
// {
// name: 'Behavers',
// components: createMatcher(RE_ELEMENTS)
// }
],
getExampleFilename: function(componentPath) {
return componentPath.replace(/\.jsx?$/, '.md');
},
highlightTheme: 'material',
assetsDir: './assets',
template: './assets/template.html',
styleguideDir: 'styleguide',
updateWebpackConfig: function(webpackConfig, env) {
webpackConfig.module.resolve = {
extensions: [
'',
'.js',
'.jsx'
]
};
webpackConfig.module.loaders = webpackConfig.module.loaders.concat([
// Babel loader will use your project’s .babelrc
{
test: /\.jsx?$/,
include: dir,
loader: 'babel'
}
]);
return webpackConfig;
}
// Put other configuration options here...
};