styleguide.config.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. const path = require('path');
  2. module.exports = {
  3. title: 'Emilia - Documentation of Client Components',
  4. pagePerSection: true,
  5. exampleMode: 'hide', // 'hide' | 'collapse' | 'expand'
  6. usageMode: 'expand', // 'hide' | 'collapse' | 'expand'
  7. ignore: ['**/*.util.{jsx,js}', '**/use*.{jsx,js}', './src/components/Meals/CategoryIcons.jsx'], // Styleguidist can only document components, not pure functions or Hooks. That is why these must be ignored.
  8. styleguideDir: './docs',
  9. sections: [
  10. {
  11. name: 'Button Components',
  12. description: 'Different Buttons or clickable Icons and Text',
  13. components: './src/components/Buttons/*.jsx',
  14. },
  15. {
  16. name: 'Image Components',
  17. description: 'Everything related to uploading and displaying images',
  18. components: './src/components/Images/*.jsx',
  19. },
  20. {
  21. name: 'Meal Components',
  22. components: './src/components/Meals/*.jsx',
  23. },
  24. {
  25. name: 'Plan Components',
  26. components: './src/components/Plans/*.jsx',
  27. },
  28. {
  29. name: 'Settings Components',
  30. components: './src/components/Settings/*.jsx',
  31. },
  32. {
  33. name: 'Social/Contacts Components',
  34. components: './src/components/Social/*.jsx',
  35. },
  36. {
  37. name: 'Util Components',
  38. description: 'Helper components to be used in different parts of the app',
  39. components: ['./src/components/util/*.jsx'],
  40. },
  41. ],
  42. }