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 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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | import type { Meta, StoryObj } from '@storybook/react';
import { QuickActions } from './QuickActions';
import {
Plus,
Users,
FileText,
Settings,
Download,
Upload,
BarChart3,
Mail,
Shield,
Database,
Zap,
Globe
} from 'lucide-react';
const meta = {
title: 'Dashboard/QuickActions',
component: QuickActions,
parameters: {
layout: 'padded',
},
tags: ['autodocs'],
} satisfies Meta<typeof QuickActions>;
export default meta;
type Story = StoryObj<typeof meta>;
const commonActions = [
{
id: '1',
title: 'Add User',
description: 'Create a new user account',
icon: Plus,
onClick: () => alert('Add User clicked'),
},
{
id: '2',
title: 'Manage Users',
description: 'View and edit user accounts',
icon: Users,
onClick: () => alert('Manage Users clicked'),
},
{
id: '3',
title: 'Generate Report',
description: 'Create monthly analytics report',
icon: FileText,
onClick: () => alert('Generate Report clicked'),
},
{
id: '4',
title: 'System Settings',
description: 'Configure application settings',
icon: Settings,
onClick: () => alert('System Settings clicked'),
},
];
export const Default: Story = {
args: {
actions: commonActions,
},
};
export const SingleColumn: Story = {
args: {
actions: commonActions,
columns: 1,
title: 'Actions (Single Column)',
},
};
export const ThreeColumns: Story = {
args: {
actions: [
...commonActions,
{
id: '5',
title: 'Export Data',
description: 'Download user data as CSV',
icon: Download,
onClick: () => alert('Export Data clicked'),
},
{
id: '6',
title: 'Import Data',
description: 'Upload data from file',
icon: Upload,
onClick: () => alert('Import Data clicked'),
},
],
columns: 3,
title: 'Administrative Actions',
},
};
export const FourColumns: Story = {
args: {
actions: [
...commonActions,
{
id: '5',
title: 'Analytics',
description: 'View detailed analytics',
icon: BarChart3,
onClick: () => alert('Analytics clicked'),
},
{
id: '6',
title: 'Send Email',
description: 'Send notification emails',
icon: Mail,
onClick: () => alert('Send Email clicked'),
},
{
id: '7',
title: 'Security',
description: 'Manage security settings',
icon: Shield,
onClick: () => alert('Security clicked'),
},
{
id: '8',
title: 'Database',
description: 'Database maintenance',
icon: Database,
onClick: () => alert('Database clicked'),
},
],
columns: 4,
title: 'All Actions',
},
};
export const WithVariants: Story = {
args: {
actions: [
{
id: '1',
title: 'Primary Action',
description: 'Most important action',
icon: Zap,
onClick: () => alert('Primary clicked'),
variant: 'default',
},
{
id: '2',
title: 'Secondary Action',
description: 'Secondary importance',
icon: Users,
onClick: () => alert('Secondary clicked'),
variant: 'secondary',
},
{
id: '3',
title: 'Outline Action',
description: 'Outlined button style',
icon: FileText,
onClick: () => alert('Outline clicked'),
variant: 'outline',
},
{
id: '4',
title: 'Disabled Action',
description: 'Currently unavailable',
icon: Settings,
onClick: () => alert('This should not work'),
variant: 'outline',
disabled: true,
},
],
title: 'Different Variants',
},
};
export const Empty: Story = {
args: {
actions: [],
title: 'No Actions Available',
},
};
export const ManagementActions: Story = {
args: {
actions: [
{
id: '1',
title: 'User Management',
description: 'Add, edit, and remove users',
icon: Users,
onClick: () => alert('User Management clicked'),
variant: 'default',
},
{
id: '2',
title: 'Content Management',
description: 'Manage site content and pages',
icon: FileText,
onClick: () => alert('Content Management clicked'),
variant: 'outline',
},
{
id: '3',
title: 'System Analytics',
description: 'View performance metrics',
icon: BarChart3,
onClick: () => alert('Analytics clicked'),
variant: 'outline',
},
{
id: '4',
title: 'Global Settings',
description: 'Configure system-wide settings',
icon: Globe,
onClick: () => alert('Global Settings clicked'),
variant: 'secondary',
},
],
title: 'Management Dashboard',
columns: 2,
},
}; |