/**
* @description tooltip 事件
* @author lichunlin
*/
import $, { DomElement } from '../../../utils/dom-core'
import Tooltip, { TooltipConfType } from '../../menu-constructors/Tooltip'
import Editor from '../../../editor/index'
import setAlignment from './video-alignment'
/**
* 生成 Tooltip 的显示隐藏函数
*/
export function createShowHideFn(editor: Editor) {
let tooltip: Tooltip | null
const t = (text: string, prefix: string = ''): string => {
return editor.i18next.t(prefix + text)
}
/**
* 显示 tooltip
* @param $node 链接元素
*/
function showVideoTooltip($node: DomElement) {
const conf: TooltipConfType = [
{
$elem: $(""),
onClick: (editor: Editor, $node: DomElement) => {
// 选中video元素 删除
$node.remove()
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $('100%'),
onClick: (editor: Editor, $node: DomElement) => {
$node.attr('width', '100%')
$node.removeAttr('height')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $('50%'),
onClick: (editor: Editor, $node: DomElement) => {
$node.attr('width', '50%')
$node.removeAttr('height')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $('30%'),
onClick: (editor: Editor, $node: DomElement) => {
$node.attr('width', '30%')
$node.removeAttr('height')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $(`${t('重置')}`),
onClick: (editor: Editor, $node: DomElement) => {
$node.removeAttr('width')
$node.removeAttr('height')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $(`${t('menus.justify.靠左')}`),
onClick: (editor: Editor, $node: DomElement) => {
// 获取顶级元素
setAlignment($node, 'left')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $(`${t('menus.justify.居中')}`),
onClick: (editor: Editor, $node: DomElement) => {
// 获取顶级元素
setAlignment($node, 'center')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
{
$elem: $(`${t('menus.justify.靠右')}`),
onClick: (editor: Editor, $node: DomElement) => {
// 获取顶级元素
setAlignment($node, 'right')
// 返回 true,表示执行完之后,隐藏 tooltip。否则不隐藏。
return true
},
},
]
tooltip = new Tooltip(editor, $node, conf)
tooltip.create()
}
/**
* 隐藏 tooltip
*/
function hideVideoTooltip() {
// 移除 tooltip
if (tooltip) {
tooltip.remove()
tooltip = null
}
}
return {
showVideoTooltip,
hideVideoTooltip,
}
}
/**
* 绑定 tooltip 事件
* @param editor 编辑器实例
*/
export default function bindTooltipEvent(editor: Editor) {
const { showVideoTooltip, hideVideoTooltip } = createShowHideFn(editor)
// 点击视频元素是,显示 tooltip
editor.txt.eventHooks.videoClickEvents.push(showVideoTooltip)
// 点击其他地方,或者滚动时,隐藏 tooltip
editor.txt.eventHooks.clickEvents.push(hideVideoTooltip)
editor.txt.eventHooks.keyupEvents.push(hideVideoTooltip)
editor.txt.eventHooks.toolbarClickEvents.push(hideVideoTooltip)
editor.txt.eventHooks.menuClickEvents.push(hideVideoTooltip)
editor.txt.eventHooks.textScrollEvents.push(hideVideoTooltip)
// change 时隐藏
editor.txt.eventHooks.changeEvents.push(hideVideoTooltip)
}