mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
feat(editor): 编辑器左边栏支持配置不可拖出,支持before-click函数配置
This commit is contained in:
parent
72a7c151e9
commit
837daf6cab
@ -5,11 +5,11 @@
|
||||
class="m-editor-sidebar-header-item"
|
||||
v-for="(config, index) in sideBarItems"
|
||||
v-show="!floatBoxStates[config.$key]?.status"
|
||||
draggable="true"
|
||||
:draggable="config.draggable ?? true"
|
||||
:key="config.$key ?? index"
|
||||
:class="{ 'is-active': activeTabName === config.text }"
|
||||
:style="config.tabStyle || {}"
|
||||
@click="activeTabName = config.text || config.$key || `${index}`"
|
||||
@click="headerItemClickHandler(config, index)"
|
||||
@dragstart="dragstartHandler"
|
||||
@dragend="dragendHandler(config.$key, $event)"
|
||||
>
|
||||
@ -24,7 +24,7 @@
|
||||
v-show="[config.text, config.$key, `${index}`].includes(activeTabName)"
|
||||
>
|
||||
<component
|
||||
v-if="config && !floatBoxStates[config.$key]?.status"
|
||||
v-if="config?.component && !floatBoxStates[config.$key]?.status"
|
||||
:is="config.component"
|
||||
v-bind="config.props || {}"
|
||||
v-on="config?.listeners || {}"
|
||||
@ -284,6 +284,15 @@ watch(
|
||||
},
|
||||
);
|
||||
|
||||
const headerItemClickHandler = async (config: SideComponent, index: number) => {
|
||||
if (typeof config.beforeClick === 'function') {
|
||||
if ((await config.beforeClick(config)) === false) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
activeTabName.value = config.text || config.$key || `${index}`;
|
||||
};
|
||||
|
||||
defineExpose({
|
||||
activeTabName,
|
||||
});
|
||||
|
@ -53,7 +53,7 @@ import type { MNode } from '@tmagic/schema';
|
||||
import SearchInput from '@editor/components/SearchInput.vue';
|
||||
import Tree from '@editor/components/Tree.vue';
|
||||
import { useFilter } from '@editor/hooks/use-filter';
|
||||
import { LayerPanelSlots, MenuButton, MenuComponent, Services, TreeNodeData } from '@editor/type';
|
||||
import type { LayerPanelSlots, MenuButton, MenuComponent, Services, TreeNodeData } from '@editor/type';
|
||||
|
||||
import LayerMenu from './LayerMenu.vue';
|
||||
import LayerNodeTool from './LayerNodeTool.vue';
|
||||
|
@ -385,6 +385,10 @@ export interface SideComponent extends MenuComponent {
|
||||
icon?: any;
|
||||
/** slide 唯一标识 key */
|
||||
$key: string;
|
||||
/** 是否可以将面板拖出,默认为true */
|
||||
draggable?: boolean;
|
||||
/** 点击切换tab前调用,返回false阻止切换 */
|
||||
beforeClick?: (config: SideComponent) => boolean | Promise<boolean>;
|
||||
|
||||
/** 组件扩展参数 */
|
||||
boxComponentConfig?: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user