From b222fc189db1a326926468ed9b66fbb2ac14a94f Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Fri, 25 Feb 2022 00:55:53 +0800 Subject: [PATCH] CSF3: Auto-title respect file system capitalization --- lib/store/src/autoTitle.test.ts | 24 ++++++++++++------------ lib/store/src/autoTitle.ts | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/store/src/autoTitle.test.ts b/lib/store/src/autoTitle.test.ts index ced6ade6a67..c093f4b418f 100644 --- a/lib/store/src/autoTitle.test.ts +++ b/lib/store/src/autoTitle.test.ts @@ -28,7 +28,7 @@ describe('autoTitle', () => { it('match with no titlePrefix', () => { expect( auto('./path/to/file.stories.js', normalizeStoriesEntry({ directory: './path' }, options)) - ).toMatchInlineSnapshot(`To/File`); + ).toMatchInlineSnapshot(`to/file`); }); it('match with titlePrefix', () => { @@ -37,7 +37,7 @@ describe('autoTitle', () => { './path/to/file.stories.js', normalizeStoriesEntry({ directory: './path', titlePrefix: 'atoms' }, options) ) - ).toMatchInlineSnapshot(`Atoms/To/File`); + ).toMatchInlineSnapshot(`atoms/to/file`); }); it('match with trailing duplicate', () => { @@ -46,7 +46,7 @@ describe('autoTitle', () => { './path/to/button/button.stories.js', normalizeStoriesEntry({ directory: './path' }, options) ) - ).toMatchInlineSnapshot(`To/Button`); + ).toMatchInlineSnapshot(`to/button`); }); it('match with trailing index', () => { @@ -55,7 +55,7 @@ describe('autoTitle', () => { './path/to/button/index.stories.js', normalizeStoriesEntry({ directory: './path' }, options) ) - ).toMatchInlineSnapshot(`To/Button`); + ).toMatchInlineSnapshot(`to/button/index`); }); it('match with hyphen path', () => { @@ -64,7 +64,7 @@ describe('autoTitle', () => { './path/to-my/file.stories.js', normalizeStoriesEntry({ directory: './path' }, options) ) - ).toMatchInlineSnapshot(`To My/File`); + ).toMatchInlineSnapshot(`to-my/file`); }); it('match with underscore path', () => { @@ -73,7 +73,7 @@ describe('autoTitle', () => { './path/to_my/file.stories.js', normalizeStoriesEntry({ directory: './path' }, options) ) - ).toMatchInlineSnapshot(`To My/File`); + ).toMatchInlineSnapshot(`to_my/file`); }); it('match with windows path', () => { @@ -82,7 +82,7 @@ describe('autoTitle', () => { './path/to_my/file.stories.js', normalizeStoriesEntry({ directory: '.\\path' }, winOptions) ) - ).toMatchInlineSnapshot(`To My/File`); + ).toMatchInlineSnapshot(`to_my/file`); }); }); @@ -90,7 +90,7 @@ describe('autoTitle', () => { it('match with no titlePrefix', () => { expect( auto('./path/to/file.stories.js', normalizeStoriesEntry({ directory: './path/' }, options)) - ).toMatchInlineSnapshot(`To/File`); + ).toMatchInlineSnapshot(`to/file`); }); it('match with titlePrefix', () => { @@ -99,7 +99,7 @@ describe('autoTitle', () => { './path/to/file.stories.js', normalizeStoriesEntry({ directory: './path/', titlePrefix: 'atoms' }, options) ) - ).toMatchInlineSnapshot(`Atoms/To/File`); + ).toMatchInlineSnapshot(`atoms/to/file`); }); it('match with hyphen path', () => { @@ -108,7 +108,7 @@ describe('autoTitle', () => { './path/to-my/file.stories.js', normalizeStoriesEntry({ directory: './path/' }, options) ) - ).toMatchInlineSnapshot(`To My/File`); + ).toMatchInlineSnapshot(`to-my/file`); }); it('match with underscore path', () => { @@ -117,7 +117,7 @@ describe('autoTitle', () => { './path/to_my/file.stories.js', normalizeStoriesEntry({ directory: './path/' }, options) ) - ).toMatchInlineSnapshot(`To My/File`); + ).toMatchInlineSnapshot(`to_my/file`); }); it('match with windows path', () => { @@ -126,7 +126,7 @@ describe('autoTitle', () => { './path/to_my/file.stories.js', normalizeStoriesEntry({ directory: '.\\path\\' }, winOptions) ) - ).toMatchInlineSnapshot(`To My/File`); + ).toMatchInlineSnapshot(`to_my/file`); }); }); }); diff --git a/lib/store/src/autoTitle.ts b/lib/store/src/autoTitle.ts index 629617faa6b..1292a36b107 100644 --- a/lib/store/src/autoTitle.ts +++ b/lib/store/src/autoTitle.ts @@ -57,7 +57,7 @@ export const autoTitleFromSpecifier = (fileName: string, entry: NormalizedStorie const suffix = normalizedFileName.replace(directory, ''); const titleAndSuffix = slash(pathJoin([titlePrefix, suffix])); let path = titleAndSuffix.split('/'); - path = stripExtension(path).map(startCase); + path = stripExtension(path); path = removeRedundantFilename(path); return path.join('/'); }