Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
b241d72f
提交
b241d72f
authored
5月 27, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复预览bug
上级
21b55530
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
121 行增加
和
130 行删除
+121
-130
index.jsx
one_stop_public/filePreview/index.jsx
+121
-130
没有找到文件。
one_stop_public/filePreview/index.jsx
浏览文件 @
b241d72f
...
...
@@ -2,140 +2,131 @@
* web端文件预览功能
*/
import
React
,
{
Component
}
from
'react'
;
import
{
Modal
,
Popconfirm
}
from
'antd'
;
const
FileViewer
=
(
CLIENT_TYPE
==
"mobile"
)?
null
:
require
(
'react-file-viewer'
)
import
{
Modal
,
Popconfirm
}
from
'antd'
;
const
FileViewer
=
CLIENT_TYPE
==
'mobile'
?
null
:
require
(
'react-file-viewer'
);
export
default
class
index
extends
Component
{
constructor
(
props
){
super
(
props
)
this
.
state
=
{
visible
:
false
}
}
showModal
=
()
=>
{
this
.
setState
({
visible
:
true
,
});
};
handleOk
=
e
=>
{
this
.
setState
({
visible
:
false
,
});
};
handleCancel
=
e
=>
{
this
.
setState
({
visible
:
false
,
});
constructor
(
props
)
{
super
(
props
);
this
.
state
=
{
visible
:
false
,
};
download
=
()
=>
{
let
{
path
,
pathName
}
=
this
.
props
window
.
open
(
path
,
'_blank'
)
}
render
()
{
let
{
path
,
pathName
}
=
this
.
props
const
{
visible
,
}
=
this
.
state
let
isShow
=
pathName
?.
indexOf
(
'.pdf'
)
!==
-
1
// || pathName?.indexOf('.doc') !== -1
||
pathName
?.
indexOf
(
'.mp3'
)
!==
-
1
||
pathName
?.
indexOf
(
'.mp4'
)
!==
-
1
||
pathName
?.
indexOf
(
'.csv'
)
!==
-
1
||
pathName
?.
indexOf
(
'.png'
)
!==
-
1
||
pathName
?.
indexOf
(
'.jpeg'
)
!==
-
1
||
pathName
?.
indexOf
(
'.gif'
)
!==
-
1
||
pathName
?.
indexOf
(
'.bmp'
)
!==
-
1
let
type
;
if
(
pathName
?.
indexOf
(
'.pdf'
)
!==
-
1
){
isShow
=
true
type
=
'pdf'
}
else
if
(
pathName
?.
indexOf
(
'.mp3'
)
!==
-
1
){
isShow
=
true
type
=
'mp3'
}
else
if
(
pathName
?.
indexOf
(
'.mp4'
)
!==
-
1
){
isShow
=
true
type
=
'mp4'
}
else
if
(
pathName
?.
indexOf
(
'.csv'
)
!==
-
1
){
isShow
=
true
type
=
'csv'
}
else
if
(
pathName
?.
indexOf
(
'.png'
)
!==
-
1
){
isShow
=
true
type
=
'png'
}
else
if
(
pathName
?.
indexOf
(
'.gif'
)
!==
-
1
){
isShow
=
true
type
=
'gif'
}
else
if
(
pathName
?.
indexOf
(
'.bmp'
)
!==
-
1
){
isShow
=
true
type
=
'bmp'
}
else
{
isShow
=
false
}
return
(
<>
{
isShow
?
<
Popconfirm
title=
"该附件支持预览,是否预览?"
onConfirm=
{
this
.
download
}
onCancel=
{
this
.
showModal
}
okText=
"下载"
cancelText=
"预览"
>
<
a
target=
"_blank"
href=
{
path
}
>
{
pathName
}
</
a
>
</
Popconfirm
>
:
<
a
target=
"_blank"
href=
{
path
}
>
{
pathName
}
</
a
>
}
}
showModal
=
()
=>
{
this
.
setState
({
visible
:
true
,
});
};
<
Modal
title=
{
pathName
}
visible=
{
visible
}
width=
{
1200
}
destroyOnClose
onOk=
{
this
.
handleOk
}
onCancel=
{
this
.
handleCancel
}
>
{
type
===
'pdf'
?
<
iframe
style=
{
{
width
:
'100%'
,
height
:
600
}
}
src=
{
path
}
/>
:<
div
style=
{
{
height
:
600
,
}
}
>
{
FileViewer
&&
<
FileViewer
.
default
fileType=
{
type
}
filePath=
{
path
}
// onError=
{
this
.
onError
}
// errorComponent=
{
Error
}
// unsupportedComponent=
{
Error
}
/>
}
</
div
>
}
handleOk
=
e
=>
{
this
.
setState
({
visible
:
false
,
});
};
</
Modal
>
</>
)
handleCancel
=
e
=>
{
this
.
setState
({
visible
:
false
,
});
};
download
=
()
=>
{
let
{
path
,
pathName
}
=
this
.
props
;
window
.
open
(
path
,
'_blank'
);
};
render
()
{
let
{
path
,
pathName
}
=
this
.
props
;
const
{
visible
}
=
this
.
state
;
let
isShow
=
pathName
?.
indexOf
(
'.pdf'
)
!==
-
1
||
// || pathName?.indexOf('.doc') !== -1
pathName
?.
indexOf
(
'.mp3'
)
!==
-
1
||
pathName
?.
indexOf
(
'.mp4'
)
!==
-
1
||
pathName
?.
indexOf
(
'.csv'
)
!==
-
1
||
pathName
?.
indexOf
(
'.png'
)
!==
-
1
||
pathName
?.
indexOf
(
'.jpeg'
)
!==
-
1
||
pathName
?.
indexOf
(
'.gif'
)
!==
-
1
||
pathName
?.
indexOf
(
'.bmp'
)
!==
-
1
;
let
type
;
if
(
pathName
?.
indexOf
(
'.pdf'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'pdf'
;
}
else
if
(
pathName
?.
indexOf
(
'.mp3'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'mp3'
;
}
else
if
(
pathName
?.
indexOf
(
'.mp4'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'mp4'
;
}
else
if
(
pathName
?.
indexOf
(
'.csv'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'csv'
;
}
else
if
(
pathName
?.
indexOf
(
'.png'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'png'
;
}
else
if
(
pathName
?.
indexOf
(
'.gif'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'gif'
;
}
else
if
(
pathName
?.
indexOf
(
'.bmp'
)
!==
-
1
)
{
isShow
=
true
;
type
=
'bmp'
;
}
else
{
isShow
=
false
;
}
console
.
log
(
FileViewer
);
return
(
<>
{
isShow
?
(
<
Popconfirm
title=
"该附件支持预览,是否预览?"
onConfirm=
{
this
.
download
}
onCancel=
{
this
.
showModal
}
okText=
"下载"
cancelText=
"预览"
>
<
a
target=
"_blank"
href=
{
path
}
>
{
pathName
}
</
a
>
</
Popconfirm
>
)
:
(
<
a
target=
"_blank"
href=
{
path
}
>
{
pathName
}
</
a
>
)
}
<
Modal
title=
{
pathName
}
visible=
{
visible
}
width=
{
1200
}
destroyOnClose
onOk=
{
this
.
handleOk
}
onCancel=
{
this
.
handleCancel
}
>
{
type
===
'pdf'
?
(
<
iframe
style=
{
{
width
:
'100%'
,
height
:
600
,
}
}
src=
{
path
}
/>
)
:
(
<
div
style=
{
{
height
:
600
,
}
}
>
{
FileViewer
&&
(
<
FileViewer
fileType=
{
type
}
filePath=
{
path
}
// onError=
{
this
.
onError
}
// errorComponent=
{
Error
}
// unsupportedComponent=
{
Error
}
/>
)
}
</
div
>
)
}
</
Modal
>
</>
);
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论