Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
bc8b64e3
提交
bc8b64e3
authored
5月 17, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
TODO wangEditor 优化
上级
e3799bf2
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
93 行增加
和
3 行删除
+93
-3
OneStopWangEditor.js
zyd_public/WangEditor/OneStopWangEditor.js
+7
-1
PdfMenu.js
zyd_public/WangEditor/PdfMenu.js
+76
-0
index.js
zyd_public/WangEditor/index.js
+1
-1
wangEditorComponent.js
zyd_public/WangEditor/wangEditorComponent.js
+9
-1
没有找到文件。
zyd_public/WangEditor/OneStopWangEditor.js
浏览文件 @
bc8b64e3
...
...
@@ -17,8 +17,12 @@ import React, { useState, useEffect } from 'react';
import
WangEditor
from
'./includes/wangEditor.min'
;
import
{
uploadFile
}
from
"@/webPublic/one_stop_public/libs/PictureSignature/ShowItem"
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
// import PdfMenu from './PdfMenu';
let
editor
=
null
;
export
default
function
Index
({
height
,
zIndex
,
...
...
@@ -30,6 +34,8 @@ export default function Index({
menus
,
})
{
useEffect
(()
=>
{
// const menuKey = 'PdfMenuKey';
// WangEditor.registerMenu(menuKey, PdfMenu);
editor
=
new
WangEditor
(
`#wangEditor
${
domKey
}
`
);
if
(
height
)
{
editor
.
config
.
height
=
height
;
// 编辑器高度
...
...
zyd_public/WangEditor/PdfMenu.js
0 → 100644
浏览文件 @
bc8b64e3
import
Editor
from
'@/webPublic/zyd_public/WangEditor/includes/wangEditor.min'
;
const
E
=
Editor
;
const
{
BtnMenu
}
=
E
;
console
.
log
(
BtnMenu
);
/**
<input
style={inputStyle}
type='file'
accept='.pdf'
onChange={handleVideo}
/>
*
* */
const
inputStyle
=
{
opacity
:
0
,
display
:
'absolute'
,
top
:
0
,
left
:
0
,
width
:
18
,
height
:
18
,
};
export
default
class
AlertMenu
extends
BtnMenu
{
constructor
(
editor
)
{
// data-title属性表示当鼠标悬停在该按钮上时提示该按钮的功能简述
const
$elem
=
E
.
$
(
`<div class='w-e-menu' data-title='Alert' style='position: relative;'>
<svg viewBox='0 0 1024 1024'
xmlns='http://www.w3.org/2000/svg'
width='18'
height='18'
fill='currentColor'
>
<path d='M905 179q-10-10-22-21-36-33-67-62-3-2-5-4-45-41-71-63-16-13-25-19-6-5-11-7-6-3-13-3-10 0-17.5 7.5T666 26v230h230l-26-25v767l26-25H230q-31 0-53.5-22.5T154 896V26l-26 26h461q10 0 17.5-7.5t7.5-18-7.5-18T589 1H102v895q0 53 37.5 90.5T230 1024h692V205H691l26 26V26q0 10-7.5 17.5T692 51q-5 0-9-2l2 2q7 5 22 17 25 22 69 62 3 2 5 4 31 28 67 62 12 10 22 20 6 5 8 8 8 7 18.5 7t18-8 7-18.5T914 187q-4-3-9-8zM102 461H0v435h1024V461H102z m106 250v108h-50V528h111q49 0 77.5 25.5T375 621t-28 66-79 24h-60z m0-41h61q27 0 41-12.5t14-36.5-14-38-40-14h-62v101z m211 149V528h86q39 0 69 17t46.5 49 16.5 72v15q0 41-16.5 72.5t-47 48.5-70.5 17h-84z m51-250v210h33q40 0 61-25t22-72v-16q0-47-20.5-72T505 569h-35z m385 127H738v123h-51V528h185v41H738v86h117v41z' />
</svg>
<input
accept='.pdf'
type='file'
style='
position: absolute;
opacity: 0;
top: 0;
left: 0;
width: 18px;
height: 18px;
'/>
</div>`
,
);
super
(
$elem
,
editor
);
}
// 菜单点击事件
clickHandler
()
{
// 做任何你想做的事情
// 可参考【常用 API】文档,来操作编辑器
alert
(
'hello world'
);
}
// 菜单是否被激活(如果不需要,这个函数可以空着)
// 1. 激活是什么?光标放在一段加粗、下划线的文本时,菜单栏里的 B 和 U 被激活,如下图
// 2. 什么时候执行这个函数?每次编辑器区域的选区变化(如鼠标操作、键盘操作等),都会触发各个菜单的 tryChangeActive 函数,重新计算菜单的激活状态
tryChangeActive
()
{
// 激活菜单
// 1. 菜单 DOM 节点会增加一个 .w-e-active 的 css class
// 2. this.this.isActive === true
this
.
active
();
// // 取消激活菜单
// // 1. 菜单 DOM 节点会删掉 .w-e-active
// // 2. this.this.isActive === false
// this.unActive()
}
}
zyd_public/WangEditor/index.js
浏览文件 @
bc8b64e3
...
...
@@ -14,6 +14,6 @@ function Index({ onChange, value, height, domKey }) {
}
export
default
forwardRef
((
props
,
_ref
)
=>
{
console
.
log
(
props
);
//
console.log(props);
return
<
Index
{...
props
}
/>
;
});
zyd_public/WangEditor/wangEditorComponent.js
浏览文件 @
bc8b64e3
...
...
@@ -17,6 +17,7 @@ import React, { useState, useEffect } from 'react';
import
WangEditor
from
'./includes/wangEditor.min'
;
import
uploadFile
from
'./uploadFile'
;
import
compressImage
from
'@/webPublic/zyd_public/WangEditor/compressImage'
;
import
PdfMenu
from
'@/webPublic/zyd_public/WangEditor/PdfMenu'
;
let
editor
=
null
;
export
default
function
Index
({
...
...
@@ -29,8 +30,14 @@ export default function Index({
onChangeValue
,
})
{
useEffect
(()
=>
{
console
.
log
(
WangEditor
.
prototype
);
editor
=
new
WangEditor
(
`#wangEditor
${
domKey
}
`
);
if
(
height
)
{
const
menuKey
=
'PdfMenuKey'
;
editor
.
menus
.
extend
(
menuKey
,
PdfMenu
);
if
(
height
)
{
editor
.
config
.
height
=
height
;
// 编辑器高度
}
if
(
zIndex
)
{
...
...
@@ -88,6 +95,7 @@ export default function Index({
'table'
,
// 'code',
'splitLine'
,
'PdfMenuKey'
,
// 'undo',
// 'redo',
];
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论