am-editor11212/plugins/mention
yanmao 75b12cd0fd Publish
- @aomao/engine@2.7.10
 - @aomao/toolbar-vue@2.7.10
 - @aomao/toolbar@2.7.10
 - @aomao/plugin-alignment@2.7.10
 - @aomao/plugin-backcolor@2.7.10
 - @aomao/plugin-bold@2.7.10
 - @aomao/plugin-code@2.7.10
 - @aomao/plugin-codeblock-vue@2.7.10
 - @aomao/plugin-codeblock@2.7.10
 - @aomao/plugin-embed@2.7.10
 - @aomao/plugin-file@2.7.10
 - @aomao/plugin-fontcolor@2.7.10
 - @aomao/plugin-fontfamily@2.7.10
 - @aomao/plugin-fontsize@2.7.10
 - @aomao/plugin-heading@2.7.10
 - @aomao/plugin-hr@2.7.10
 - @aomao/plugin-image@2.7.10
 - @aomao/plugin-indent@2.7.10
 - @aomao/plugin-italic@2.7.10
 - @aomao/plugin-line-height@2.7.10
 - @aomao/plugin-link-vue@2.7.10
 - @aomao/plugin-link@2.7.10
 - @aomao/plugin-mark-range@2.7.10
 - @aomao/plugin-mark@2.7.10
 - @aomao/plugin-math@2.7.10
 - @aomao/plugin-mention@2.7.10
 - @aomao/plugin-mind@2.7.10
 - @aomao/plugin-orderedlist@2.7.10
 - @aomao/plugin-paintformat@2.7.10
 - @aomao/plugin-quote@2.7.10
 - @aomao/plugin-redo@2.7.10
 - @aomao/plugin-removeformat@2.7.10
 - @aomao/plugin-selectall@2.7.10
 - @aomao/plugin-status@2.7.10
 - @aomao/plugin-strikethrough@2.7.10
 - @aomao/plugin-sub@2.7.10
 - @aomao/plugin-sup@2.7.10
 - @aomao/plugin-table@2.7.10
 - @aomao/plugin-tasklist@2.7.10
 - @aomao/plugin-underline@2.7.10
 - @aomao/plugin-undo@2.7.10
 - @aomao/plugin-unorderedlist@2.7.10
 - @aomao/plugin-video@2.7.10
2022-01-06 16:20:52 +08:00
..
src update: table & codeblock & mention 2022-01-05 21:32:49 +08:00
README.md update 2021-12-30 17:49:32 +08:00
package.json Publish 2022-01-06 16:20:52 +08:00
tsconfig.json init 2021-11-03 19:58:08 +08:00

README.md

@aomao/plugin-mention

提及插件

安装

$ yarn add @aomao/plugin-mention

添加到引擎

import Engine, { EngineInterface } from '@aomao/engine';
import Mention, { MentionComponent } from '@aomao/plugin-mention';

new Engine(...,{ plugins:[Mention], cards: [MentionComponent] })

可选项

//使用配置
new Engine(...,{
    config:{
        "mention":{
            //其它可选项
            ...
        }
    }
 })
/**
 * 查询地址,或者监听 mention:search 事件执行查询
 */
action?: string;
/**
 * 数据返回类型,默认 json
 */
type?: '*' | 'json' | 'xml' | 'html' | 'text' | 'js';
/**
 * 额外携带数据上传
 */
data?: {};
/**
 * 请求类型,默认 multipart/form-data;
 */
contentType?: string;
/**
 * 解析上传后的Respone返回 result:是否成功data:成功:文件地址,失败:错误信息
 */
parse?: (
    response: any,
) => {
    result: boolean;
    data: Array<{ key: string, name: string, avatar?: string}>;
};

解析服务端响应数据

result: true 上传成功data 数据集合。false 上传失败data 为错误消息

/**
 * 解析上传后的Respone返回 result:是否成功data:成功:文件地址,失败:错误信息
 */
parse?: (
    response: any,
) => {
    result: boolean;
    data: Array<{ key: string, name: string, avatar?: string}>;
};

插件方法

获取文档中所有的提及

//返回 Array<{ key: string, name: string}>
engine.command.executeMethod('mention', 'getList');

插件事件

mention:default: 默认下拉查询列表展示数据

this.engine.on('mention:default', () => {
	return [];
});

mention:search: 查询时的方法,或者配置 action二选其一

this.engine.on('mention:search', (keyword) => {
	return new Promise((resolve) => {
		query({ keyword })
			.then((result) => {
				resolve(result);
			})
			.catch(() => resolve([]));
	});
});

mention:select: 选中列表中的一项后回调,这里可以返回一个自定义值与 key、name 一起组合成新的值存在 cardValue 里面。并且执行 getList 命令后会一起返回来

this.engine.on('mention:select', (data) => {
	data['test'] = 'test';
	return data;
});

mention:item-click: 在“提及”上单击时触发

this.engine.on(
	'mention:item-click',
	(root: NodeInterface, { key, name }: { key: string; name: string }) => {
		console.log('mention click:', key, '-', name);
	},
);

mention:enter: 鼠标移入“提及”上时触发

this.engine.on(
	'mention:enter',
	(layout: NodeInterface, { name }: { key: string; name: string }) => {
		ReactDOM.render(
			<div style={{ padding: 5 }}>
				<p>This is name: {name}</p>
				<p>配置 mention 插件的 mention:enter 事件</p>
				<p>此处使用 ReactDOM.render 自定义渲染</p>
				<p>Use ReactDOM.render to customize rendering here</p>
			</div>,
			layout.get<HTMLElement>()!,
		);
	},
);

mention:render: 自定义渲染列表

this.engine.on(
	'mention:render',
	(
		root: NodeInterface,
		data: Array<MentionItem>,
		bindItem: (
			node: NodeInterface,
			data: { [key: string]: string },
		) => NodeInterface,
	) => {
		return new Promise<void>((resolve) => {
			const renderCallback = (items: { [key: string]: Element }) => {
				// 遍历每个项的DOM节点
				Object.keys(items).forEach((key) => {
					const element = items[key];
					const item = data.find((d) => d.key === key);
					if (!item) return;
					// 绑定每个列表项所属的属性、事件,以满足编辑器中上下左右选择的功能需要
					bindItem($(element), item);
				});
				resolve();
			};
			ReactDOM.render(
				<MentionList data={data} callback={renderCallback} />,
				root.get<HTMLElement>()!,
			);
		});
	},
);

mention:render-item: 自定义渲染列表项

this.engine.on('mention:render-item', (data, root) => {
	const item = $(`<div>${data}</div>`);
	root.append(item);
	return item;
});

mention:loading: 自定渲染加载状态

this.engine.on('mention:loading', (root) => {
	ReactDOM.render(
		<div className="data-mention-loading">Loading...</div>,
		root.get<HTMLElement>()!,
	);
});

mention:empty: 自定渲染空状态

this.engine.on('mention:empty', (root) => {
	root.html('<div>没有查询到数据</div>');
	// or
	ReactDOM.render(
		<div className="data-mention-empty">Empty</div>,
		root.get<HTMLElement>()!,
	);
});