mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:31:09 +08:00
Addon-docs: Remove leading pipe if using raw value for Flow union
This commit is contained in:
parent
cdf3ed5090
commit
97602f0c3b
@ -317,6 +317,32 @@ describe('type', () => {
|
|||||||
expect(type.summary).toBe('"minimum" | "maximum" | UserSize');
|
expect(type.summary).toBe('"minimum" | "maximum" | UserSize');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('removes a leading | if raw union value is used', () => {
|
||||||
|
const docgenInfo = createDocgenInfo({
|
||||||
|
flowType: {
|
||||||
|
name: 'union',
|
||||||
|
raw: '| "minimum" | "maximum" | UserSize',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { type } = createFlowPropDef(PROP_NAME, docgenInfo);
|
||||||
|
|
||||||
|
expect(type.summary).toBe('"minimum" | "maximum" | UserSize');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('even removes extra spaces after a leading | if raw union value is used', () => {
|
||||||
|
const docgenInfo = createDocgenInfo({
|
||||||
|
flowType: {
|
||||||
|
name: 'union',
|
||||||
|
raw: '| "minimum" | "maximum" | UserSize',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { type } = createFlowPropDef(PROP_NAME, docgenInfo);
|
||||||
|
|
||||||
|
expect(type.summary).toBe('"minimum" | "maximum" | UserSize');
|
||||||
|
});
|
||||||
|
|
||||||
it('should support intersection', () => {
|
it('should support intersection', () => {
|
||||||
const docgenInfo = createDocgenInfo({
|
const docgenInfo = createDocgenInfo({
|
||||||
flowType: {
|
flowType: {
|
||||||
|
@ -40,7 +40,8 @@ function generateUnion({ name, raw, elements }: DocgenFlowUnionType): PropType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (raw != null) {
|
if (raw != null) {
|
||||||
return createSummaryValue(raw);
|
// Flow Unions can be defined with or without a leading `|` character, so try to remove it.
|
||||||
|
return createSummaryValue(raw.replace(/^\|\s*/, ''));
|
||||||
}
|
}
|
||||||
|
|
||||||
return createSummaryValue(name);
|
return createSummaryValue(name);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user