forked from nteract/nteract
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styleguide.config.js
120 lines (116 loc) · 3.31 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// @format
const path = require("path");
const reactDocgenTypescript = require("react-docgen-typescript").withCustomConfig(
"./tsconfig.base.json"
);
const typescriptPropsParser = reactDocgenTypescript.parse;
module.exports = {
title: "nteract components",
defaultExample: false,
propsParser: typescriptPropsParser,
resolver: require("react-docgen").resolver.findAllComponentDefinitions,
getComponentPathLine: componentPath => {
const toPascalCase = string => {
return string
.match(/[a-z]+/gi)
.map(function(word) {
return word.charAt(0).toUpperCase() + word.substr(1).toLowerCase();
})
.join("");
};
const name = path.basename(componentPath, ".tsx");
const dir = path.dirname(componentPath);
const package = dir.match(new RegExp("packages[\\\\/](.*)[\\\\/]src"));
return `import { ${toPascalCase(name)} } from '@nteract/${package[1]}';`;
},
sections: [
{
name: "Introduction",
content: "doc/components.md"
},
{
name: "@nteract/presentational-components",
components: "packages/presentational-components/src/components/*.tsx"
},
{
name: "@nteract/outputs",
components: "packages/outputs/src/components/*.tsx"
},
{
name: "@nteract/outputs/media",
components: "packages/outputs/src/components/media/*.tsx",
content: "packages/outputs/src/components/media/index.md",
ignore: "packages/outputs/src/components/media/index.tsx"
},
// {
// name: "@mybinder/host-cache",
// components: "packages/host-cache/src/components/*.tsx"
// },
{
name: "@nteract/directory-listing",
components: "packages/directory-listing/src/components/*.tsx"
},
{
name: "@nteract/markdown",
content: "packages/markdown/examples.md"
},
{
name: "@nteract/mathjax",
content: "packages/mathjax/examples.md"
}
],
// For overriding the components styleguidist uses
styleguideComponents: {
LogoRenderer: path.join(__dirname, "styleguide-components", "logo.tsx")
},
compilerConfig: {
// Allow us to use {...props}
objectAssign: "Object.assign",
transforms: {
// whether template strings get transpiled (we don't want it to, so that we can use the native functionality)
templateString: false
}
},
template: {
body: {
raw: `
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129108362-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129108362-2');
</script>`
}
},
webpackConfig: {
node: {
fs: "empty",
child_process: "empty",
net: "empty",
canvas: "empty"
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx", ".json"]
},
externals: ["canvas"],
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
compilerOptions: {
strict: true,
jsx: "react",
composite: true
},
projectReferences: true,
transpileOnly: true
}
}
]
}
}
};