This commit is contained in:
Vanessa 2023-06-23 16:27:54 +08:00
parent 904735a2eb
commit dfc0a35c05
5 changed files with 51 additions and 13 deletions

View file

@ -17,6 +17,12 @@ export class Plugin {
public eventBus: EventBus;
public data: any = {};
public name: string;
public protyleSlash: {
filter: string[],
html: string,
id: string,
callback: (protyle: import("../protyle").Protyle) => void
}[] = [];
// TODO
public customBlockRenders: {
[key: string]: {

View file

@ -46,13 +46,11 @@ export const hintSlash = (key: string, protyle: IProtyle) => {
filter: ["ai chat"],
value: Constants.ZWSP + 5,
html: '<div class="b3-list-item__first"><svg class="b3-list-item__graphic"><use xlink:href="#iconSparkles"></use></svg><span class="b3-list-item__text">AI Chat</span></div>',
},
// {
// filter: ["属性视图", "shuxingshitu", "sxst", "attribute view"],
// value: '<div data-type="NodeAttributeView" data-av-type="table"></div>',
// html: `<div class="b3-list-item__first"><svg class="b3-list-item__graphic"><use xlink:href="#iconDatabase"></use></svg><span class="b3-list-item__text">${window.siyuan.languages.attributeView}</span></div>`,
// },
{
}/*,{
filter: ["属性视图", "shuxingshitu", "sxst", "attribute view"],
value: '<div data-type="NodeAttributeView" data-av-type="table"></div>',
html: `<div class="b3-list-item__first"><svg class="b3-list-item__graphic"><use xlink:href="#iconDatabase"></use></svg><span class="b3-list-item__text">${window.siyuan.languages.attributeView}</span></div>`,
}*/, {
filter: ["文档", "子文档", "wendang", "wd", "ziwendang", "zwd", "xjwd"],
value: Constants.ZWSP + 4,
html: `<div class="b3-list-item__first"><svg class="b3-list-item__graphic"><use xlink:href="#iconFile"></use></svg><span class="b3-list-item__text">${window.siyuan.languages.newFile}</span><span class="b3-menu__accelerator">${updateHotkeyTip(window.siyuan.config.keymap.general.newFile.custom)}</span></div>`,
@ -249,6 +247,24 @@ export const hintSlash = (key: string, protyle: IProtyle) => {
value: `style${Constants.ZWSP}`,
html: `<div class="b3-list-item__first"><div class="color__square">A</div><span class="b3-list-item__text">${window.siyuan.languages.clearFontStyle}</span></div>`,
}];
allList.push({
value: "",
html: "separator",
});
let hasPlugin = false;
protyle.app.plugins.forEach((plugin) => {
plugin.protyleSlash.forEach(slash => {
allList.push({
filter: slash.filter,
value: `plugin${Constants.ZWSP}${plugin.name}${Constants.ZWSP}${slash.id}`,
html: slash.html
});
hasPlugin = true;
});
});
if (!hasPlugin) {
allList.pop();
}
if (key === "") {
return allList;
}

View file

@ -619,6 +619,20 @@ ${unicode2Emoji(emoji.unicode)}</button>`;
nodeElement.setAttribute("style", value.split(Constants.ZWSP)[1] || "");
updateTransaction(protyle, id, nodeElement.outerHTML, html);
return;
} else if (value.startsWith("plugin")) {
protyle.app.plugins.find((plugin) => {
const ids = value.split(Constants.ZWSP)
if (ids[1] === plugin.name) {
plugin.protyleSlash.find((slash) => {
if (slash.id === ids[2]){
slash.callback(protyle.getInstance());
return true;
}
})
return true;
}
})
return;
} else {
range.deleteContents();
if (value !== "![]()") {

View file

@ -46,6 +46,7 @@ export class Protyle {
const mergedOptions = getOptions.merge();
this.protyle = {
getInstance: () => this,
app,
transactionTime: new Date().getTime(),
id: genUUID(),

View file

@ -407,6 +407,7 @@ interface IOptions {
}
interface IProtyle {
getInstance: () => import("../protyle").Protyle,
app: import("../index").App,
transactionTime: number,
id: string,