Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
757f6e80
提交
757f6e80
authored
8月 09, 2024
作者:
李仕聪
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 完成多图片预览
上级
4d9d9d0a
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
72 行增加
和
16 行删除
+72
-16
ImgViewer.jsx
one_stop_public/filePreview/ImgViewer.jsx
+25
-0
PreviewWordExtend.jsx
one_stop_public/filePreview/PreviewWordExtend.jsx
+13
-1
index.jsx
one_stop_public/filePreview/index.jsx
+5
-13
UploadComReadOnly.js
one_stop_public/libs/Split/UploadComReadOnly.js
+7
-0
TreeList.js
one_stop_public/libs/formList/TreeList.js
+11
-1
index.js
one_stop_public/libs/formList/index.js
+11
-1
没有找到文件。
one_stop_public/filePreview/ImgViewer.jsx
0 → 100644
浏览文件 @
757f6e80
import
{
useMemo
}
from
'react'
;
import
Viewer
from
'react-viewer'
;
import
{
checkIsImage
}
from
'@/webPublic/one_stop_public/libs/UploadCom'
;
export
const
ImgViewer
=
(
props
)
=>
{
const
{
onClose
,
path
}
=
props
;
const
images
=
useMemo
(
()
=>
{
return
props
?.
images
?.
filter
(
i
=>
checkIsImage
(
i
?.
src
));
},
[
props
.
images
]
);
const
activeIndex
=
useMemo
(
()
=>
{
if
(
path
)
{
return
images
?.
findIndex
((
item
)
=>
item
?.
src
===
path
);
}
return
0
},
[
path
]
);
return
(
<
Viewer
visible=
{
true
}
onClose=
{
onClose
}
activeIndex=
{
activeIndex
}
images=
{
images
}
/>
);
};
one_stop_public/filePreview/PreviewWordExtend.jsx
浏览文件 @
757f6e80
...
...
@@ -7,7 +7,7 @@
import
React
,
{
useMemo
,
Fragment
,
useState
,
useRef
}
from
"react"
;
import
{
fileUrlToFilePath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
requestOrigin
}
from
'@/webPublic/one_stop_public/utils/request'
;
import
{
message
,
Modal
}
from
'antd'
;
import
{
message
,
Modal
,
Tooltip
}
from
'antd'
;
import
{
getPdfFile
}
from
"@/webPublic/one_stop_public/filePreview/utils"
;
export
default
function
PreviewWordExtend
({
src
,
fileName
})
{
...
...
@@ -70,9 +70,21 @@ export default function PreviewWordExtend({ src, fileName }) {
);
}
else
{
return
(
<>
{
fileName
?.
length
>
13
?
<
Tooltip
title=
{
fileName
}
>
<
a
src=
{
src
}
target=
{
'_blank'
}
>
{
fileName
.
substring
(
0
,
10
)
}
...
</
a
>
</
Tooltip
>
:
<
a
src=
{
src
}
target=
{
'_blank'
}
>
{
fileName
}
</
a
>
}
</>
);
}
}
one_stop_public/filePreview/index.jsx
浏览文件 @
757f6e80
...
...
@@ -4,12 +4,10 @@
import
React
,
{
Component
}
from
'react'
;
import
{
checkIsImage
}
from
'@/webPublic/one_stop_public/libs/UploadCom'
;
import
{
getModal
,
getPopconfirm
,
isFromIframe
}
from
'@/webPublic/one_stop_public/utils/utils'
;
import
Viewer
from
'react-viewer'
;
import
styles
from
'./styles.less'
;
import
PreviewWordExtend
from
"@/webPublic/one_stop_public/filePreview/PreviewWordExtend"
;
import
{
ImgViewer
}
from
'./ImgViewer'
;
// const FileViewer = CLIENT_TYPE === 'mobile' ? null : require('react-file-viewer');
const
FileViewer
=
null
;
const
Modal
=
getModal
();
const
Popconfirm
=
getPopconfirm
();
...
...
@@ -55,7 +53,7 @@ export default class index extends Component {
/***
* pathName 必须是个字符串 否则容易崩溃
* */
let
{
path
,
pathName
=
''
,
width
,
height
}
=
this
.
props
;
let
{
path
,
pathName
=
''
,
width
,
height
,
activeIndex
,
images
}
=
this
.
props
;
const
{
visible
}
=
this
.
state
;
let
isShow
=
false
;
let
type
;
...
...
@@ -80,7 +78,6 @@ export default class index extends Component {
}
// return null;
return
(
<>
{
isShow
?
(
...
...
@@ -138,15 +135,10 @@ export default class index extends Component {
{
!
checkIsImage
(
path
)
&&
<
a
onClick=
{
this
.
download
}
>
下载文件
</
a
>
}
{
!!
checkIsImage
(
path
)
&&
(
<
Viewer
visible=
{
true
}
<
ImgViewer
onClose=
{
this
.
handleCancel
}
images=
{
[
{
src
:
path
,
alt
:
'预览'
,
},
]
}
images=
{
images
}
path=
{
path
}
/>
)
}
</
div
>
...
...
one_stop_public/libs/Split/UploadComReadOnly.js
浏览文件 @
757f6e80
...
...
@@ -39,6 +39,13 @@ export default function UploadComReadOnly(props) {
type
=
{
'UploadCom'
}
width
=
{
otherProps
.
readOnlyWebFileWidth
||
'100px'
}
height
=
{
otherProps
.
readOnlyWebFileHeight
||
'100px'
}
images
=
{
files
?.
map
((
item
)
=>
{
return
{
src
:
queryFileUrl
(
item
.
path
),
alt
:
'预览'
,
};
})}
activeIndex
=
{
index2
}
/
>
<
/li
>
);
...
...
one_stop_public/libs/formList/TreeList.js
浏览文件 @
757f6e80
...
...
@@ -434,7 +434,17 @@ class TreeList extends React.Component {
{
files
.
map
((
f
,
index2
)
=>
{
return
(
<
li
key
=
{
index2
}
>
<
FilePreview
path
=
{
queryFileUrl
(
f
.
path
)}
pathName
=
{
f
.
name
}
/
>
<
FilePreview
path
=
{
queryFileUrl
(
f
.
path
)}
pathName
=
{
f
.
name
}
images
=
{
files
?.
map
((
item
)
=>
{
return
{
src
:
queryFileUrl
(
item
.
path
),
alt
:
'预览'
,
};
})}
activeIndex
=
{
index2
}
/
>
<
/li
>
);
})}
...
...
one_stop_public/libs/formList/index.js
浏览文件 @
757f6e80
...
...
@@ -511,7 +511,17 @@ class FormList extends React.Component {
{
files
.
map
((
f
,
index2
)
=>
{
return
(
<
li
key
=
{
index2
}
>
<
FilePreview
path
=
{
queryFileUrl
(
f
.
path
)}
pathName
=
{
f
.
name
}
/
>
<
FilePreview
path
=
{
queryFileUrl
(
f
.
path
)}
pathName
=
{
f
.
name
}
images
=
{
files
?.
map
((
item
)
=>
{
return
{
src
:
queryFileUrl
(
item
.
path
),
alt
:
'预览'
,
};
})}
activeIndex
=
{
index2
}
/
>
<
/li
>
);
})}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论