mirror of
https://github.com/Graylog2/graylog2-server.git
synced 2026-03-13 09:32:21 +08:00
114 lines
3.1 KiB
JavaScript
114 lines
3.1 KiB
JavaScript
/*
|
|
* Copyright (C) 2020 Graylog, Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the Server Side Public License, version 1,
|
|
* as published by MongoDB, Inc.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* Server Side Public License for more details.
|
|
*
|
|
* You should have received a copy of the Server Side Public License
|
|
* along with this program. If not, see
|
|
* <http://www.mongodb.com/licensing/server-side-public-license>.
|
|
*/
|
|
/* This file contains configuration for React Styleguidist https://react-styleguidist.js.org/ */
|
|
const path = require('path');
|
|
|
|
const { merge } = require('webpack-merge');
|
|
|
|
const webpackConfig = require('./webpack.config.js');
|
|
|
|
const defaultComponentIgnore = [
|
|
'**/__tests__/**',
|
|
'**/*.test.{js,jsx,ts,tsx}',
|
|
'**/*.spec.{js,jsx,ts,tsx}',
|
|
'**/*.d.ts',
|
|
];
|
|
|
|
module.exports = {
|
|
skipComponentsWithoutExample: true,
|
|
require: ['core-js/stable', 'regenerator-runtime/runtime', 'bootstrap/less/bootstrap.less', './fetch-mock'],
|
|
sections: [
|
|
{
|
|
name: 'Introduction',
|
|
content: 'docs/introduction.md',
|
|
},
|
|
{
|
|
name: 'Theming',
|
|
content: 'src/theme/docs/Details.md',
|
|
sections: [
|
|
{
|
|
name: 'ThemeProvider & Usage',
|
|
content: 'src/theme/docs/ThemeProvider.md',
|
|
},
|
|
{
|
|
name: 'Fonts',
|
|
content: 'src/theme/docs/Fonts.md',
|
|
},
|
|
{
|
|
name: 'Colors',
|
|
content: 'src/theme/docs/Colors.md',
|
|
},
|
|
{
|
|
name: 'Color Utilities',
|
|
content: 'src/theme/docs/Utilities.md',
|
|
},
|
|
{
|
|
name: 'Spacings',
|
|
content: 'src/theme/docs/Spacings.md',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'UX Patterns - Best Practices',
|
|
content: 'docs/ux-patterns.md',
|
|
},
|
|
{
|
|
name: 'Common functionality',
|
|
content: 'docs/common-functionality.md',
|
|
},
|
|
{
|
|
name: 'Shared Components',
|
|
sections: [
|
|
{
|
|
name: 'How to document your components',
|
|
content: 'docs/documentation.md',
|
|
},
|
|
{
|
|
name: 'Bootstrap',
|
|
components: 'src/components/bootstrap/[A-Z]*.{jsx,tsx}',
|
|
},
|
|
{
|
|
name: 'Common',
|
|
components: 'src/components/common/**/[A-Z]*.{jsx,tsx}',
|
|
ignore: defaultComponentIgnore,
|
|
},
|
|
{
|
|
name: 'Configuration Forms',
|
|
components: 'src/components/configurationforms/[A-Z]*.{jsx,tsx}',
|
|
ignore: defaultComponentIgnore,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
usageMode: 'collapse',
|
|
styleguideComponents: {
|
|
Wrapper: path.join(__dirname, 'docs/StyleGuideWrapper'),
|
|
},
|
|
styleguideDir: 'docs/styleguide',
|
|
title: 'Graylog UI documentation',
|
|
webpackConfig: {
|
|
module: webpackConfig.module,
|
|
resolve: merge.smart({ modules: ['node_modules'] }, webpackConfig.resolve),
|
|
resolveLoader: webpackConfig.resolveLoader,
|
|
devServer: {
|
|
client: {
|
|
overlay: false,
|
|
},
|
|
},
|
|
},
|
|
};
|