forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ConfigProvider support config
popupOverflow
for scroll logic (a…
…nt-design#41676) * feat: popupOverflow * test: add test case * docs: preview * docs: update preview * test: update test case
- Loading branch information
Showing
11 changed files
with
162 additions
and
3,563 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { PictureOutlined } from '@ant-design/icons'; | ||
import { Image, Tooltip, Typography } from 'antd'; | ||
import React from 'react'; | ||
import useLocale from '../../../hooks/useLocale'; | ||
|
||
const locales = { | ||
cn: { | ||
tip: '预览', | ||
}, | ||
en: { | ||
tip: 'Preview', | ||
}, | ||
}; | ||
|
||
export interface InlinePopoverProps { | ||
previewURL?: string; | ||
} | ||
|
||
// 鼠标悬浮弹出 Popover 组件,用于帮助用户更快看到一些属性对应的预览效果 | ||
const InlinePopover: React.FC = (props: InlinePopoverProps) => { | ||
const { previewURL } = props; | ||
|
||
const [locale] = useLocale(locales); | ||
const [visible, setVisible] = React.useState(false); | ||
|
||
return ( | ||
<> | ||
<Tooltip title={locale.tip}> | ||
<Typography.Link onClick={() => setVisible(true)}> | ||
<PictureOutlined /> | ||
</Typography.Link> | ||
</Tooltip> | ||
|
||
<Image | ||
width={10} | ||
style={{ display: 'none' }} | ||
src={previewURL} | ||
preview={{ | ||
visible, | ||
src: previewURL, | ||
onVisibleChange: (value) => { | ||
setVisible(value); | ||
}, | ||
}} | ||
/> | ||
</> | ||
); | ||
}; | ||
|
||
export default InlinePopover; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.