Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ant-design-pro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
ant-design-pro
Commits
21d4f751
Commit
21d4f751
authored
Jun 18, 2019
by
陈帅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fix CopyBlock style warning
parent
d75bbb29
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
src/components/CopyBlock/index.tsx
src/components/CopyBlock/index.tsx
+10
-3
No files found.
src/components/CopyBlock/index.tsx
View file @
21d4f751
import
{
Icon
,
Popover
,
Typography
}
from
'
antd
'
;
import
{
FormattedMessage
}
from
'
umi-plugin-react/locale
'
;
import
React
from
'
react
'
;
import
React
,
{
useRef
}
from
'
react
'
;
import
{
connect
}
from
'
dva
'
;
import
{
isAntDesignPro
}
from
'
@/utils/utils
'
;
import
styles
from
'
./index.less
'
;
...
...
@@ -41,8 +41,13 @@ const BlockCodeView: React.SFC<{
text
:
blockUrl
,
onCopy
:
()
=>
onBlockCopy
(
url
),
}
}
style
=
{
{
display
:
'
flex
'
,
}
}
>
<
pre
>
<
code
className
=
{
styles
[
'
copy-block-code
'
]
}
>
{
blockUrl
}
</
code
>
</
pre
>
</
Typography
.
Paragraph
>
</
div
>
);
...
...
@@ -58,14 +63,16 @@ export default connect(({ routing }: { routing: RoutingType }) => ({
location
:
routing
.
location
,
}))(({
location
}:
RoutingType
)
=>
{
const
url
=
location
.
pathname
;
const
divDom
=
useRef
<
HTMLDivElement
>
(
null
);
return
(
<
Popover
title
=
{
<
FormattedMessage
id
=
"app.preview.down.block"
defaultMessage
=
"下载此页面到本地项目"
/>
}
placement
=
"topLeft"
content
=
{
<
BlockCodeView
url
=
{
url
}
/>
}
trigger
=
"click"
getPopupContainer
=
{
dom
=>
(
divDom
.
current
?
divDom
.
current
:
dom
)
}
>
<
div
className
=
{
styles
[
'
copy-block
'
]
}
>
<
div
className
=
{
styles
[
'
copy-block
'
]
}
ref
=
{
divDom
}
>
<
Icon
type
=
"download"
/>
</
div
>
</
Popover
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment