mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 16:07:45 +03:00 
			
		
		
		
	* Migrate * Config updates * Remove * No require-from-string * Update lock file * Fix types * Doesn't work * Update to CSF3
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import type { Preview } from '@storybook/react';
 | |
| 
 | |
| import { Container } from '../src';
 | |
| import { listSchemes, listThemes } from '../src/utils/theme';
 | |
| 
 | |
| const withThemeProvider = (Story, context) => (
 | |
|   <Container
 | |
|     themeData={{
 | |
|       theme: context.globals.theme,
 | |
|       scheme: context.globals.scheme,
 | |
|       colorPreference: context.globals.color,
 | |
|     }}
 | |
|   >
 | |
|     <Story {...context} />
 | |
|   </Container>
 | |
| );
 | |
| 
 | |
| const preview: Preview = {
 | |
|   parameters: {
 | |
|     actions: { argTypesRegex: '^on[A-Z].*' },
 | |
|   },
 | |
|   globalTypes: {
 | |
|     theme: {
 | |
|       name: 'Theme',
 | |
|       description: 'Global theme for components',
 | |
|       defaultValue: 'default',
 | |
|       toolbar: {
 | |
|         items: listThemes(),
 | |
|         showName: true,
 | |
|       },
 | |
|     },
 | |
|     scheme: {
 | |
|       name: 'Color Scheme',
 | |
|       description: 'Global color scheme for components',
 | |
|       defaultValue: 'default',
 | |
|       toolbar: {
 | |
|         items: listSchemes(),
 | |
|         showName: true,
 | |
|       },
 | |
|     },
 | |
|     color: {
 | |
|       name: 'Color',
 | |
|       description: 'Global color for components',
 | |
|       defaultValue: 'light',
 | |
|       toolbar: {
 | |
|         items: ['auto', 'light', 'dark'],
 | |
|         showName: true,
 | |
|       },
 | |
|     },
 | |
|   },
 | |
|   decorators: [withThemeProvider],
 | |
| };
 | |
| 
 | |
| export default preview;
 |