Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | import type {Meta} from '@storybook/react-vite'; import type {StoryFn} from '../Editor.stories.js'; import {Editor} from '../Editor.js'; const meta: Meta<typeof Editor> = {title: 'Editor/ResponsiveLayout', component: Editor}; export default meta; const mock = (count: number) => Array.from({length: count}, (_, i) => `field${i + 1}`); const mockSchema = (count: number) => Object.fromEntries(mock(count).map(name => [name, {title: name}])); export const ResponsiveLayout: StoryFn = () => ( <Editor schema={{properties: mockSchema(4)}} cards={{ a1: {label: 'A 1', className: 'sm:col-6 xl:col-4', widgets: mock(3)}, a2: {label: 'A 2', widgets: mock(2)}, b1: {label: 'B 1', className: 'sm:col-6 xl:col-4', widgets: mock(2)}, b2: {label: 'B 2', widgets: mock(1)}, c1: {label: 'C 1', className: 'md:col-6 xl:col-4', widgets: mock(4)}, c2: {label: 'C 2', widgets: mock(1)}, d: {label: 'D', className: 'md:col-6 xl:col-4', widgets: mock(4)}, e: {label: 'E', className: 'md:col-4', widgets: mock(2)}, f1: {label: 'F 1', className: 'md:col-4', widgets: mock(1)}, f2: {label: 'F 2', widgets: mock(1)}, g: {label: 'G', className: 'md:col-4', widgets: mock(1)}, }} editable layout="edit" layouts={{ edit: [['a1', 'a2'], ['b1', 'b2'], ['c1', 'c2'], ['d'], ['e'], ['f1', 'f2'], ['g']], }} /> ); |