roymondchen d2a02e16d2 feat(editor): getEvent/getMethod 支持节点上下文参数
便于插件通过 beforeGetEvent/afterGetEvent 等钩子按节点定制事件与方法列表;getMethod 第二参数调整为 { node?, targetId? }。
2026-08-03 20:41:27 +08:00

71 lines
2.5 KiB
TypeScript

/*
* Tencent is pleased to support the open source community by making TMagicEditor available.
*
* Copyright (C) 2025 Tencent. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { describe, expect, test } from 'vitest';
import events from '@editor/services/events';
describe('events', () => {
test('setEvent', () => {
const event = [{ label: '点击', value: 'magic:common:events:click' }];
events.setEvent('button', event);
expect(events.getEvent('button')).toHaveLength(1);
});
test('setMethod', () => {
const method = [{ label: '点击', value: 'magic:common:events:click' }];
events.setMethod('button', method);
expect(events.getMethod('button', { targetId: 'btn_1' })).toHaveLength(1);
});
test('setEvents 批量设置', () => {
events.setEvents({
Image: [{ label: 'click', value: 'click' }],
Text: [{ label: 'init', value: 'init' }],
} as any);
expect(events.getEvent('image')).toHaveLength(1);
expect(events.getEvent('text')).toHaveLength(1);
});
test('setMethods 批量设置', () => {
events.setMethods({
Image: [{ label: 'show', value: 'show' }],
} as any);
expect(events.getMethod('image', {})).toHaveLength(1);
});
test('getEvent / getMethod 支持节点上下文参数', () => {
const node = { id: 'n1', type: 'button' } as any;
events.setEvent('button', [{ label: '点击', value: 'click' }]);
events.setMethod('button', [{ label: '打开', value: 'open' }]);
expect(events.getEvent('button', { node })).toEqual([{ label: '点击', value: 'click' }]);
expect(events.getMethod('button', { targetId: 'n1', node })).toEqual([{ label: '打开', value: 'open' }]);
});
test('未注册类型返回空数组', () => {
expect(events.getEvent('not-exist')).toEqual([]);
expect(events.getMethod('not-exist')).toEqual([]);
});
test('resetState 清空所有事件 / 方法', () => {
events.setEvent('foo', [{ label: 'l', value: 'v' }]);
events.resetState();
expect(events.getEvent('foo')).toEqual([]);
});
});