storybook
Version:
Storybook: Develop, document, and test UI components in isolation
178 lines (166 loc) • 6.57 kB
TypeScript
import { TypescriptOptions, StorybookConfig, PackageJson } from 'storybook/internal/types';
import { BinaryLike } from 'crypto';
type Agent = 'npm' | 'yarn' | 'yarn@berry' | 'pnpm' | 'pnpm@6' | 'bun' | 'deno';
type AgentName = 'npm' | 'yarn' | 'pnpm' | 'bun' | 'deno';
interface DetectResult {
/**
* Agent name without the specifier.
*
* Can be `npm`, `yarn`, `pnpm`, `bun`, or `deno`.
*/
name: AgentName;
/**
* Agent specifier to resolve the command.
*
* May contain '@' to differentiate the version (e.g. 'yarn@berry').
* Use `name` for the agent name without the specifier.
*/
agent: Agent;
/**
* Specific version of the agent, read from `packageManager` field in package.json.
*/
version?: string;
}
declare const monorepoConfigs: {
readonly Nx: "nx.json";
readonly Turborepo: "turbo.json";
readonly Lerna: "lerna.json";
readonly Rush: "rush.json";
readonly Lage: "lage.config.json";
};
type MonorepoType = keyof typeof monorepoConfigs | 'Workspaces' | undefined;
type EventType = 'boot' | 'add' | 'dev' | 'build' | 'index' | 'upgrade' | 'multi-upgrade' | 'init' | 'init-step' | 'scaffolded-empty' | 'browser' | 'canceled' | 'error' | 'error-metadata' | 'version-update' | 'core-config' | 'remove' | 'save-story' | 'create-new-story-file' | 'create-new-story-file-search' | 'open-in-editor' | 'testing-module-watch-mode' | 'testing-module-completed-report' | 'testing-module-crash-report' | 'addon-test' | 'test-run' | 'addon-onboarding' | 'onboarding-survey' | 'onboarding-checklist-muted' | 'onboarding-checklist-status' | 'mocking' | 'automigrate' | 'migrate' | 'preview-first-load' | 'doctor';
interface Dependency {
version: string | undefined;
versionSpecifier?: string;
}
interface StorybookAddon extends Dependency {
options: any;
}
type StorybookMetadata = {
storybookVersion?: string;
storybookVersionSpecifier: string;
generatedAt?: number;
userSince?: number;
language: 'typescript' | 'javascript';
framework?: {
name?: string;
options?: any;
};
builder?: string;
renderer?: string;
monorepo?: MonorepoType;
packageManager?: {
type: DetectResult['name'];
version: DetectResult['version'];
agent: DetectResult['agent'];
nodeLinker: 'node_modules' | 'pnp' | 'pnpm' | 'isolated' | 'hoisted';
};
typescriptOptions?: Partial<TypescriptOptions>;
addons?: Record<string, StorybookAddon>;
storybookPackages?: Record<string, Dependency>;
metaFramework?: {
name: string;
packageName: string;
version: string;
};
testPackages?: Record<string, string | undefined>;
hasRouterPackage?: boolean;
hasStorybookEslint?: boolean;
hasStaticDirs?: boolean;
hasCustomWebpack?: boolean;
hasCustomBabel?: boolean;
features?: StorybookConfig['features'];
refCount?: number;
preview?: {
usesGlobals?: boolean;
};
portableStoriesFileCount?: number;
applicationFileCount?: number;
};
interface Payload {
[key: string]: any;
}
interface Context {
[key: string]: any;
}
interface Options {
retryDelay: number;
immediate: boolean;
configDir?: string;
enableCrashReports?: boolean;
stripMetadata?: boolean;
notify?: boolean;
}
interface TelemetryData {
eventType: EventType;
payload: Payload;
metadata?: StorybookMetadata;
}
interface TelemetryEvent extends TelemetryData {
eventId: string;
sessionId: string;
context: Context;
}
interface InitPayload {
projectType: string;
features: {
dev: boolean;
docs: boolean;
test: boolean;
onboarding: boolean;
};
newUser: boolean;
versionSpecifier: string | undefined;
cliIntegration: string | undefined;
}
declare const oneWayHash: (payload: BinaryLike) => string;
declare const metaFrameworks: Record<string, string>;
declare const sanitizeAddonName: (name: string) => string;
declare const computeStorybookMetadata: ({ packageJsonPath, packageJson, mainConfig, configDir, }: {
packageJsonPath: string;
packageJson: PackageJson;
mainConfig?: StorybookConfig & Record<string, any>;
configDir: string;
}) => Promise<StorybookMetadata>;
declare const getStorybookMetadata: (_configDir?: string) => Promise<StorybookMetadata>;
interface IErrorWithStdErrAndStdOut {
stderr?: Buffer | string;
stdout?: Buffer | string;
[key: string]: unknown;
}
declare function removeAnsiEscapeCodes(input?: string): string;
declare function cleanPaths(str: string, separator?: string): string;
declare function sanitizeError(error: Error, pathSeparator?: string): any;
/**
* Service for collecting errors during Storybook initialization.
*
* This singleton class exists to accumulate non-fatal errors that occur during the Storybook's
* processes. Instead of immediately reporting errors to telemetry (which could interrupt the
* process), errors are collected here and then batch-reported at the end of initialization via the
* telemetry system.
*
* This allows Storybook to continue e.g. initialization even when non-critical errors occur,
* ensuring a better user experience while still capturing all errors for telemetry and debugging
* purposes.
*/
declare class ErrorCollector {
private static instance;
private errors;
private constructor();
static getInstance(): ErrorCollector;
static addError(error: unknown): void;
static getErrors(): unknown[];
}
interface UpgradeSummary {
timestamp: number;
eventType?: EventType;
eventId?: string;
sessionId?: string;
}
declare const getPrecedingUpgrade: (events?: any) => Promise<UpgradeSummary | undefined>;
declare const addToGlobalContext: (key: string, value: any) => void;
/** Is this story part of the CLI generated examples, including user-created stories in those files */
declare const isExampleStoryId: (storyId: string) => boolean;
declare const telemetry: (eventType: EventType, payload?: Payload, options?: Partial<Options>) => Promise<void>;
export { type Context, type Dependency, ErrorCollector, type EventType, type IErrorWithStdErrAndStdOut, type InitPayload, type Options, type Payload, type StorybookAddon, type StorybookMetadata, type TelemetryData, type TelemetryEvent, addToGlobalContext, cleanPaths, computeStorybookMetadata, getPrecedingUpgrade, getStorybookMetadata, isExampleStoryId, metaFrameworks, oneWayHash, removeAnsiEscapeCodes, sanitizeAddonName, sanitizeError, telemetry };