Skip to content

Commit

Permalink
🚨
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed May 15, 2023
1 parent 1ac623e commit d24f5ae
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion app/src/config/bazaar.ts
Expand Up @@ -637,7 +637,7 @@ export const bazaar = {
} else if (type === "plugin-enable") {
const itemElement = hasClosestByClassName(target, "b3-card");
if (itemElement) {
const enabled = (target as HTMLInputElement).checked
const enabled = (target as HTMLInputElement).checked;
fetchPost("/api/petal/setPetalEnabled", {
packageName: dataObj.name,
enabled,
Expand Down
2 changes: 1 addition & 1 deletion app/src/menus/protyle.ts
Expand Up @@ -493,7 +493,7 @@ export const zoomOut = (protyle: IProtyle, id: string, focusId?: string, isPushB
}
/// #if !MOBILE
if (protyle.model) {
const allModels = getAllModels()
const allModels = getAllModels();
allModels.outline.forEach(item => {
if (item.blockId === protyle.block.rootID) {
item.setCurrent(protyle.wysiwyg.element.querySelector(`[data-node-id="${focusId || id}"]`));
Expand Down
28 changes: 14 additions & 14 deletions app/src/plugin/uninstall.ts
Expand Up @@ -7,27 +7,27 @@ export const uninstall = (app: App, name: string) => {
app.plugins.find((plugin: Plugin, index) => {
if (plugin.name === name) {
// rm tab
const modelsKeys = Object.keys(plugin.models)
const modelsKeys = Object.keys(plugin.models);
getAllModels().custom.forEach(custom => {
if (modelsKeys.includes(custom.type)) {
custom.parent.parent.removeTab(custom.parent.id)
custom.parent.parent.removeTab(custom.parent.id);
}
})
});
// rm topbar
plugin.topBarIcons.forEach(item => {
item.remove();
})
});
// rm dock
const docksKeys = Object.keys(plugin.docks)
const docksKeys = Object.keys(plugin.docks);
docksKeys.forEach(key => {
if (Object.keys(window.siyuan.layout.leftDock.data).includes(key)) {
window.siyuan.layout.leftDock.remove(key)
window.siyuan.layout.leftDock.remove(key);
} else if (Object.keys(window.siyuan.layout.rightDock.data).includes(key)) {
window.siyuan.layout.rightDock.remove(key)
window.siyuan.layout.rightDock.remove(key);
} else if (Object.keys(window.siyuan.layout.bottomDock.data).includes(key)) {
window.siyuan.layout.bottomDock.remove(key)
window.siyuan.layout.bottomDock.remove(key);
}
})
});
exportLayout({
reload: false,
onlyData: false,
Expand All @@ -39,10 +39,10 @@ export const uninstall = (app: App, name: string) => {
item.remove();
return true;
}
})
});
// rm plugin
app.plugins.splice(index, 1)
return true
app.plugins.splice(index, 1);
return true;
}
})
}
});
};
1 change: 0 additions & 1 deletion app/src/protyle/breadcrumb/index.ts
Expand Up @@ -21,7 +21,6 @@ import {openFileById} from "../../editor/util";
import {getCurrentWindow, systemPreferences} from "@electron/remote";
/// #endif
import {onGet} from "../util/onGet";
import {saveScroll} from "../scroll/saveScroll";
import {hideElements} from "../ui/hideElements";
import {confirmDialog} from "../../dialog/confirmDialog";
import {reloadProtyle} from "../util/reload";
Expand Down
12 changes: 6 additions & 6 deletions app/src/protyle/scroll/saveScroll.ts
@@ -1,5 +1,5 @@
import {hasClosestBlock} from "../util/hasClosest";
import {focusByOffset, getSelectionOffset} from "../util/selection";
import {getSelectionOffset} from "../util/selection";
import {fetchPost} from "../../util/fetch";
import {onGet} from "../util/onGet";
import {Constants} from "../../constants";
Expand Down Expand Up @@ -50,12 +50,12 @@ export const getDocByScroll = (options: {
cb?: () => void
focus?: boolean
}) => {
let actions: string[] = []
let actions: string[] = [];
if (options.mergedOptions) {
actions = options.mergedOptions.action
actions = options.mergedOptions.action;
} else {
if (options.focus) {
actions = [Constants.CB_GET_UNUNDO, Constants.CB_GET_FOCUS]
actions = [Constants.CB_GET_UNUNDO, Constants.CB_GET_FOCUS];
} else {
actions = [Constants.CB_GET_UNUNDO];
}
Expand All @@ -70,7 +70,7 @@ export const getDocByScroll = (options: {
}, response => {
onGet(response, options.protyle, actions, options.scrollAttr);
if (options.cb) {
options.cb()
options.cb();
}
});
}
Expand All @@ -81,7 +81,7 @@ export const getDocByScroll = (options: {
}, response => {
onGet(response, options.protyle, actions, options.scrollAttr);
if (options.cb) {
options.cb()
options.cb();
}
});
};
2 changes: 1 addition & 1 deletion app/src/protyle/util/onGet.ts
Expand Up @@ -360,4 +360,4 @@ const focusElement = (protyle: IProtyle, options: {
}
/// #endif
}
}
};
4 changes: 2 additions & 2 deletions app/src/sync/syncGuide.ts
Expand Up @@ -306,7 +306,7 @@ export const setKey = (isSync:boolean, cb?:() => void) => {
dialog.element.querySelector(".b3-button--cancel").addEventListener("click", () => {
dialog.destroy();
});
const genBtnElement = dialog.element.querySelector("#initKeyByPW")
const genBtnElement = dialog.element.querySelector("#initKeyByPW");
dialog.element.querySelector(".b3-switch").addEventListener("change", function () {
if (this.checked) {
genBtnElement.removeAttribute("disabled");
Expand All @@ -331,7 +331,7 @@ export const setKey = (isSync:boolean, cb?:() => void) => {
fetchPost("/api/repo/initRepoKeyFromPassphrase", {pass: inputElements[0].value}, (response) => {
window.siyuan.config.repo.key = response.data.key;
if (cb) {
cb()
cb();
}
if (isSync) {
setSync(response.data.key, dialog);
Expand Down
3 changes: 1 addition & 2 deletions app/src/util/backForward.ts
Expand Up @@ -2,13 +2,12 @@ import {hasClosestBlock, hasClosestByAttribute} from "../protyle/util/hasClosest
import {getContenteditableElement} from "../protyle/wysiwyg/getBlock";
import {focusByOffset, focusByRange, getSelectionOffset} from "../protyle/util/selection";
import {hideElements} from "../protyle/ui/hideElements";
import {fetchPost, fetchSyncPost} from "./fetch";
import {fetchSyncPost} from "./fetch";
import {Constants} from "../constants";
import {Wnd} from "../layout/Wnd";
import {getInstanceById, getWndByLayout} from "../layout/util";
import {Tab} from "../layout/Tab";
import {Editor} from "../editor";
import {onGet} from "../protyle/util/onGet";
import {scrollCenter} from "./highlightById";
import {zoomOut} from "../menus/protyle";
import {showMessage} from "../dialog/message";
Expand Down

0 comments on commit d24f5ae

Please sign in to comment.