Merge pull request #19749 from storybookjs/tech/introduce-preview-api

Tech/introduce-preview-api
This commit is contained in:
Norbert de Langen 2022-11-24 14:04:39 +01:00 committed by GitHub
commit 557c55e516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
284 changed files with 1446 additions and 1008 deletions

View File

@ -69,6 +69,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"axe-core": "^4.2.0", "axe-core": "^4.2.0",

View File

@ -1,7 +1,7 @@
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { EVENTS } from './constants'; import { EVENTS } from './constants';
jest.mock('@storybook/addons'); jest.mock('@storybook/preview-api');
const mockedAddons = addons as jest.Mocked<typeof addons>; const mockedAddons = addons as jest.Mocked<typeof addons>;
describe('a11yRunner', () => { describe('a11yRunner', () => {

View File

@ -1,5 +1,5 @@
import global from 'global'; import global from 'global';
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { EVENTS } from './constants'; import { EVENTS } from './constants';
import type { A11yParameters } from './params'; import type { A11yParameters } from './params';

View File

@ -81,6 +81,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"dequal": "^2.0.2", "dequal": "^2.0.2",

View File

@ -1,5 +1,5 @@
import global from 'global'; import global from 'global';
import { useEffect, makeDecorator } from '@storybook/addons'; import { useEffect, makeDecorator } from '@storybook/preview-api';
import { actions } from './runtime/actions'; import { actions } from './runtime/actions';
import { PARAM_KEY } from './constants'; import { PARAM_KEY } from './constants';

View File

@ -1,7 +1,7 @@
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { action, configureActions } from '../..'; import { action, configureActions } from '../..';
jest.mock('@storybook/addons'); jest.mock('@storybook/preview-api');
const createChannel = () => { const createChannel = () => {
const channel = { emit: jest.fn() }; const channel = { emit: jest.fn() };

View File

@ -1,7 +1,7 @@
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { actions } from '../..'; import { actions } from '../..';
jest.mock('@storybook/addons'); jest.mock('@storybook/preview-api');
const createChannel = () => { const createChannel = () => {
const channel = { emit: jest.fn() }; const channel = { emit: jest.fn() };

View File

@ -1,5 +1,5 @@
import uuidv4 from 'uuid-browser/v4'; import uuidv4 from 'uuid-browser/v4';
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { EVENT_ID } from '../constants'; import { EVENT_ID } from '../constants';
import type { ActionDisplay, ActionOptions, HandlerFunction } from '../models'; import type { ActionDisplay, ActionOptions, HandlerFunction } from '../models';
import { config } from './configureActions'; import { config } from './configureActions';

View File

@ -80,6 +80,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",

View File

@ -1,4 +1,4 @@
import { useMemo, useEffect } from '@storybook/addons'; import { useMemo, useEffect } from '@storybook/preview-api';
import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types'; import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types';
import { PARAM_KEY as BACKGROUNDS_PARAM_KEY } from '../constants'; import { PARAM_KEY as BACKGROUNDS_PARAM_KEY } from '../constants';

View File

@ -1,4 +1,4 @@
import { useMemo, useEffect } from '@storybook/addons'; import { useMemo, useEffect } from '@storybook/preview-api';
import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types'; import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types';
import { clearStyles, addGridStyle } from '../helpers'; import { clearStyles, addGridStyle } from '../helpers';

View File

@ -74,7 +74,7 @@
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"lodash": "^4.17.21", "lodash": "^4.17.21",

View File

@ -159,7 +159,7 @@ If you're currently using the notes/info addons, you can upgrade to DocsPage by
Suppose you've added a `notes` parameter to each component in your library, containing markdown text, and you want that to show up at the top of the page in the `Description` slot. You could do that by adding the following snippet to `.storybook/preview.js`: Suppose you've added a `notes` parameter to each component in your library, containing markdown text, and you want that to show up at the top of the page in the `Description` slot. You could do that by adding the following snippet to `.storybook/preview.js`:
```js ```js
import { addParameters } from '@storybook/client-api'; import { addParameters } from '@storybook/preview-api';
addParameters({ addParameters({
docs: { docs: {

View File

@ -94,7 +94,8 @@
"@storybook/mdx2-csf": "next", "@storybook/mdx2-csf": "next",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/postinstall": "7.0.0-alpha.53", "@storybook/postinstall": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"fs-extra": "^9.0.1", "fs-extra": "^9.0.1",
"global": "^4.4.0", "global": "^4.4.0",

View File

@ -1,7 +1,6 @@
import React from 'react'; import React from 'react';
import ReactDOM from 'react-dom'; import ReactDOM from 'react-dom';
import type { Renderer, Parameters } from '@storybook/types'; import type { Renderer, Parameters, DocsContextProps, DocsRenderFunction } from '@storybook/types';
import type { DocsContextProps, DocsRenderFunction } from '@storybook/preview-web';
import { components as htmlComponents } from '@storybook/components'; import { components as htmlComponents } from '@storybook/components';
import { Docs, CodeOrSourceMdx, AnchorMdx, HeadersMdx } from '@storybook/blocks'; import { Docs, CodeOrSourceMdx, AnchorMdx, HeadersMdx } from '@storybook/blocks';
import { MDXProvider } from '@mdx-js/react'; import { MDXProvider } from '@mdx-js/react';

View File

@ -124,6 +124,7 @@
"@storybook/api": "7.0.0-alpha.53", "@storybook/api": "7.0.0-alpha.53",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"ts-dedent": "^2.0.0" "ts-dedent": "^2.0.0"
}, },
"devDependencies": { "devDependencies": {

View File

@ -62,6 +62,7 @@
"dependencies": { "dependencies": {
"@storybook/addons": "7.0.0-alpha.53", "@storybook/addons": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"global": "^4.4.0" "global": "^4.4.0"
}, },
"devDependencies": { "devDependencies": {

View File

@ -1,6 +1,6 @@
/* eslint-env browser */ /* eslint-env browser */
import global from 'global'; import global from 'global';
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { STORY_CHANGED } from '@storybook/core-events'; import { STORY_CHANGED } from '@storybook/core-events';
import { HIGHLIGHT, RESET_HIGHLIGHT, HIGHLIGHT_STYLE_ID } from './constants'; import { HIGHLIGHT, RESET_HIGHLIGHT, HIGHLIGHT_STYLE_ID } from './constants';

View File

@ -79,6 +79,7 @@
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/instrumenter": "7.0.0-alpha.53", "@storybook/instrumenter": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",

View File

@ -1,6 +1,6 @@
/// <reference types="node" /> /// <reference types="node" />
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { FORCE_REMOUNT, STORY_RENDER_PHASE_CHANGED } from '@storybook/core-events'; import { FORCE_REMOUNT, STORY_RENDER_PHASE_CHANGED } from '@storybook/core-events';
import type { import type {
Renderer, Renderer,

View File

@ -74,6 +74,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",
"react-sizeme": "^3.0.1", "react-sizeme": "^3.0.1",

View File

@ -1,6 +1,6 @@
/// <reference types="webpack-env" /> /// <reference types="webpack-env" />
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { normalize, sep } from 'upath'; import { normalize, sep } from 'upath';
import { ADD_TESTS, defineJestParameter } from './shared'; import { ADD_TESTS, defineJestParameter } from './shared';

View File

@ -80,6 +80,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/csf": "next", "@storybook/csf": "next",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/router": "7.0.0-alpha.53", "@storybook/router": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",

View File

@ -1,4 +1,4 @@
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import EVENTS, { ADDON_ID } from './constants'; import EVENTS, { ADDON_ID } from './constants';

View File

@ -1,11 +1,11 @@
import React from 'react'; import React from 'react';
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { render, screen, waitFor } from '@testing-library/react'; import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event'; import userEvent from '@testing-library/user-event';
import { SELECT_STORY } from '@storybook/core-events'; import { SELECT_STORY } from '@storybook/core-events';
import LinkTo from './link'; import LinkTo from './link';
jest.mock('@storybook/addons'); jest.mock('@storybook/preview-api');
jest.mock('global', () => ({ jest.mock('global', () => ({
document: { document: {
location: { location: {

View File

@ -1,9 +1,9 @@
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { SELECT_STORY } from '@storybook/core-events'; import { SELECT_STORY } from '@storybook/core-events';
import { linkTo, hrefTo } from './utils'; import { linkTo, hrefTo } from './utils';
jest.mock('@storybook/addons'); jest.mock('@storybook/preview-api');
jest.mock('global', () => ({ jest.mock('global', () => ({
document: global.document, document: global.document,
window: global, window: global,

View File

@ -1,5 +1,5 @@
import global from 'global'; import global from 'global';
import { addons, makeDecorator } from '@storybook/addons'; import { addons, makeDecorator } from '@storybook/preview-api';
import { STORY_CHANGED, SELECT_STORY } from '@storybook/core-events'; import { STORY_CHANGED, SELECT_STORY } from '@storybook/core-events';
import type { StoryId, StoryName, ComponentTitle } from '@storybook/types'; import type { StoryId, StoryName, ComponentTitle } from '@storybook/types';
import { toId } from '@storybook/csf'; import { toId } from '@storybook/csf';

View File

@ -79,6 +79,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0" "global": "^4.4.0"
}, },

View File

@ -1,5 +1,5 @@
/* eslint-env browser */ /* eslint-env browser */
import { useEffect } from '@storybook/addons'; import { useEffect } from '@storybook/preview-api';
import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types'; import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types';
import { drawSelectedElement } from './box-model/visualizer'; import { drawSelectedElement } from './box-model/visualizer';
import { init, rescale, destroy } from './box-model/canvas'; import { init, rescale, destroy } from './box-model/canvas';

View File

@ -82,6 +82,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",
"ts-dedent": "^2.0.0" "ts-dedent": "^2.0.0"

View File

@ -1,4 +1,4 @@
import { useMemo, useEffect } from '@storybook/addons'; import { useMemo, useEffect } from '@storybook/preview-api';
import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types'; import type { Renderer, PartialStoryFn as StoryFunction, StoryContext } from '@storybook/types';
import { clearStyles, addOutlineStyles } from './helpers'; import { clearStyles, addOutlineStyles } from './helpers';

View File

@ -41,9 +41,9 @@
"@storybook/addons": "7.0.0-alpha.53", "@storybook/addons": "7.0.0-alpha.53",
"@storybook/babel-plugin-require-context-hook": "1.0.1", "@storybook/babel-plugin-require-context-hook": "1.0.1",
"@storybook/client-api": "7.0.0-alpha.53", "@storybook/client-api": "7.0.0-alpha.53",
"@storybook/core-client": "7.0.0-alpha.53",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/core-webpack": "7.0.0-alpha.53", "@storybook/core-webpack": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"@types/glob": "^7.1.3", "@types/glob": "^7.1.3",
"@types/jest-specific-snapshot": "^0.5.6", "@types/jest-specific-snapshot": "^0.5.6",

View File

@ -1,5 +1,5 @@
import type { Renderer, Addon_Loadable } from '@storybook/types'; import type { Renderer, Addon_Loadable } from '@storybook/types';
import type { ClientApi as ClientApiClass } from '@storybook/client-api'; import type { ClientApi as ClientApiClass } from '@storybook/preview-api';
import type { StoryshotsOptions } from '../api/StoryshotsOptions'; import type { StoryshotsOptions } from '../api/StoryshotsOptions';
import type { SupportedFramework } from './SupportedFramework'; import type { SupportedFramework } from './SupportedFramework';

View File

@ -35,13 +35,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -12,13 +12,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -18,13 +18,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -13,13 +13,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -10,13 +10,13 @@ function test(options: StoryshotsOptions): boolean {
function load(options: StoryshotsOptions) { function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -18,13 +18,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -15,13 +15,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -18,13 +18,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -13,13 +13,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -12,13 +12,13 @@ function load(options: StoryshotsOptions) {
let mockStartedAPI: any; let mockStartedAPI: any;
jest.mock('@storybook/core-client', () => { jest.mock('@storybook/preview-api', () => {
const coreClientAPI = jest.requireActual('@storybook/core-client'); const previewAPI = jest.requireActual('@storybook/preview-api');
return { return {
...coreClientAPI, ...previewAPI,
start: (...args: any[]) => { start: (...args: any[]) => {
mockStartedAPI = coreClientAPI.start(...args); mockStartedAPI = previewAPI.start(...args);
return mockStartedAPI; return mockStartedAPI;
}, },
}; };

View File

@ -57,6 +57,7 @@
"@storybook/api": "7.0.0-alpha.53", "@storybook/api": "7.0.0-alpha.53",
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/router": "7.0.0-alpha.53", "@storybook/router": "7.0.0-alpha.53",
"@storybook/source-loader": "7.0.0-alpha.53", "@storybook/source-loader": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",

View File

@ -71,6 +71,7 @@
"@storybook/api": "7.0.0-alpha.53", "@storybook/api": "7.0.0-alpha.53",
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53" "@storybook/theming": "7.0.0-alpha.53"
}, },
"devDependencies": { "devDependencies": {

View File

@ -77,6 +77,7 @@
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/components": "7.0.0-alpha.53", "@storybook/components": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",
"memoizerific": "^1.11.3", "memoizerific": "^1.11.3",

View File

@ -45,7 +45,7 @@
"@storybook/core-webpack": "7.0.0-alpha.53", "@storybook/core-webpack": "7.0.0-alpha.53",
"@storybook/docs-tools": "7.0.0-alpha.53", "@storybook/docs-tools": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"@types/node": "^16.0.0", "@types/node": "^16.0.0",
"@types/react": "^16.14.34", "@types/react": "^16.14.34",

View File

@ -1,4 +1,4 @@
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import { DOCS_RENDERED, STORY_CHANGED } from '@storybook/core-events'; import { DOCS_RENDERED, STORY_CHANGED } from '@storybook/core-events';
import { AbstractRenderer } from './AbstractRenderer'; import { AbstractRenderer } from './AbstractRenderer';
import { StoryFnAngularReturnType, Parameters } from '../types'; import { StoryFnAngularReturnType, Parameters } from '../types';

View File

@ -1,5 +1,5 @@
import { DecoratorFunction, LegacyStoryFn, StoryContext } from '@storybook/types'; import { DecoratorFunction, LegacyStoryFn, StoryContext } from '@storybook/types';
import { sanitizeStoryContextUpdate } from '@storybook/store'; import { sanitizeStoryContextUpdate } from '@storybook/preview-api';
import { computesTemplateFromComponent } from './angular-beta/ComputesTemplateFromComponent'; import { computesTemplateFromComponent } from './angular-beta/ComputesTemplateFromComponent';
import { AngularRenderer } from './types'; import { AngularRenderer } from './types';

View File

@ -1,4 +1,4 @@
import { addons, useEffect } from '@storybook/addons'; import { addons, useEffect } from '@storybook/preview-api';
import { PartialStoryFn } from '@storybook/types'; import { PartialStoryFn } from '@storybook/types';
import { SNIPPET_RENDERED, SourceType } from '@storybook/docs-tools'; import { SNIPPET_RENDERED, SourceType } from '@storybook/docs-tools';
import { StoryContext, AngularRenderer } from '../types'; import { StoryContext, AngularRenderer } from '../types';

View File

@ -815,7 +815,7 @@ const newWebpackConfiguration = (
modules: ['node_modules'], modules: ['node_modules'],
mainFields: ['browser', 'main'], mainFields: ['browser', 'main'],
alias: { alias: {
'@storybook/addons': '/Users/joe/storybook/lib/addons', '@storybook/preview-api': '/Users/joe/storybook/lib/addons',
'@storybook/api': '/Users/joe/storybook/lib/api', '@storybook/api': '/Users/joe/storybook/lib/api',
'@storybook/channels': '/Users/joe/storybook/lib/channels', '@storybook/channels': '/Users/joe/storybook/lib/channels',
'@storybook/channel-postmessage': '/Users/joe/storybook/lib/channel-postmessage', '@storybook/channel-postmessage': '/Users/joe/storybook/lib/channel-postmessage',

View File

@ -32,10 +32,9 @@
}, },
"dependencies": { "dependencies": {
"@storybook/builder-webpack5": "7.0.0-alpha.53", "@storybook/builder-webpack5": "7.0.0-alpha.53",
"@storybook/core-client": "7.0.0-alpha.53",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/docs-tools": "7.0.0-alpha.53", "@storybook/docs-tools": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0", "global": "^4.4.0",
"react": "16.14.0", "react": "16.14.0",

View File

@ -1,4 +1,4 @@
import { start } from '@storybook/core-client'; import { start } from '@storybook/preview-api';
import './globals'; import './globals';
import type { EmberRenderer } from './types'; import type { EmberRenderer } from './types';

View File

@ -64,6 +64,7 @@
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/preset-react-webpack": "7.0.0-alpha.53", "@storybook/preset-react-webpack": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/react": "7.0.0-alpha.53", "@storybook/react": "7.0.0-alpha.53",
"@types/node": "^16.0.0", "@types/node": "^16.0.0",
"find-up": "^5.0.0", "find-up": "^5.0.0",

View File

@ -57,8 +57,7 @@
"@storybook/builder-vite": "7.0.0-alpha.53", "@storybook/builder-vite": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53", "@storybook/channel-postmessage": "7.0.0-alpha.53",
"@storybook/channel-websocket": "7.0.0-alpha.53", "@storybook/channel-websocket": "7.0.0-alpha.53",
"@storybook/client-api": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53",
"@storybook/react": "7.0.0-alpha.53", "@storybook/react": "7.0.0-alpha.53",
"@vitejs/plugin-react": "^2.0.0", "@vitejs/plugin-react": "^2.0.0",
"ast-types": "^0.14.2", "ast-types": "^0.14.2",

View File

@ -1,13 +1,11 @@
// exports for builder-vite // TODO: figure out if any of this is required
import * as clientApi from '@storybook/client-api'; // possibly make it not required, framework should never be imported directly, except for types in config files
// client-api exposes both a class, and individual named exports.
// The class is used in StoryStoreV7 and the individual exports in SSv6
const { ClientApi } = clientApi;
export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage'; export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage';
export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket'; export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket';
export { addons } from '@storybook/addons';
export { composeConfigs, PreviewWeb } from '@storybook/preview-web'; export { addons } from '@storybook/preview-api';
export { clientApi, ClientApi }; export { composeConfigs, PreviewWeb } from '@storybook/preview-api';
export { ClientApi } from '@storybook/preview-api';
export type { StorybookConfig } from '@storybook/builder-vite'; export type { StorybookConfig } from '@storybook/builder-vite';

View File

@ -56,9 +56,8 @@
"@storybook/builder-vite": "7.0.0-alpha.53", "@storybook/builder-vite": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53", "@storybook/channel-postmessage": "7.0.0-alpha.53",
"@storybook/channel-websocket": "7.0.0-alpha.53", "@storybook/channel-websocket": "7.0.0-alpha.53",
"@storybook/client-api": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/svelte": "7.0.0-alpha.53", "@storybook/svelte": "7.0.0-alpha.53",
"@sveltejs/vite-plugin-svelte": "^1.0.0", "@sveltejs/vite-plugin-svelte": "^1.0.0",
"magic-string": "^0.26.1", "magic-string": "^0.26.1",

View File

@ -1,13 +1,8 @@
// exports for builder-vite
import * as clientApi from '@storybook/client-api';
// client-api exposes both a class, and individual named exports.
// The class is used in StoryStoreV7 and the individual exports in SSv6
const { ClientApi } = clientApi;
export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage'; export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage';
export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket'; export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket';
export { addons } from '@storybook/addons';
export { composeConfigs, PreviewWeb } from '@storybook/preview-web'; export { addons } from '@storybook/preview-api';
export { clientApi, ClientApi }; export { composeConfigs, PreviewWeb } from '@storybook/preview-api';
export { ClientApi } from '@storybook/preview-api';
export type { StorybookConfig } from '@storybook/builder-vite'; export type { StorybookConfig } from '@storybook/builder-vite';

View File

@ -54,10 +54,9 @@
"@storybook/builder-vite": "7.0.0-alpha.53", "@storybook/builder-vite": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53", "@storybook/channel-postmessage": "7.0.0-alpha.53",
"@storybook/channel-websocket": "7.0.0-alpha.53", "@storybook/channel-websocket": "7.0.0-alpha.53",
"@storybook/client-api": "7.0.0-alpha.53",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/core-server": "7.0.0-alpha.53", "@storybook/core-server": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/vue": "7.0.0-alpha.53", "@storybook/vue": "7.0.0-alpha.53",
"magic-string": "^0.26.1", "magic-string": "^0.26.1",
"vite": "^3.1.3", "vite": "^3.1.3",

View File

@ -1,13 +1,8 @@
// exports for builder-vite
import * as clientApi from '@storybook/client-api';
// client-api exposes both a class, and individual named exports.
// The class is used in StoryStoreV7 and the individual exports in SSv6
const { ClientApi } = clientApi;
export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage'; export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage';
export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket'; export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket';
export { addons } from '@storybook/addons';
export { composeConfigs, PreviewWeb } from '@storybook/preview-web'; export { addons } from '@storybook/preview-api';
export { clientApi, ClientApi }; export { composeConfigs, PreviewWeb } from '@storybook/preview-api';
export { ClientApi } from '@storybook/preview-api';
export type { StorybookConfig } from '@storybook/builder-vite'; export type { StorybookConfig } from '@storybook/builder-vite';

View File

@ -55,9 +55,8 @@
"@storybook/builder-vite": "7.0.0-alpha.53", "@storybook/builder-vite": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53", "@storybook/channel-postmessage": "7.0.0-alpha.53",
"@storybook/channel-websocket": "7.0.0-alpha.53", "@storybook/channel-websocket": "7.0.0-alpha.53",
"@storybook/client-api": "7.0.0-alpha.53",
"@storybook/core-server": "7.0.0-alpha.53", "@storybook/core-server": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/vue3": "7.0.0-alpha.53", "@storybook/vue3": "7.0.0-alpha.53",
"@vitejs/plugin-vue": "^3.0.0", "@vitejs/plugin-vue": "^3.0.0",
"magic-string": "^0.26.1", "magic-string": "^0.26.1",

View File

@ -1,13 +1,8 @@
// exports for builder-vite
import * as clientApi from '@storybook/client-api';
// client-api exposes both a class, and individual named exports.
// The class is used in StoryStoreV7 and the individual exports in SSv6
const { ClientApi } = clientApi;
export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage'; export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage';
export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket'; export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket';
export { addons } from '@storybook/addons';
export { composeConfigs, PreviewWeb } from '@storybook/preview-web'; export { addons } from '@storybook/preview-api';
export { clientApi, ClientApi }; export { composeConfigs, PreviewWeb } from '@storybook/preview-api';
export { ClientApi } from '@storybook/preview-api';
export type { StorybookConfig } from '@storybook/builder-vite'; export type { StorybookConfig } from '@storybook/builder-vite';

View File

@ -55,10 +55,9 @@
"@storybook/builder-vite": "7.0.0-alpha.53", "@storybook/builder-vite": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53", "@storybook/channel-postmessage": "7.0.0-alpha.53",
"@storybook/channel-websocket": "7.0.0-alpha.53", "@storybook/channel-websocket": "7.0.0-alpha.53",
"@storybook/client-api": "7.0.0-alpha.53",
"@storybook/core-server": "7.0.0-alpha.53", "@storybook/core-server": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/web-components": "7.0.0-alpha.53", "@storybook/web-components": "7.0.0-alpha.53",
"magic-string": "^0.26.1", "magic-string": "^0.26.1",
"vite": "3" "vite": "3"

View File

@ -1,13 +1,8 @@
// exports for builder-vite
import * as clientApi from '@storybook/client-api';
// client-api exposes both a class, and individual named exports.
// The class is used in StoryStoreV7 and the individual exports in SSv6
const { ClientApi } = clientApi;
export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage'; export { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage';
export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket'; export { createChannel as createWebSocketChannel } from '@storybook/channel-websocket';
export { addons } from '@storybook/addons';
export { composeConfigs, PreviewWeb } from '@storybook/preview-web'; export { addons } from '@storybook/preview-api';
export { clientApi, ClientApi }; export { composeConfigs, PreviewWeb } from '@storybook/preview-api';
export { ClientApi } from '@storybook/preview-api';
export type { StorybookConfig } from '@storybook/builder-vite'; export type { StorybookConfig } from '@storybook/builder-vite';

View File

@ -1,8 +1,8 @@
import type { Addon_StoryWrapper, Addon_LegacyStoryFn, Addon_StoryContext } from '@storybook/types'; import type { Addon_StoryWrapper, Addon_LegacyStoryFn, Addon_StoryContext } from '@storybook/types';
type MakeDecoratorResult = (...args: any) => any; export type MakeDecoratorResult = (...args: any) => any;
interface MakeDecoratorOptions { export interface MakeDecoratorOptions {
name: string; name: string;
parameterName: string; parameterName: string;
skipIfNoParametersOrOptions?: boolean; skipIfNoParametersOrOptions?: boolean;

View File

@ -125,7 +125,7 @@ export type ManagerProviderProps = RouterData &
children: ReactNode | ((props: Combo) => ReactNode); children: ReactNode | ((props: Combo) => ReactNode);
}; };
// This is duplicated from @storybook/client-api for the reasons mentioned in lib-addons/types.js // This is duplicated from @storybook/preview-api for the reasons mentioned in lib-addons/types.js
export const combineParameters = (...parameterSets: Parameters[]) => export const combineParameters = (...parameterSets: Parameters[]) =>
mergeWith({}, ...parameterSets, (objValue: any, srcValue: any) => { mergeWith({}, ...parameterSets, (objValue: any, srcValue: any) => {
// Treat arrays as scalars: // Treat arrays as scalars:

View File

@ -49,7 +49,7 @@
"@storybook/mdx2-csf": "next", "@storybook/mdx2-csf": "next",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/preview": "7.0.0-alpha.53", "@storybook/preview": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/source-loader": "7.0.0-alpha.53", "@storybook/source-loader": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"@vitejs/plugin-react": "^2.0.0", "@vitejs/plugin-react": "^2.0.0",

View File

@ -1,4 +1,4 @@
import { getRendererName, getFrameworkName } from '@storybook/core-common'; import { getRendererName } from '@storybook/core-common';
import type { PreviewAnnotation } from '@storybook/types'; import type { PreviewAnnotation } from '@storybook/types';
import { virtualPreviewFile, virtualStoriesFile } from './virtual-file-names'; import { virtualPreviewFile, virtualStoriesFile } from './virtual-file-names';
import type { ExtendedOptions } from './types'; import type { ExtendedOptions } from './types';
@ -7,7 +7,6 @@ import { processPreviewAnnotation } from './utils/process-preview-annotation';
export async function generateIframeScriptCode(options: ExtendedOptions) { export async function generateIframeScriptCode(options: ExtendedOptions) {
const { presets } = options; const { presets } = options;
const rendererName = await getRendererName(options); const rendererName = await getRendererName(options);
const frameworkName = await getFrameworkName(options);
const previewAnnotations = await presets.apply<PreviewAnnotation[]>( const previewAnnotations = await presets.apply<PreviewAnnotation[]>(
'previewAnnotations', 'previewAnnotations',
@ -29,8 +28,11 @@ export async function generateIframeScriptCode(options: ExtendedOptions) {
// Ensure that the client API is initialized by the framework before any other iframe code // Ensure that the client API is initialized by the framework before any other iframe code
// is loaded. That way our client-apis can assume the existence of the API+store // is loaded. That way our client-apis can assume the existence of the API+store
import { configure } from '${rendererName}'; import { configure } from '${rendererName}';
import { clientApi } from '${frameworkName}';
import { logger } from '@storybook/client-logger';
import * as clientApi from "@storybook/preview-api";
${filesToImport(configEntries, 'config')} ${filesToImport(configEntries, 'config')}
import * as preview from '${virtualPreviewFile}'; import * as preview from '${virtualPreviewFile}';
import { configStories } from '${virtualStoriesFile}'; import { configStories } from '${virtualStoriesFile}';
@ -44,7 +46,7 @@ export async function generateIframeScriptCode(options: ExtendedOptions) {
addArgTypesEnhancer, addArgTypesEnhancer,
addArgsEnhancer, addArgsEnhancer,
setGlobalRender, setGlobalRender,
} = clientApi; } = previewApi;
const configs = [${importArray('config', configEntries.length) const configs = [${importArray('config', configEntries.length)
.concat('preview.default') .concat('preview.default')

View File

@ -15,13 +15,16 @@ const INCLUDE_CANDIDATES = [
'@mdx-js/react', '@mdx-js/react',
'@storybook/addon-docs > acorn-jsx', '@storybook/addon-docs > acorn-jsx',
'@storybook/addon-docs', '@storybook/addon-docs',
'@storybook/addons', '@storybook/preview-api',
'@storybook/channel-postmessage', '@storybook/channel-postmessage',
'@storybook/channel-websocket', '@storybook/channel-websocket',
'@storybook/client-api', '@storybook/client-api',
'@storybook/preview-api',
'@storybook/client-logger', '@storybook/client-logger',
'@storybook/core/client', '@storybook/core/client',
'@storybook/types', '@storybook/types',
'@storybook/preview-api',
'@storybook/preview-api',
'@storybook/preview-web', '@storybook/preview-web',
'@storybook/react > acorn-jsx', '@storybook/react > acorn-jsx',
'@storybook/react', '@storybook/react',

View File

@ -53,7 +53,7 @@
"prep": "../../../scripts/prepare/bundle.ts" "prep": "../../../scripts/prepare/bundle.ts"
}, },
"dependencies": { "dependencies": {
"@babel/core": "^7.20.2", "@babel/core": "^7.12.10",
"@storybook/addons": "7.0.0-alpha.53", "@storybook/addons": "7.0.0-alpha.53",
"@storybook/api": "7.0.0-alpha.53", "@storybook/api": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53", "@storybook/channel-postmessage": "7.0.0-alpha.53",
@ -67,7 +67,7 @@
"@storybook/core-webpack": "7.0.0-alpha.53", "@storybook/core-webpack": "7.0.0-alpha.53",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/preview": "7.0.0-alpha.53", "@storybook/preview": "7.0.0-alpha.53",
"@storybook/preview-web": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/router": "7.0.0-alpha.53", "@storybook/router": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53", "@storybook/store": "7.0.0-alpha.53",
"@storybook/theming": "7.0.0-alpha.53", "@storybook/theming": "7.0.0-alpha.53",

View File

@ -143,7 +143,7 @@ export default async (
previewAnnotations.forEach((previewAnnotationFilename: string | undefined) => { previewAnnotations.forEach((previewAnnotationFilename: string | undefined) => {
if (!previewAnnotationFilename) return; if (!previewAnnotationFilename) return;
const clientApi = storybookPaths['@storybook/client-api']; const previewApi = storybookPaths['@storybook/preview-api'];
const clientLogger = storybookPaths['@storybook/client-logger']; const clientLogger = storybookPaths['@storybook/client-logger'];
// Ensure that relative paths end up mapped to a filename in the cwd, so a later import // Ensure that relative paths end up mapped to a filename in the cwd, so a later import
@ -155,7 +155,7 @@ export default async (
// file, see https://github.com/storybookjs/storybook/pull/16727#issuecomment-986485173 // file, see https://github.com/storybookjs/storybook/pull/16727#issuecomment-986485173
virtualModuleMapping[entryFilename] = interpolate(entryTemplate, { virtualModuleMapping[entryFilename] = interpolate(entryTemplate, {
previewAnnotationFilename, previewAnnotationFilename,
clientApi, previewApi,
clientLogger, clientLogger,
}); });
entries.push(entryFilename); entries.push(entryFilename);
@ -209,16 +209,14 @@ export default async (
externals: { externals: {
...[ ...[
// these packages are pre-bundled, so they are mapped to global shims // these packages are pre-bundled, so they are mapped to global shims
'channels', // at some point this should only be a single package: preview-api
'addons',
'channel-postmessage', 'channel-postmessage',
'channel-websocket', 'channel-websocket',
'core-events', 'channels',
'client-logger', 'client-logger',
'addons', 'core-events',
'store', 'preview-api',
'preview-web',
'client-api',
'core-client',
].reduce( ].reduce(
(acc, sbPackage) => ({ (acc, sbPackage) => ({
...acc, ...acc,

View File

@ -9,7 +9,7 @@ import {
addArgsEnhancer, addArgsEnhancer,
addArgTypesEnhancer, addArgTypesEnhancer,
setGlobalRender, setGlobalRender,
} from '{{clientApi}}'; } from '{{previewApi}}';
import * as previewAnnotations from '{{previewAnnotationFilename}}'; import * as previewAnnotations from '{{previewAnnotationFilename}}';
Object.keys(previewAnnotations).forEach((key) => { Object.keys(previewAnnotations).forEach((key) => {

View File

@ -1,9 +1,6 @@
import global from 'global'; import global from 'global';
import { PreviewWeb } from '@storybook/preview-web'; import { ClientApi, PreviewWeb, addons, composeConfigs } from '@storybook/preview-api';
import { composeConfigs } from '@storybook/store';
import { ClientApi } from '@storybook/client-api';
import { addons } from '@storybook/addons';
import { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage'; import { createChannel as createPostMessageChannel } from '@storybook/channel-postmessage';
import { createChannel as createWebSocketChannel } from '@storybook/channel-websocket'; import { createChannel as createWebSocketChannel } from '@storybook/channel-websocket';

View File

@ -132,7 +132,7 @@ export abstract class JsPackageManager {
* `@storybook/react@${storybookVersion}`, * `@storybook/react@${storybookVersion}`,
* `@storybook/addon-actions@${actionsVersion}`, * `@storybook/addon-actions@${actionsVersion}`,
* `@storybook/addon-links@${linksVersion}`, * `@storybook/addon-links@${linksVersion}`,
* `@storybook/addons@${addonsVersion}`, * `@storybook/preview-api@${addonsVersion}`,
* ]); * ]);
*/ */
public addDependencies( public addDependencies(

View File

@ -63,27 +63,27 @@ describe('NPM Proxy', () => {
describe('addDependencies', () => { describe('addDependencies', () => {
describe('npm6', () => { describe('npm6', () => {
it('with devDep it should run `npm install -D @storybook/addons`', () => { it('with devDep it should run `npm install -D @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('6.0.0'); const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('6.0.0');
npmProxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/addons']); npmProxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenLastCalledWith( expect(executeCommandSpy).toHaveBeenLastCalledWith(
'npm', 'npm',
['install', '-D', '@storybook/addons'], ['install', '-D', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
}); });
describe('npm7', () => { describe('npm7', () => {
it('with devDep it should run `npm install -D @storybook/addons`', () => { it('with devDep it should run `npm install -D @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('7.0.0'); const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('7.0.0');
npmProxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/addons']); npmProxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenLastCalledWith( expect(executeCommandSpy).toHaveBeenLastCalledWith(
'npm', 'npm',
['install', '--legacy-peer-deps', '-D', '@storybook/addons'], ['install', '--legacy-peer-deps', '-D', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
@ -92,27 +92,27 @@ describe('NPM Proxy', () => {
describe('removeDependencies', () => { describe('removeDependencies', () => {
describe('npm6', () => { describe('npm6', () => {
it('with devDep it should run `npm uninstall @storybook/addons`', () => { it('with devDep it should run `npm uninstall @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('6.0.0'); const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('6.0.0');
npmProxy.removeDependencies({}, ['@storybook/addons']); npmProxy.removeDependencies({}, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenLastCalledWith( expect(executeCommandSpy).toHaveBeenLastCalledWith(
'npm', 'npm',
['uninstall', '@storybook/addons'], ['uninstall', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
}); });
describe('npm7', () => { describe('npm7', () => {
it('with devDep it should run `npm uninstall @storybook/addons`', () => { it('with devDep it should run `npm uninstall @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('7.0.0'); const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('7.0.0');
npmProxy.removeDependencies({}, ['@storybook/addons']); npmProxy.removeDependencies({}, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenLastCalledWith( expect(executeCommandSpy).toHaveBeenLastCalledWith(
'npm', 'npm',
['uninstall', '--legacy-peer-deps', '@storybook/addons'], ['uninstall', '--legacy-peer-deps', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
@ -151,11 +151,11 @@ describe('NPM Proxy', () => {
it('without constraint it returns the latest version', async () => { it('without constraint it returns the latest version', async () => {
const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('"5.3.19"'); const executeCommandSpy = jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('"5.3.19"');
const version = await npmProxy.latestVersion('@storybook/addons'); const version = await npmProxy.latestVersion('@storybook/preview-api');
expect(executeCommandSpy).toHaveBeenCalledWith('npm', [ expect(executeCommandSpy).toHaveBeenCalledWith('npm', [
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'version', 'version',
'--json', '--json',
]); ]);
@ -167,11 +167,11 @@ describe('NPM Proxy', () => {
.spyOn(npmProxy, 'executeCommand') .spyOn(npmProxy, 'executeCommand')
.mockReturnValue('["4.25.3","5.3.19","6.0.0-beta.23"]'); .mockReturnValue('["4.25.3","5.3.19","6.0.0-beta.23"]');
const version = await npmProxy.latestVersion('@storybook/addons', '5.X'); const version = await npmProxy.latestVersion('@storybook/preview-api', '5.X');
expect(executeCommandSpy).toHaveBeenCalledWith('npm', [ expect(executeCommandSpy).toHaveBeenCalledWith('npm', [
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'versions', 'versions',
'--json', '--json',
]); ]);
@ -181,7 +181,7 @@ describe('NPM Proxy', () => {
it('throws an error if command output is not a valid JSON', async () => { it('throws an error if command output is not a valid JSON', async () => {
jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('NOT A JSON'); jest.spyOn(npmProxy, 'executeCommand').mockReturnValue('NOT A JSON');
await expect(npmProxy.latestVersion('@storybook/addons')).rejects.toThrow(); await expect(npmProxy.latestVersion('@storybook/preview-api')).rejects.toThrow();
}); });
}); });

View File

@ -47,28 +47,28 @@ describe('NPM Proxy', () => {
}); });
describe('addDependencies', () => { describe('addDependencies', () => {
it('with devDep it should run `pnpm add -D @storybook/addons`', () => { it('with devDep it should run `pnpm add -D @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('6.0.0'); const executeCommandSpy = jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('6.0.0');
pnpmProxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/addons']); pnpmProxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenLastCalledWith( expect(executeCommandSpy).toHaveBeenLastCalledWith(
'pnpm', 'pnpm',
['add', '-D', '@storybook/addons'], ['add', '-D', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
}); });
describe('removeDependencies', () => { describe('removeDependencies', () => {
it('with devDep it should run `npm uninstall @storybook/addons`', () => { it('with devDep it should run `npm uninstall @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('6.0.0'); const executeCommandSpy = jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('6.0.0');
pnpmProxy.removeDependencies({}, ['@storybook/addons']); pnpmProxy.removeDependencies({}, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenLastCalledWith( expect(executeCommandSpy).toHaveBeenLastCalledWith(
'pnpm', 'pnpm',
['remove', '@storybook/addons'], ['remove', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
@ -107,11 +107,11 @@ describe('NPM Proxy', () => {
it('without constraint it returns the latest version', async () => { it('without constraint it returns the latest version', async () => {
const executeCommandSpy = jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('"5.3.19"'); const executeCommandSpy = jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('"5.3.19"');
const version = await pnpmProxy.latestVersion('@storybook/addons'); const version = await pnpmProxy.latestVersion('@storybook/preview-api');
expect(executeCommandSpy).toHaveBeenCalledWith('pnpm', [ expect(executeCommandSpy).toHaveBeenCalledWith('pnpm', [
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'version', 'version',
'--json', '--json',
]); ]);
@ -123,11 +123,11 @@ describe('NPM Proxy', () => {
.spyOn(pnpmProxy, 'executeCommand') .spyOn(pnpmProxy, 'executeCommand')
.mockReturnValue('["4.25.3","5.3.19","6.0.0-beta.23"]'); .mockReturnValue('["4.25.3","5.3.19","6.0.0-beta.23"]');
const version = await pnpmProxy.latestVersion('@storybook/addons', '5.X'); const version = await pnpmProxy.latestVersion('@storybook/preview-api', '5.X');
expect(executeCommandSpy).toHaveBeenCalledWith('pnpm', [ expect(executeCommandSpy).toHaveBeenCalledWith('pnpm', [
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'versions', 'versions',
'--json', '--json',
]); ]);
@ -137,7 +137,7 @@ describe('NPM Proxy', () => {
it('throws an error if command output is not a valid JSON', async () => { it('throws an error if command output is not a valid JSON', async () => {
jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('NOT A JSON'); jest.spyOn(pnpmProxy, 'executeCommand').mockReturnValue('NOT A JSON');
await expect(pnpmProxy.latestVersion('@storybook/addons')).rejects.toThrow(); await expect(pnpmProxy.latestVersion('@storybook/preview-api')).rejects.toThrow();
}); });
}); });

View File

@ -47,28 +47,28 @@ describe('Yarn 1 Proxy', () => {
}); });
describe('addDependencies', () => { describe('addDependencies', () => {
it('with devDep it should run `yarn install -D --ignore-workspace-root-check @storybook/addons`', () => { it('with devDep it should run `yarn install -D --ignore-workspace-root-check @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(yarn1Proxy, 'executeCommand').mockReturnValue(''); const executeCommandSpy = jest.spyOn(yarn1Proxy, 'executeCommand').mockReturnValue('');
yarn1Proxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/addons']); yarn1Proxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenCalledWith( expect(executeCommandSpy).toHaveBeenCalledWith(
'yarn', 'yarn',
['add', '-D', '--ignore-workspace-root-check', '@storybook/addons'], ['add', '-D', '--ignore-workspace-root-check', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
}); });
describe('removeDependencies', () => { describe('removeDependencies', () => {
it('should run `yarn remove --ignore-workspace-root-check @storybook/addons`', () => { it('should run `yarn remove --ignore-workspace-root-check @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(yarn1Proxy, 'executeCommand').mockReturnValue(''); const executeCommandSpy = jest.spyOn(yarn1Proxy, 'executeCommand').mockReturnValue('');
yarn1Proxy.removeDependencies({}, ['@storybook/addons']); yarn1Proxy.removeDependencies({}, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenCalledWith( expect(executeCommandSpy).toHaveBeenCalledWith(
'yarn', 'yarn',
['remove', '--ignore-workspace-root-check', '@storybook/addons'], ['remove', '--ignore-workspace-root-check', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
@ -107,11 +107,11 @@ describe('Yarn 1 Proxy', () => {
.spyOn(yarn1Proxy, 'executeCommand') .spyOn(yarn1Proxy, 'executeCommand')
.mockReturnValue('{"type":"inspect","data":"5.3.19"}'); .mockReturnValue('{"type":"inspect","data":"5.3.19"}');
const version = await yarn1Proxy.latestVersion('@storybook/addons'); const version = await yarn1Proxy.latestVersion('@storybook/preview-api');
expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [ expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'version', 'version',
'--json', '--json',
]); ]);
@ -123,11 +123,11 @@ describe('Yarn 1 Proxy', () => {
.spyOn(yarn1Proxy, 'executeCommand') .spyOn(yarn1Proxy, 'executeCommand')
.mockReturnValue('{"type":"inspect","data":["4.25.3","5.3.19","6.0.0-beta.23"]}'); .mockReturnValue('{"type":"inspect","data":["4.25.3","5.3.19","6.0.0-beta.23"]}');
const version = await yarn1Proxy.latestVersion('@storybook/addons', '5.X'); const version = await yarn1Proxy.latestVersion('@storybook/preview-api', '5.X');
expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [ expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'versions', 'versions',
'--json', '--json',
]); ]);
@ -137,7 +137,7 @@ describe('Yarn 1 Proxy', () => {
it('throws an error if command output is not a valid JSON', async () => { it('throws an error if command output is not a valid JSON', async () => {
jest.spyOn(yarn1Proxy, 'executeCommand').mockReturnValue('NOT A JSON'); jest.spyOn(yarn1Proxy, 'executeCommand').mockReturnValue('NOT A JSON');
await expect(yarn1Proxy.latestVersion('@storybook/addons')).rejects.toThrow(); await expect(yarn1Proxy.latestVersion('@storybook/preview-api')).rejects.toThrow();
}); });
}); });

View File

@ -47,28 +47,28 @@ describe('Yarn 2 Proxy', () => {
}); });
describe('addDependencies', () => { describe('addDependencies', () => {
it('with devDep it should run `yarn install -D @storybook/addons`', () => { it('with devDep it should run `yarn install -D @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(yarn2Proxy, 'executeCommand').mockReturnValue(''); const executeCommandSpy = jest.spyOn(yarn2Proxy, 'executeCommand').mockReturnValue('');
yarn2Proxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/addons']); yarn2Proxy.addDependencies({ installAsDevDependencies: true }, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenCalledWith( expect(executeCommandSpy).toHaveBeenCalledWith(
'yarn', 'yarn',
['add', '-D', '@storybook/addons'], ['add', '-D', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
}); });
describe('removeDependencies', () => { describe('removeDependencies', () => {
it('should run `yarn remove @storybook/addons`', () => { it('should run `yarn remove @storybook/preview-api`', () => {
const executeCommandSpy = jest.spyOn(yarn2Proxy, 'executeCommand').mockReturnValue(''); const executeCommandSpy = jest.spyOn(yarn2Proxy, 'executeCommand').mockReturnValue('');
yarn2Proxy.removeDependencies({}, ['@storybook/addons']); yarn2Proxy.removeDependencies({}, ['@storybook/preview-api']);
expect(executeCommandSpy).toHaveBeenCalledWith( expect(executeCommandSpy).toHaveBeenCalledWith(
'yarn', 'yarn',
['remove', '@storybook/addons'], ['remove', '@storybook/preview-api'],
expect.any(String) expect.any(String)
); );
}); });
@ -105,14 +105,14 @@ describe('Yarn 2 Proxy', () => {
it('without constraint it returns the latest version', async () => { it('without constraint it returns the latest version', async () => {
const executeCommandSpy = jest const executeCommandSpy = jest
.spyOn(yarn2Proxy, 'executeCommand') .spyOn(yarn2Proxy, 'executeCommand')
.mockReturnValue('{"name":"@storybook/addons","version":"5.3.19"}'); .mockReturnValue('{"name":"@storybook/preview-api","version":"5.3.19"}');
const version = await yarn2Proxy.latestVersion('@storybook/addons'); const version = await yarn2Proxy.latestVersion('@storybook/preview-api');
expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [ expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [
'npm', 'npm',
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'--fields', '--fields',
'version', 'version',
'--json', '--json',
@ -124,15 +124,15 @@ describe('Yarn 2 Proxy', () => {
const executeCommandSpy = jest const executeCommandSpy = jest
.spyOn(yarn2Proxy, 'executeCommand') .spyOn(yarn2Proxy, 'executeCommand')
.mockReturnValue( .mockReturnValue(
'{"name":"@storybook/addons","versions":["4.25.3","5.3.19","6.0.0-beta.23"]}' '{"name":"@storybook/preview-api","versions":["4.25.3","5.3.19","6.0.0-beta.23"]}'
); );
const version = await yarn2Proxy.latestVersion('@storybook/addons', '5.X'); const version = await yarn2Proxy.latestVersion('@storybook/preview-api', '5.X');
expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [ expect(executeCommandSpy).toHaveBeenCalledWith('yarn', [
'npm', 'npm',
'info', 'info',
'@storybook/addons', '@storybook/preview-api',
'--fields', '--fields',
'versions', 'versions',
'--json', '--json',
@ -143,7 +143,7 @@ describe('Yarn 2 Proxy', () => {
it('throws an error if command output is not a valid JSON', async () => { it('throws an error if command output is not a valid JSON', async () => {
jest.spyOn(yarn2Proxy, 'executeCommand').mockReturnValue('NOT A JSON'); jest.spyOn(yarn2Proxy, 'executeCommand').mockReturnValue('NOT A JSON');
await expect(yarn2Proxy.latestVersion('@storybook/addons')).rejects.toThrow(); await expect(yarn2Proxy.latestVersion('@storybook/preview-api')).rejects.toThrow();
}); });
}); });

View File

@ -56,6 +56,8 @@ export default {
'@storybook/preset-vue-webpack': '7.0.0-alpha.53', '@storybook/preset-vue-webpack': '7.0.0-alpha.53',
'@storybook/preset-vue3-webpack': '7.0.0-alpha.53', '@storybook/preset-vue3-webpack': '7.0.0-alpha.53',
'@storybook/preset-web-components-webpack': '7.0.0-alpha.53', '@storybook/preset-web-components-webpack': '7.0.0-alpha.53',
'@storybook/preview': '7.0.0-alpha.53',
'@storybook/preview-api': '7.0.0-alpha.53',
'@storybook/preview-web': '7.0.0-alpha.53', '@storybook/preview-web': '7.0.0-alpha.53',
'@storybook/react': '7.0.0-alpha.53', '@storybook/react': '7.0.0-alpha.53',
'@storybook/react-vite': '7.0.0-alpha.53', '@storybook/react-vite': '7.0.0-alpha.53',

View File

@ -1,5 +1,5 @@
import type { Renderer } from '@storybook/types'; import type { Renderer } from '@storybook/types';
import type { StoryStore } from '@storybook/client-api'; import type { StoryStore } from '@storybook/preview-api';
declare global { declare global {
interface Window { interface Window {

View File

@ -1,16 +1,3 @@
# `@storybook/client-api` -- Deprecated Story APIs (`storiesOf`) The contents of this package have moved to `@storybook/preview-api`. Please update your import.
**NOTE** This API is deprecated, and the CSF format is preferred for all stories. This package will no longer be released as part of the 8.0 release of storybook.
## `storiesOf` API
The `@storybook/client` API provides the [`storiesOf()` API](../core/docs/storiesOf.md), which is proxied through to the CSF API.
### Internals
In order to appear to the store like the CSF API, a call to `storiesOf().add()` does the following:
- Tracks the story added in a synthetic `StoryIndex` data structure
- Constructs a `moduleExports` object that is equivalent to the exports from a CSF file that produced the same stories.
In order to achieve the old `storySort` functionality, the client API also needs access to the project annotations.

View File

@ -22,15 +22,15 @@
"sideEffects": false, "sideEffects": false,
"exports": { "exports": {
".": { ".": {
"require": "./dist/index.js", "require": "./dist/entry.js",
"import": "./dist/index.mjs", "import": "./dist/entry.mjs",
"types": "./dist/index.d.ts" "types": "./dist/entry.d.ts"
}, },
"./package.json": "./package.json" "./package.json": "./package.json"
}, },
"main": "dist/index.js", "main": "dist/entry.js",
"module": "dist/index.mjs", "module": "dist/entry.mjs",
"types": "dist/index.d.ts", "types": "dist/entry.d.ts",
"files": [ "files": [
"dist/**/*", "dist/**/*",
"README.md", "README.md",
@ -39,37 +39,20 @@
], ],
"scripts": { "scripts": {
"check": "../../../scripts/node_modules/.bin/tsc --noEmit", "check": "../../../scripts/node_modules/.bin/tsc --noEmit",
"prep": "../../../scripts/prepare/bundle.ts" "prep": "../../../scripts/prepare/facade.ts"
}, },
"dependencies": { "dependencies": {
"@storybook/addons": "7.0.0-alpha.53",
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/csf": "next", "@storybook/preview-api": "7.0.0-alpha.53"
"@storybook/store": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53",
"@types/qs": "^6.9.5",
"@types/webpack-env": "^1.16.4",
"global": "^4.4.0",
"qs": "^6.10.0",
"synchronous-promise": "^2.0.15",
"ts-dedent": "^2.0.0",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"@storybook/core-common": "7.0.0-alpha.53",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"bundler": { "bundler": {
"entries": [ "entries": [
"./src/index.ts" "./src/entry.ts"
] ],
"shim": "@storybook/preview-api/dist/client-api"
}, },
"gitHead": "fd1cf81615a5ddac3369e7bb567a1a43081fdc23" "gitHead": "fd1cf81615a5ddac3369e7bb567a1a43081fdc23"
} }

View File

@ -0,0 +1,7 @@
import { deprecate } from '@storybook/client-logger';
deprecate(
'importing from @storybook/client-api is deprecated and will be removed in 8.0, please import canvas related modules from @storybook/preview-api'
);
export * from '@storybook/preview-api/dist/client-api';

View File

@ -2,7 +2,7 @@
exports[`update-organisation-name transforms correctly using "update-organisation-name.input.js" data 1`] = ` exports[`update-organisation-name transforms correctly using "update-organisation-name.input.js" data 1`] = `
"/* eslint-disable */ "/* eslint-disable */
import '@storybook/addons'; import '@storybook/preview-api';
import '@storybook/addon-comments'; import '@storybook/addon-comments';
import '@storybook/addon-centered'; import '@storybook/addon-centered';
import '@storybook/addon-graphql'; import '@storybook/addon-graphql';

View File

@ -1,6 +1,6 @@
export const packageNames = { export const packageNames = {
'@kadira/react-storybook-decorator-centered': '@storybook/addon-centered', '@kadira/react-storybook-decorator-centered': '@storybook/addon-centered',
'@kadira/storybook-addons': '@storybook/addons', '@kadira/storybook-addons': '@storybook/preview-api',
'@kadira/storybook-addon-actions': '@storybook/addon-actions', '@kadira/storybook-addon-actions': '@storybook/addon-actions',
'@kadira/storybook-addon-comments': '@storybook/addon-comments', '@kadira/storybook-addon-comments': '@storybook/addon-comments',
'@kadira/storybook-addon-graphql': '@storybook/addon-graphql', '@kadira/storybook-addon-graphql': '@storybook/addon-graphql',

View File

@ -1,14 +1,3 @@
# Storybook Core-Client The contents of this package have moved to `@storybook/preview-api`. Please update your import.
This package contains browser-side functionality shared amongst all the frameworks (React, RN, Vue, Ember, Angular, etc) in the old "v6" story store back-compatibility layer. This package will no longer be released as part of the 8.0 release of storybook.
A framework calls the `start(renderToCanvas, { render, decorateStory })` function and provides:
- The `renderToCanvas` function, which tells Storybook how to render the result of a story function to the DOM
- The `render` function, which is a default mapping of `args` to a story result in CSFv3
- The `decorateStory` function, which tells Storybook how to combine decorators in the framework.
The `start` function will return a `configure()` function, which can be re-exported to be used in `preview.js` (deprecated), or automatically by the `main.js:stories` field to:
- return a list of CSF files
- [deprecated] make calls to the `storiesOf` API.

View File

@ -21,49 +21,31 @@
"license": "MIT", "license": "MIT",
"exports": { "exports": {
".": { ".": {
"require": "./dist/index.js", "require": "./dist/entry.js",
"import": "./dist/index.mjs", "import": "./dist/entry.mjs",
"types": "./dist/index.d.ts" "types": "./dist/entry.d.ts"
}, },
"./package.json": "./package.json" "./package.json": "./package.json"
}, },
"main": "dist/index.js", "main": "dist/entry.js",
"module": "dist/index.mjs", "module": "dist/entry.mjs",
"types": "dist/index.d.ts", "types": "dist/entry.d.ts",
"scripts": { "scripts": {
"check": "../../../scripts/node_modules/.bin/tsc --noEmit", "check": "../../../scripts/node_modules/.bin/tsc --noEmit",
"prep": "../../../scripts/prepare/bundle.ts" "prep": "../../../scripts/prepare/facade.ts"
}, },
"dependencies": { "dependencies": {
"@storybook/addons": "7.0.0-alpha.53",
"@storybook/channel-postmessage": "7.0.0-alpha.53",
"@storybook/channel-websocket": "7.0.0-alpha.53",
"@storybook/channels": "7.0.0-alpha.53",
"@storybook/client-api": "7.0.0-alpha.53",
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53"
"@storybook/csf": "next",
"@storybook/preview-web": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53",
"global": "^4.4.0",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"typescript": "^4.9.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"bundler": { "bundler": {
"entries": [ "entries": [
"./src/index.ts" "./src/entry.ts"
] ],
"shim": "@storybook/preview-api/dist/core-client"
}, },
"gitHead": "fd1cf81615a5ddac3369e7bb567a1a43081fdc23" "gitHead": "fd1cf81615a5ddac3369e7bb567a1a43081fdc23"
} }

View File

@ -0,0 +1,7 @@
import { deprecate } from '@storybook/client-logger';
deprecate(
'importing from @storybook/core-client is deprecated and will be removed in 8.0, please import canvas related modules from @storybook/preview-api'
);
export * from '@storybook/preview-api/dist/core-client';

View File

@ -1,5 +0,0 @@
import { ClientApi } from '@storybook/client-api';
import { StoryStore } from '@storybook/store';
import { start } from './start';
export { start, ClientApi, StoryStore };

View File

@ -1,5 +1,3 @@
declare module '@storybook/preview-web/dist/cjs/PreviewWeb.mockdata';
declare class AnsiToHtml { declare class AnsiToHtml {
constructor(options: { escapeHtml: boolean }); constructor(options: { escapeHtml: boolean });

View File

@ -36,14 +36,13 @@
"@aw-web-design/x-default-browser": "1.4.88", "@aw-web-design/x-default-browser": "1.4.88",
"@discoveryjs/json-ext": "^0.5.3", "@discoveryjs/json-ext": "^0.5.3",
"@storybook/builder-manager": "7.0.0-alpha.53", "@storybook/builder-manager": "7.0.0-alpha.53",
"@storybook/core-client": "7.0.0-alpha.53",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/csf": "next", "@storybook/csf": "next",
"@storybook/csf-tools": "7.0.0-alpha.53", "@storybook/csf-tools": "7.0.0-alpha.53",
"@storybook/docs-mdx": "next", "@storybook/docs-mdx": "next",
"@storybook/node-logger": "7.0.0-alpha.53", "@storybook/node-logger": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/telemetry": "7.0.0-alpha.53", "@storybook/telemetry": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"@types/node": "^16.0.0", "@types/node": "^16.0.0",

View File

@ -19,7 +19,7 @@ import type {
StoryId, StoryId,
StoryName, StoryName,
} from '@storybook/types'; } from '@storybook/types';
import { userOrAutoTitleFromSpecifier, sortStoriesV7 } from '@storybook/store'; import { userOrAutoTitleFromSpecifier, sortStoriesV7 } from '@storybook/preview-api';
import { normalizeStoryPath } from '@storybook/core-common'; import { normalizeStoryPath } from '@storybook/core-common';
import { logger } from '@storybook/node-logger'; import { logger } from '@storybook/node-logger';
import { getStorySortParameter, NoMetaError } from '@storybook/csf-tools'; import { getStorySortParameter, NoMetaError } from '@storybook/csf-tools';

View File

@ -42,9 +42,9 @@
"prep": "../../../scripts/prepare/bundle.ts" "prep": "../../../scripts/prepare/bundle.ts"
}, },
"dependencies": { "dependencies": {
"@babel/core": "^7.20.2", "@babel/core": "^7.12.10",
"@storybook/core-common": "7.0.0-alpha.53", "@storybook/core-common": "7.0.0-alpha.53",
"@storybook/store": "7.0.0-alpha.53", "@storybook/preview-api": "7.0.0-alpha.53",
"@storybook/types": "7.0.0-alpha.53", "@storybook/types": "7.0.0-alpha.53",
"doctrine": "^3.0.0", "doctrine": "^3.0.0",
"lodash": "^4.17.21" "lodash": "^4.17.21"

View File

@ -1,5 +1,5 @@
import type { Renderer, StoryContextForEnhancers } from '@storybook/types'; import type { Renderer, StoryContextForEnhancers } from '@storybook/types';
import { combineParameters } from '@storybook/store'; import { combineParameters } from '@storybook/preview-api';
export const enhanceArgTypes = <TRenderer extends Renderer>( export const enhanceArgTypes = <TRenderer extends Renderer>(
context: StoryContextForEnhancers<TRenderer> context: StoryContextForEnhancers<TRenderer>

View File

@ -46,6 +46,7 @@
"@storybook/channels": "7.0.0-alpha.53", "@storybook/channels": "7.0.0-alpha.53",
"@storybook/client-logger": "7.0.0-alpha.53", "@storybook/client-logger": "7.0.0-alpha.53",
"@storybook/core-events": "7.0.0-alpha.53", "@storybook/core-events": "7.0.0-alpha.53",
"@storybook/preview-api": "7.0.0-alpha.53",
"core-js": "^3.8.2", "core-js": "^3.8.2",
"global": "^4.4.0" "global": "^4.4.0"
}, },

View File

@ -1,6 +1,6 @@
/* eslint-disable no-underscore-dangle */ /* eslint-disable no-underscore-dangle */
import type { Channel } from '@storybook/channels'; import type { Channel } from '@storybook/channels';
import { addons } from '@storybook/addons'; import { addons } from '@storybook/preview-api';
import type { StoryId } from '@storybook/types'; import type { StoryId } from '@storybook/types';
import { once, logger } from '@storybook/client-logger'; import { once, logger } from '@storybook/client-logger';
import { import {

View File

@ -9,7 +9,7 @@ const VUE = {
}; };
const NONE = { const NONE = {
'@storybook/addons': '5.2.5', '@storybook/preview-api': '5.2.5',
lodash: '^4.17.15', lodash: '^4.17.15',
}; };

View File

@ -0,0 +1,16 @@
# `@storybook/client-api` -- Deprecated Story APIs (`storiesOf`)
**NOTE** This API is deprecated, and the CSF format is preferred for all stories.
## `storiesOf` API
The `@storybook/client` API provides the [`storiesOf()` API](../core/docs/storiesOf.md), which is proxied through to the CSF API.
### Internals
In order to appear to the store like the CSF API, a call to `storiesOf().add()` does the following:
- Tracks the story added in a synthetic `StoryIndex` data structure
- Constructs a `moduleExports` object that is equivalent to the exports from a CSF file that produced the same stories.
In order to achieve the old `storySort` functionality, the client API also needs access to the project annotations.

View File

@ -0,0 +1,14 @@
# Storybook Core-Client
This package contains browser-side functionality shared amongst all the frameworks (React, RN, Vue, Ember, Angular, etc) in the old "v6" story store back-compatibility layer.
A framework calls the `start(renderToCanvas, { render, decorateStory })` function and provides:
- The `renderToCanvas` function, which tells Storybook how to render the result of a story function to the DOM
- The `render` function, which is a default mapping of `args` to a story result in CSFv3
- The `decorateStory` function, which tells Storybook how to combine decorators in the framework.
The `start` function will return a `configure()` function, which can be re-exported to be used in `preview.js` (deprecated), or automatically by the `main.js:stories` field to:
- return a list of CSF files
- [deprecated] make calls to the `storiesOf` API.

View File

@ -0,0 +1,94 @@
# Preview (Web)
This is the main API for the (web) version of the Storybook Preview.
The preview's job is:
1. Read and update the URL (via the URL Store)
2. Listen to instructions on the channel and emit events as things occur.
3. Render the current selection to the web view in either story or docs mode.
## V7 Store vs Legacy (V6)
The story store is designed to load stories 'on demand', and will operate in this fashion if the `storyStoreV7` feature is enabled.
However, for back-compat reasons, in v6 mode, we need to load all stories, synchronously on bootup, emitting the `SET_STORIES` event.
In V7 mode we do not emit that event, instead preferring the `STORY_PREPARED` event, with the data for the single story being rendered.
## Initialization
The preview is `initialized` in two ways.
### V7 Mode:
- `importFn` - is an async `import()` function
- `getProjectAnnotations` - is a simple function that evaluations `preview.js` and addon config files and combines them. If it errors, the Preview will show the error.
- No `getStoryIndex` function is passed, instead the preview creates a `StoryIndexClient` that pulls `stories.json` from node and watches the event stream for invalidation events.
### V6 Mode
- `importFn` - is a simulated `import()` function, that is synchronous, see `client-api` for details.
- `getProjectAnnotations` - also evaluates `preview.js` et al, but watches for calls to `setStories`, and passes them to the `ClientApi`
- `getStoryIndex` is a local function (that must be called _after_ `getProjectAnnotations`) that gets the list of stories added.
See `client-api` for more details on this process.
## Story Rendering and interruptions
The Preview is split into three parts responsible for state management:
- `PreviewWeb` - which story is rendered, receives events and (maybe) changes/re-renders stories
- `StoryRender` - (imports +) prepares the story, renders it through the various phases
- `DocsRender` - if a story renders in docs mode, it is "transformed" into a `DocsRender` once we know.
A rendering story goes through these phases:
- `preparing` - (maybe async) import the story file and prepare the story function.
- `loading` - async loaders are running
- `rendering` - the `renderToDOM` function for the framework is running
- `playing` - the `play` function is running
- `completed` - the story is done.
It also has two error states:
- `aborted` - the story was stopped midway (see below)
- `errored` - there was an error thrown somewhere along the way.
### Re-rendering and aborting
A story may re-render due to various events, which can have implications if the story is not in the `completed` phase:
- `UPDATE_STORY_ARGS` / `UPDATE_GLOBALS` -- change of inputs
- `FORCE_RE_RENDER` - re-render unchanged
If these events happen during a render:
- if the story is `preparing` or `loading`, leave thing unchanged and let the new `args`/`globals` be picked up by the render phase
- otherwise, use the result of the previous `loaders` run, and simply re-render over the top
- `FORCE_REMOUNT` - remount (or equivalent) the component and re-render.
If this happens during a render, treat `loading` similarly, but:
- if the story is `rendering`, start a new render and abort the previous render immediately afterwards
- if the story is `playing`, attempt to abort the previous play function, and start a new render.
### Changing story
Also the `SET_CURRENT_STORY` event may change the current story. We need to check:
- If the `storyId` changed
- If the `viewMode` changed
- If the story implementation changed (i.e if HMR occurred).
If the _previous_ story is still `preparing`, we cannot know if the implementation changed, so we
abort the preparing immediately, and let the new story take over.
Otherwise, if all of the above are the same, we do nothing.
If they are different, and the old story is not `completed`, we try to abort it immediately. If that fails (e.g. the `play` function doesn't respond to the `abort` event), then we reload the window.

Some files were not shown because too many files have changed in this diff Show More