mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Fixes from CI
This commit is contained in:
parent
11568f79fc
commit
a6c6869265
@ -39,6 +39,7 @@ export const DocsContainer: FunctionComponent<DocsContainerProps> = ({ context,
|
||||
const { id: storyId, type, storyById } = context;
|
||||
const allComponents = { ...defaultComponents };
|
||||
let theme = ensureTheme(null);
|
||||
console.log(context);
|
||||
if (type === 'legacy') {
|
||||
const {
|
||||
parameters: { options = {}, docs = {} },
|
||||
|
@ -5,7 +5,7 @@ import { DocsRenderFunction } from '@storybook/preview-web';
|
||||
|
||||
import { DocsContainer } from './DocsContainer';
|
||||
import { DocsPage } from './DocsPage';
|
||||
import { DocsContext, DocsContextProps } from './DocsContext';
|
||||
import { DocsContextProps } from './DocsContext';
|
||||
|
||||
export class DocsRenderer<TFramework extends AnyFramework> {
|
||||
public render: DocsRenderFunction<TFramework>;
|
||||
|
@ -1,3 +1,4 @@
|
||||
import { StoryId } from '@storybook/csf';
|
||||
import { ExternalPreview } from './ExternalPreview';
|
||||
|
||||
const projectAnnotations = { render: jest.fn(), renderToDOM: jest.fn() };
|
||||
@ -18,7 +19,10 @@ describe('ExternalPreview', () => {
|
||||
it('handles csf files with titles', async () => {
|
||||
const preview = new ExternalPreview(projectAnnotations);
|
||||
|
||||
const storyId = preview.storyIdByModuleExport(csfFileWithTitle.one, csfFileWithTitle.default);
|
||||
const storyId = preview.storyIdByModuleExport(
|
||||
csfFileWithTitle.one,
|
||||
csfFileWithTitle
|
||||
) as StoryId;
|
||||
const story = preview.storyById(storyId);
|
||||
|
||||
expect(story).toMatchObject({
|
||||
@ -30,10 +34,13 @@ describe('ExternalPreview', () => {
|
||||
it('returns consistent story ids and objects', () => {
|
||||
const preview = new ExternalPreview(projectAnnotations);
|
||||
|
||||
const storyId = preview.storyIdByModuleExport(csfFileWithTitle.one, csfFileWithTitle.default);
|
||||
const storyId = preview.storyIdByModuleExport(
|
||||
csfFileWithTitle.one,
|
||||
csfFileWithTitle
|
||||
) as StoryId;
|
||||
const story = preview.storyById(storyId);
|
||||
|
||||
expect(preview.storyIdByModuleExport(csfFileWithTitle.one, csfFileWithTitle.default)).toEqual(
|
||||
expect(preview.storyIdByModuleExport(csfFileWithTitle.one, csfFileWithTitle)).toEqual(
|
||||
storyId
|
||||
);
|
||||
expect(preview.storyById(storyId)).toBe(story);
|
||||
@ -43,11 +50,11 @@ describe('ExternalPreview', () => {
|
||||
const preview = new ExternalPreview(projectAnnotations);
|
||||
|
||||
preview.storyById(
|
||||
preview.storyIdByModuleExport(csfFileWithTitle.one, csfFileWithTitle.default)
|
||||
preview.storyIdByModuleExport(csfFileWithTitle.one, csfFileWithTitle) as StoryId
|
||||
);
|
||||
|
||||
const story = preview.storyById(
|
||||
preview.storyIdByModuleExport(csfFileWithTitle.two, csfFileWithTitle.default)
|
||||
preview.storyIdByModuleExport(csfFileWithTitle.two, csfFileWithTitle) as StoryId
|
||||
);
|
||||
expect(story).toMatchObject({
|
||||
title: 'Component',
|
||||
@ -60,8 +67,8 @@ describe('ExternalPreview', () => {
|
||||
|
||||
const storyId = preview.storyIdByModuleExport(
|
||||
csfFileWithoutTitle.one,
|
||||
csfFileWithoutTitle.default
|
||||
);
|
||||
csfFileWithoutTitle
|
||||
) as StoryId;
|
||||
const story = preview.storyById(storyId);
|
||||
|
||||
expect(story).toMatchObject({
|
||||
|
@ -46,7 +46,7 @@ export class ExternalPreview<TFramework extends AnyFramework> extends Preview<TF
|
||||
const importPath = this.importPaths.get(meta);
|
||||
this.moduleExportsByImportPath[importPath] = meta;
|
||||
|
||||
const title = meta.title || this.titles.get(meta);
|
||||
const title = meta.default.title || this.titles.get(meta);
|
||||
|
||||
const exportEntry = Object.entries(meta).find(
|
||||
([_, moduleExport]) => moduleExport === storyExport
|
||||
|
@ -34,6 +34,7 @@ DarkModeDocs.decorators = [
|
||||
(storyFn) => (
|
||||
<DocsContainer
|
||||
context={{
|
||||
type: 'legacy',
|
||||
componentStories: () => [],
|
||||
storyById: () => ({ parameters: { docs: { theme: themes.dark } } }),
|
||||
}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user