react-component / react-component/trigger
The 'popupVisible' not work
Open
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 391
- Forks
- 245
- PR merge metrics
- No merged PRs in 30d
Description
I use 'popupVisible' and 'onPopupVisibleChange' with React.useState,but popup won't close once opened
import React, { useState } from "react";
import "antd/dist/antd.css";
import Trigger from "rc-trigger";
import { List, Button } from "antd";
import "./index.css";
const App = () => {
const [visible, setVisible] = useState(false)
console.log(`visible`, visible)
return (
<div className="wrapper">
<Trigger
popupVisible={visible}
action={["click"]}
// destroyPopupOnHide={true}
popup={<span>popup</span>}
popupAlign={{
points: ['tl', 'tr'],
// offset: [0, 3]
}}
onPopupVisibleChange={(a) => {
console.log('a', a)
setVisible(a);
}}
>
<Button block >+++</Button>
</Trigger>
</div>
);
};
export default App;
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the linked CodeSandbox reproduction and trace the Trigger component's popupVisible and onPopupVisibleChange behavior when the button is clicked. Done means the popup opens and then closes while the controlled React state stays synchronized with the component.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- react, typescript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 35/100