mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge pull request #11432 from storybookjs/fix-object-control
Controls: Fix object control for story switching
This commit is contained in:
commit
5a9f875596
@ -4,6 +4,11 @@ import Button from '../components/TsButton';
|
|||||||
export default {
|
export default {
|
||||||
title: 'Addons/Controls',
|
title: 'Addons/Controls',
|
||||||
component: Button,
|
component: Button,
|
||||||
|
argTypes: {
|
||||||
|
children: { control: 'text' },
|
||||||
|
type: { control: 'text' },
|
||||||
|
somethingElse: { control: 'object' },
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const Story = (args) => <Button {...args} />;
|
const Story = (args) => <Button {...args} />;
|
||||||
@ -11,12 +16,14 @@ const Story = (args) => <Button {...args} />;
|
|||||||
export const Basic = Story.bind({});
|
export const Basic = Story.bind({});
|
||||||
Basic.args = {
|
Basic.args = {
|
||||||
children: 'basic',
|
children: 'basic',
|
||||||
|
somethingElse: { a: 2 },
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Action = Story.bind({});
|
export const Action = Story.bind({});
|
||||||
Action.args = {
|
Action.args = {
|
||||||
children: 'hmmm',
|
children: 'hmmm',
|
||||||
type: 'action',
|
type: 'action',
|
||||||
|
somethingElse: { a: 4 },
|
||||||
};
|
};
|
||||||
|
|
||||||
export const CustomControls = Story.bind({});
|
export const CustomControls = Story.bind({});
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { FC, ChangeEvent, useState, useCallback } from 'react';
|
import React, { FC, ChangeEvent, useState, useCallback, useEffect } from 'react';
|
||||||
import { styled } from '@storybook/theming';
|
import { styled } from '@storybook/theming';
|
||||||
|
|
||||||
import deepEqual from 'fast-deep-equal';
|
import deepEqual from 'fast-deep-equal';
|
||||||
@ -36,6 +36,11 @@ export const ObjectControl: FC<ObjectProps> = ({
|
|||||||
const [valid, setValid] = useState(true);
|
const [valid, setValid] = useState(true);
|
||||||
const [text, setText] = useState(format(value));
|
const [text, setText] = useState(format(value));
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const newText = format(value);
|
||||||
|
if (text !== newText) setText(newText);
|
||||||
|
}, [value]);
|
||||||
|
|
||||||
const handleChange = useCallback(
|
const handleChange = useCallback(
|
||||||
(e: ChangeEvent<HTMLTextAreaElement>) => {
|
(e: ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user