From 6189d76fda1184077629738274285659d3cf3a84 Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Mon, 28 Nov 2022 09:57:58 +1100 Subject: [PATCH] Move internal Preview types into pacagek --- .../src/modules/preview-web/PreviewWithSelection.tsx | 4 ++-- .../preview-api/src/modules/preview-web/SelectionStore.ts | 5 +++-- code/lib/preview-api/src/modules/store/StoryIndexStore.ts | 7 +++++-- code/lib/types/src/modules/story.ts | 7 +------ 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/code/lib/preview-api/src/modules/preview-web/PreviewWithSelection.tsx b/code/lib/preview-api/src/modules/preview-web/PreviewWithSelection.tsx index d7d350127c4..069d10758d8 100644 --- a/code/lib/preview-api/src/modules/preview-web/PreviewWithSelection.tsx +++ b/code/lib/preview-api/src/modules/preview-web/PreviewWithSelection.tsx @@ -24,7 +24,6 @@ import type { Globals, ModuleImportFn, StoryIndex, - PreparedStorySpecifier, ProjectAnnotations, StoryId, ViewMode, @@ -39,6 +38,7 @@ import { TemplateDocsRender } from './render/TemplateDocsRender'; import { StandaloneDocsRender } from './render/StandaloneDocsRender'; import type { Selection, SelectionStore } from './SelectionStore'; import type { View } from './View'; +import type { StorySpecifier } from '../store/StoryIndexStore'; const globalWindow = globalThis; @@ -447,7 +447,7 @@ export class PreviewWithSelection extends Preview Object.values(entries).reduce((acc, entry) => { acc[entry.importPath] = acc[entry.importPath] || entry; @@ -22,7 +25,7 @@ export class StoryIndexStore { this.entries = entries; } - entryFromSpecifier(specifier: PreparedStorySpecifier) { + entryFromSpecifier(specifier: StorySpecifier) { const entries = Object.values(this.entries); if (specifier === '*') { // '*' means select the first entry. If there is none, we have no selection. diff --git a/code/lib/types/src/modules/story.ts b/code/lib/types/src/modules/story.ts index baa742bed38..3c123d83231 100644 --- a/code/lib/types/src/modules/story.ts +++ b/code/lib/types/src/modules/story.ts @@ -1,4 +1,3 @@ -/* eslint-disable @typescript-eslint/naming-convention */ import type { SynchronousPromise } from 'synchronous-promise'; import type { Renderer, ProjectAnnotations as CsfProjectAnnotations } from '@storybook/csf'; @@ -21,10 +20,6 @@ import type { StrictGlobalTypes, } from './csf'; -// Internal to preview, exported until preview package consolidation -export type Store_PromiseLike = Promise | SynchronousPromise; -export type PreparedStorySpecifier = StoryId | { name: StoryName; title: ComponentTitle } | '*'; - // Store Types export interface WebRenderer extends Renderer { canvasElement: HTMLElement; @@ -32,7 +27,7 @@ export interface WebRenderer extends Renderer { export type ModuleExport = any; export type ModuleExports = Record; -export type ModuleImportFn = (path: Path) => Store_PromiseLike; +export type ModuleImportFn = (path: Path) => Promise; type MaybePromise = Promise | T; export type TeardownRenderToCanvas = () => MaybePromise;