mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
cleanup
This commit is contained in:
parent
6b559e831c
commit
73d821fe3a
@ -21,6 +21,7 @@ export function useStories<TFramework extends AnyFramework = AnyFramework>(
|
|||||||
const [storiesById, setStories] = useState<Record<StoryId, Story<TFramework>>>({});
|
const [storiesById, setStories] = useState<Record<StoryId, Story<TFramework>>>({});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
// deepscan-disable-next-line NO_EFFECT_CALL
|
||||||
Promise.all(
|
Promise.all(
|
||||||
storyIds.map(async (storyId) => {
|
storyIds.map(async (storyId) => {
|
||||||
// loadStory will be called every single time useStory is called
|
// loadStory will be called every single time useStory is called
|
||||||
|
@ -78,7 +78,6 @@ const Label = styled.label(({ theme }) => ({
|
|||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const format = (value: BooleanValue): string | null => (value ? String(value) : null);
|
|
||||||
const parse = (value: string | null): boolean => value === 'true';
|
const parse = (value: string | null): boolean => value === 'true';
|
||||||
|
|
||||||
export type BooleanProps = ControlProps<BooleanValue> & BooleanConfig;
|
export type BooleanProps = ControlProps<BooleanValue> & BooleanConfig;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { FC, ChangeEvent, useState, Fragment } from 'react';
|
import React, { FC, ChangeEvent, useState } from 'react';
|
||||||
import { styled } from '@storybook/theming';
|
import { styled } from '@storybook/theming';
|
||||||
import { logger } from '@storybook/client-logger';
|
import { logger } from '@storybook/client-logger';
|
||||||
import { ControlProps, OptionsMultiSelection, NormalizedOptionsConfig } from '../types';
|
import { ControlProps, OptionsMultiSelection, NormalizedOptionsConfig } from '../types';
|
||||||
@ -61,7 +61,7 @@ export const CheckboxControl: FC<CheckboxProps> = ({
|
|||||||
const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
|
const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
|
||||||
const option = (e.target as HTMLInputElement).value;
|
const option = (e.target as HTMLInputElement).value;
|
||||||
const updated = [...selected];
|
const updated = [...selected];
|
||||||
if (updated?.includes(option)) {
|
if (updated.includes(option)) {
|
||||||
updated.splice(updated.indexOf(option), 1);
|
updated.splice(updated.indexOf(option), 1);
|
||||||
} else {
|
} else {
|
||||||
updated.push(option);
|
updated.push(option);
|
||||||
|
@ -24,12 +24,6 @@ const Wrapper = styled.div<{ isInline: boolean }>(({ isInline }) =>
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const Fieldset = styled.fieldset({
|
|
||||||
border: 0,
|
|
||||||
padding: 0,
|
|
||||||
margin: 0,
|
|
||||||
});
|
|
||||||
|
|
||||||
const Text = styled.span({});
|
const Text = styled.span({});
|
||||||
|
|
||||||
const Label = styled.label({
|
const Label = styled.label({
|
||||||
|
@ -154,7 +154,7 @@ export async function baseGenerator(
|
|||||||
packages: frameworkPackages,
|
packages: frameworkPackages,
|
||||||
type,
|
type,
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
renderer: rendererInclude,
|
renderer: rendererInclude, // deepscan-disable-line UNUSED_DECL
|
||||||
framework: frameworkInclude,
|
framework: frameworkInclude,
|
||||||
builder: builderInclude,
|
builder: builderInclude,
|
||||||
} = getFrameworkDetails(renderer, builder, pnp);
|
} = getFrameworkDetails(renderer, builder, pnp);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user