-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Pie: support multiple activeId
s
#2670
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -20,6 +20,9 @@ import { | |||
CommonPieProps, | |||
} from './types' | |||
|
|||
const idIsActive = (id: DatumId, activeId: null | DatumId | DatumId[]) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than supporting a scalar or an array, I think it would be better to rename the property to activeIds
and to support arrays exclusively.
It would also be nice to add tests about this new feature and to adjust the documentation.
@@ -282,6 +282,76 @@ export const ControlledActiveId: Story = { | |||
render: () => <ControlledPies />, | |||
} | |||
|
|||
const ControlledPiesMultipleActiveIds = () => { | |||
const [activeId, setActiveId] = useState<string>(commonProperties.data[1].id) | |||
const [additionalActiveIds, setAdditionalActiveIds] = useState<string>([]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type should be string[]
I think.
No description provided.