mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
fix fixable linting issues
This commit is contained in:
parent
7eef5f0ede
commit
56bd91f612
@ -10,4 +10,3 @@ export default {
|
||||
};
|
||||
|
||||
export const Basic = () => <Button label="Click me" />;
|
||||
|
||||
|
@ -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" />;
|
||||
|
@ -9,4 +9,4 @@ export default {
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const Basic = () => <Button label="Click me" />;
|
||||
export const Basic = () => <Button label="Click me" />;
|
||||
|
@ -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" />;
|
||||
|
@ -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 =
|
||||
|
@ -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 {
|
||||
|
@ -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] = {
|
||||
|
@ -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`);
|
||||
});
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user