The 'popupVisible' not work
Nobody has claimed this yet.
Assessment
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Newbie friendliness
- 35/100
- Issue type
- Bug
- Clarity
- Clearly specified
- Activity status
- Stale
- Tech stack
- react, typescript
- Domain
- frontend
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.
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;
- Dominant language
- TypeScript
- Stars
- 391
- Forks
- 245
- PR merge metrics
- No merged PRs in 30d
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.
More from react-component/trigger
-
Difficulty 2/5 1-3 hours Newbie friendliness 65/100
react-component/trigger#593 · 1 reaction ·
-
Difficulty 3/5 1-2 days Newbie friendliness 58/100
react-component/trigger#623 ·
-
Difficulty 3/5 1-2 days Newbie friendliness 65/100
react-component/trigger#618 · 1 comment ·
-
Difficulty 3/5 1-2 days Newbie friendliness 42/100
react-component/trigger#555 ·
-
Difficulty 3/5 1-2 days Newbie friendliness 55/100
react-component/trigger#550 · 1 comment ·
All issues in react-component/trigger
Similar issues
-
enhancement
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
dennys-bd/agent-hive#184 ·
-
Add: hunch Open
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
AbdelStark/awesome-typesafe#104 ·
-
ai-observability bug team/ai-observability
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
vicharanashala/fln#563 ·