nx/graph/ui-graph/src/lib/nx-project-graph-viz.stories.tsx
2023-08-01 10:11:07 +03:00

71 lines
1.6 KiB
TypeScript

import type { Meta, StoryObj } from '@storybook/react';
import { NxProjectGraphViz } from './nx-project-graph-viz';
const meta: Meta<typeof NxProjectGraphViz> = {
component: NxProjectGraphViz,
title: 'NxProjectGraphViz',
};
export default meta;
type Story = StoryObj<typeof NxProjectGraphViz>;
export const Primary: Story = {
args: {
projects: [
{
type: 'app',
name: 'app',
data: {
tags: ['scope:cart'],
description: 'This is your top-level app',
files: [
{
file: 'whatever.ts',
deps: ['lib'],
},
],
},
} as any,
{
type: 'lib',
name: 'lib',
data: {
tags: ['scope:cart'],
description: 'This lib implements some type of feature for your app.',
},
},
{
type: 'lib',
name: 'lib2',
data: {
root: 'libs/nested-scope/lib2',
tags: ['scope:cart'],
},
},
{
type: 'lib',
name: 'lib3',
data: {
root: 'libs/nested-scope/lib3',
tags: ['scope:cart'],
},
},
],
groupByFolder: true,
workspaceLayout: { appsDir: 'apps', libsDir: 'libs' },
dependencies: {
app: [{ target: 'lib', source: 'app', type: 'direct' }],
lib: [
{ target: 'lib2', source: 'lib', type: 'implicit' },
{ target: 'lib3', source: 'lib', type: 'direct' },
],
lib2: [],
lib3: [],
},
affectedProjectIds: [],
theme: 'light',
height: '450px',
enableTooltips: true,
},
};