From 9473f4db90ded429d0d34c1296efb69cad9f42a4 Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Fri, 10 Sep 2021 18:36:52 +1000 Subject: [PATCH] Apply suggestions from code review --- lib/preview-web/src/PreviewWeb.mockdata.ts | 4 ++-- lib/preview-web/src/UrlStore.test.ts | 2 +- lib/store/README.md | 10 +++++----- lib/store/src/StoryStore.ts | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/preview-web/src/PreviewWeb.mockdata.ts b/lib/preview-web/src/PreviewWeb.mockdata.ts index a4d1d5259ab..6c3238974ed 100644 --- a/lib/preview-web/src/PreviewWeb.mockdata.ts +++ b/lib/preview-web/src/PreviewWeb.mockdata.ts @@ -1,6 +1,6 @@ import { EventEmitter } from 'events'; import Events from '@storybook/core-events'; -import { StoriesList } from '@storybook/store'; +import { StoryIndex } from '@storybook/store'; export const componentOneExports = { default: { @@ -33,7 +33,7 @@ export const projectAnnotations = { }; export const getProjectAnnotations = () => projectAnnotations; -export const storyIndex: StoriesList = { +export const storyIndex: StoryIndex = { v: 3, stories: { 'component-one--a': { diff --git a/lib/preview-web/src/UrlStore.test.ts b/lib/preview-web/src/UrlStore.test.ts index 28fda9cc8fd..463008c8b58 100644 --- a/lib/preview-web/src/UrlStore.test.ts +++ b/lib/preview-web/src/UrlStore.test.ts @@ -75,7 +75,7 @@ describe('UrlStore', () => { viewMode: 'story', }); }); - it('should redirect legacy queries', () => { + it('should parse legacy queries', () => { document.location.search = '?selectedKind=kind&selectedStory=story'; expect(getSelectionSpecifierFromPath()).toEqual({ storySpecifier: { title: 'kind', name: 'story' }, diff --git a/lib/store/README.md b/lib/store/README.md index 3a97f2a63f1..ee8d5968ea9 100644 --- a/lib/store/README.md +++ b/lib/store/README.md @@ -22,8 +22,8 @@ The first set of fields on a `Story` are the identifying fields for a story: The main fields on a `Story` are the various annotations. Annotations can be set: - At the project level in `preview.js` (or via addons) -- At the component level via `export default = { ... }` in a CSF file -- At the story level via `export Story = {...}` in a CSF file. +- At the component level via `export default { ... }` in a CSF file +- At the story level via `export const Story = {...}` in a CSF file. Not all annotations can be set at every level but most can. @@ -97,7 +97,7 @@ Arg types add type information and metadata about args that are used to control ### ArgTypes enhancement -To add a argTypes enhancer, `export addArgTypesEnhancers = []` from `preview.js` or and addon +To add a argTypes enhancer, `export const argTypesEnhancers = []` from `preview.js` or and addon There is a default enhancer that ensures that each `arg` in a story has a baseline `argType`. This value can be improved by subsequent enhancers, e.g. those provided by `@storybook/addon-docs`. @@ -105,11 +105,11 @@ There is a default enhancer that ensures that each `arg` in a story has a baseli Globals are rendering information that is global across stories. They are used for things like themes and internationalization (i18n) in stories, where you want Storybook to "remember" your setting as you browse between stories. -They can be access in stories and decorators in the `context.globals` key. +They can be accessed in stories and decorators in the `context.globals` key. ### Initial values of globals -To set initial values of globals, `export globals = {...}` from `preview.js` +To set initial values of globals, `export const globals = {...}` from `preview.js` ### Using globals in an addon diff --git a/lib/store/src/StoryStore.ts b/lib/store/src/StoryStore.ts index 1f447020e6a..c2040498d27 100644 --- a/lib/store/src/StoryStore.ts +++ b/lib/store/src/StoryStore.ts @@ -34,8 +34,8 @@ import { inferControls } from './inferControls'; type MaybePromise = Promise | T; // TODO -- what are reasonable values for these? -const CSF_CACHE_SIZE = 100; -const STORY_CACHE_SIZE = 1000; +const CSF_CACHE_SIZE = 1000; +const STORY_CACHE_SIZE = 10000; function normalizeProjectAnnotations({ argTypes, @@ -166,7 +166,7 @@ export class StoryStore { if (sync) { throw new Error( - `importFn() returned a promise, did you pass an async version then call initializeSync()?` + `importFn() returned a promise, did you pass an async version then call initialize({sync: true})?` ); }