fix fixable linting issues

This commit is contained in:
Norbert de Langen 2022-06-30 10:46:36 +02:00
parent 7eef5f0ede
commit 56bd91f612
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
9 changed files with 42 additions and 17 deletions

View File

@ -10,4 +10,3 @@ export default {
};
export const Basic = () => <Button label="Click me" />;

View File

@ -4,8 +4,8 @@ import { Form } from '@storybook/components';
const { Button } = Form;
export default {
title: 'CustomTitle',
component: Button,
title: 'CustomTitle',
component: Button,
};
export const Basic = () => <Button label="Click me" />;

View File

@ -9,4 +9,4 @@ export default {
component: Button,
};
export const Basic = () => <Button label="Click me" />;
export const Basic = () => <Button label="Click me" />;

View File

@ -4,8 +4,8 @@ import { Form } from '@storybook/components';
const { Button } = Form;
export default {
title: 'CustomTitle',
component: Button,
title: 'CustomTitle',
component: Button,
};
export const Basic = () => <Button label="Click me" />;

View File

@ -195,7 +195,8 @@ export class PostmsgTransport {
private handleEvent(rawEvent: MessageEvent): void {
try {
const { data } = rawEvent;
const { key, event, refId } = typeof data === 'string' && isJSON(data) ? parse(data, global.CHANNEL_OPTIONS || {}) : data;
const { key, event, refId } =
typeof data === 'string' && isJSON(data) ? parse(data, global.CHANNEL_OPTIONS || {}) : data;
if (key === KEY) {
const pageString =

View File

@ -89,7 +89,9 @@ const isSimpleCSFStory = (init: t.Expression, annotations: t.ObjectProperty[]) =
annotations.length === 0 && t.isArrowFunctionExpression(init) && init.params.length === 0;
function transform({ source }: { source: string }, api: any, options: { parser?: string }) {
const makeTitle = (userTitle?: string) => { return userTitle || 'FIXME' }
const makeTitle = (userTitle?: string) => {
return userTitle || 'FIXME';
};
const csf = loadCsf(source, { makeTitle });
try {

View File

@ -88,7 +88,7 @@ export class StoryIndexGenerator {
const importPath = slash(normalizeStoryPath(relativePath));
const makeTitle = (userTitle?: string) => {
return userOrAutoTitleFromSpecifier(importPath, specifier, userTitle);
}
};
const csf = (await readCsfOrMdx(absolutePath, { makeTitle })).parse();
csf.stories.forEach(({ id, name }) => {
fileStories[id] = {

View File

@ -18,18 +18,25 @@ const winOptions = {
};
describe('userOrAutoTitleFromSpecifier', () => {
describe('user title', () => {
it('no match', () => {
expect(
userOrAuto('./ path / to / file.stories.js', normalizeStoriesEntry({ directory: './ other' }, options), 'title')
userOrAuto(
'./ path / to / file.stories.js',
normalizeStoriesEntry({ directory: './ other' }, options),
'title'
)
).toBeFalsy();
});
describe('no trailing slash', () => {
it('match with no titlePrefix', () => {
expect(
userOrAuto('./path/to/file.stories.js', normalizeStoriesEntry({ directory: './path' }, options), 'title')
userOrAuto(
'./path/to/file.stories.js',
normalizeStoriesEntry({ directory: './path' }, options),
'title'
)
).toMatchInlineSnapshot(`title`);
});
@ -77,7 +84,11 @@ describe('userOrAutoTitleFromSpecifier', () => {
describe('trailing slash', () => {
it('match with no titlePrefix', () => {
expect(
userOrAuto('./path/to/file.stories.js', normalizeStoriesEntry({ directory: './path/' }, options), 'title')
userOrAuto(
'./path/to/file.stories.js',
normalizeStoriesEntry({ directory: './path/' }, options),
'title'
)
).toMatchInlineSnapshot(`title`);
});
@ -126,14 +137,22 @@ describe('userOrAutoTitleFromSpecifier', () => {
describe('auto title', () => {
it('no match', () => {
expect(
userOrAuto('./ path / to / file.stories.js', normalizeStoriesEntry({ directory: './ other' }, options), undefined)
userOrAuto(
'./ path / to / file.stories.js',
normalizeStoriesEntry({ directory: './ other' }, options),
undefined
)
).toBeFalsy();
});
describe('no trailing slash', () => {
it('match with no titlePrefix', () => {
expect(
userOrAuto('./path/to/file.stories.js', normalizeStoriesEntry({ directory: './path' }, options), undefined)
userOrAuto(
'./path/to/file.stories.js',
normalizeStoriesEntry({ directory: './path' }, options),
undefined
)
).toMatchInlineSnapshot(`to/file`);
});
@ -201,7 +220,11 @@ describe('userOrAutoTitleFromSpecifier', () => {
describe('trailing slash', () => {
it('match with no titlePrefix', () => {
expect(
userOrAuto('./path/to/file.stories.js', normalizeStoriesEntry({ directory: './path/' }, options), undefined)
userOrAuto(
'./path/to/file.stories.js',
normalizeStoriesEntry({ directory: './path/' }, options),
undefined
)
).toMatchInlineSnapshot(`to/file`);
});

View File

@ -27,7 +27,7 @@ export const getMonorepoType = (): MonorepoType => {
if (monorepoType) {
return monorepoType;
}
if (!fs.existsSync(path.join(projectRootPath, 'package.json'))) return undefined;
const packageJson = fs.readJsonSync(path.join(projectRootPath, 'package.json')) as PackageJson;