Compare commits

...
5 Commits
Author SHA1 Message Date
fyears ee224bf4f2 new delay function to avoid the import problem
Release A New Version / build (16.x) (push) Failing after 36s
2024-04-01 00:13:33 +08:00
fyears f1bd0b1ce6 bump to 0.4.13 2024-03-31 23:52:07 +08:00
fyears 300ed213af improvement of statusbar, finally fully working on iphone 2024-03-31 23:50:42 +08:00
fyears 4be67ce491 minor change to synconsave 2024-03-31 19:07:47 +08:00
Vijayasanthamandfyears 98107ba4ea Improvement of sync_on_save (#502)
* Improve sync_on_save

* fix typo

---------

Co-authored-by: fyears <1142836+fyears@users.noreply.github.com>
2024-03-31 00:07:07 +08:00
10 changed files with 159 additions and 67 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"id": "remotely-save", "id": "remotely-save",
"name": "Remotely Save", "name": "Remotely Save",
"version": "0.4.12", "version": "0.4.13",
"minAppVersion": "0.13.21", "minAppVersion": "0.13.21",
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.", "description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
"author": "fyears", "author": "fyears",
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"id": "remotely-save", "id": "remotely-save",
"name": "Remotely Save", "name": "Remotely Save",
"version": "0.4.12", "version": "0.4.13",
"minAppVersion": "0.13.21", "minAppVersion": "0.13.21",
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.", "description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
"author": "fyears", "author": "fyears",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "remotely-save", "name": "remotely-save",
"version": "0.4.12", "version": "0.4.13",
"description": "This is yet another sync plugin for Obsidian app.", "description": "This is yet another sync plugin for Obsidian app.",
"scripts": { "scripts": {
"dev2": "node esbuild.config.mjs --watch", "dev2": "node esbuild.config.mjs --watch",
+2 -2
View File
@@ -272,9 +272,9 @@ export const DEFAULT_LOG_HISTORY_FILE_PREFIX = "log_hist_exported_on_";
export type SyncTriggerSourceType = export type SyncTriggerSourceType =
| "manual" | "manual"
| "auto"
| "dry" | "dry"
| "autoOnceInit" | "auto"
| "auto_once_init"
| "auto_sync_on_save"; | "auto_sync_on_save";
export const REMOTELY_SAVE_VERSION_2022 = "0.3.25"; export const REMOTELY_SAVE_VERSION_2022 = "0.3.25";
+1 -1
View File
@@ -5,7 +5,7 @@
"goback": "Go Back", "goback": "Go Back",
"submit": "Submit", "submit": "Submit",
"sometext": "Here are some texts.", "sometext": "Here are some texts.",
"syncrun_alreadyrunning": "{{pluginName}} already running in stage {{syncStatus}}!", "syncrun_alreadyrunning": "New command {{newTriggerSource}} stops because {{pluginName}} is already running in stage {{syncStatus}}!",
"syncrun_syncingribbon": "{{pluginName}}: syncing from {{triggerSource}}", "syncrun_syncingribbon": "{{pluginName}}: syncing from {{triggerSource}}",
"syncrun_step0": "0/8 Remotely Save is running in dry mode, thus not actual file changes would happen.", "syncrun_step0": "0/8 Remotely Save is running in dry mode, thus not actual file changes would happen.",
"syncrun_step1": "1/8 Remotely Save is preparing ({{serviceType}})", "syncrun_step1": "1/8 Remotely Save is preparing ({{serviceType}})",
+1 -1
View File
@@ -5,7 +5,7 @@
"goback": "返回", "goback": "返回",
"submit": "提交", "submit": "提交",
"sometext": "这里有一段文字。", "sometext": "这里有一段文字。",
"syncrun_alreadyrunning": "{{pluginName}} 正处于此阶段:{{syncStatus}}!", "syncrun_alreadyrunning": "{{pluginName}} 正处于此阶段:{{syncStatus}}!中断触发 {{newTriggerSource}}。",
"syncrun_syncingribbon": "{{pluginName}}:正在由 {{triggerSource}} 触发运行", "syncrun_syncingribbon": "{{pluginName}}:正在由 {{triggerSource}} 触发运行",
"syncrun_step0": "0/8 Remotely Save 在空跑(dry run)模式,不会发生实际的文件交换。", "syncrun_step0": "0/8 Remotely Save 在空跑(dry run)模式,不会发生实际的文件交换。",
"syncrun_step1": "1/8 Remotely Save 准备同步({{serviceType}}", "syncrun_step1": "1/8 Remotely Save 准备同步({{serviceType}}",
+1 -1
View File
@@ -5,7 +5,7 @@
"goback": "返回", "goback": "返回",
"submit": "提交", "submit": "提交",
"sometext": "這裡有一段文字。", "sometext": "這裡有一段文字。",
"syncrun_alreadyrunning": "{{pluginName}} 正處於此階段:{{syncStatus}}!", "syncrun_alreadyrunning": "{{pluginName}} 正處於此階段:{{syncStatus}}! 中斷觸發 {{newTriggerSource}}。",
"syncrun_syncingribbon": "{{pluginName}}:正在由 {{triggerSource}} 觸發執行", "syncrun_syncingribbon": "{{pluginName}}:正在由 {{triggerSource}} 觸發執行",
"syncrun_step0": "0/8 Remotely Save 在空跑(dry run)模式,不會發生實際的檔案交換。", "syncrun_step0": "0/8 Remotely Save 在空跑(dry run)模式,不會發生實際的檔案交換。",
"syncrun_step1": "1/8 Remotely Save 準備同步({{serviceType}}", "syncrun_step1": "1/8 Remotely Save 準備同步({{serviceType}}",
+71 -45
View File
@@ -9,6 +9,7 @@ import {
Platform, Platform,
requestUrl, requestUrl,
requireApiVersion, requireApiVersion,
Events,
} from "obsidian"; } from "obsidian";
import cloneDeep from "lodash/cloneDeep"; import cloneDeep from "lodash/cloneDeep";
import { createElement, RotateCcw, RefreshCcw, FileText } from "lucide"; import { createElement, RotateCcw, RefreshCcw, FileText } from "lucide";
@@ -149,6 +150,8 @@ export default class RemotelySavePlugin extends Plugin {
i18n!: I18n; i18n!: I18n;
vaultRandomID!: string; vaultRandomID!: string;
debugServerTemp?: string; debugServerTemp?: string;
syncEvent?: Events;
appContainerObserver?: MutationObserver;
async syncRun(triggerSource: SyncTriggerSourceType = "manual") { async syncRun(triggerSource: SyncTriggerSourceType = "manual") {
const t = (x: TransItemType, vars?: any) => { const t = (x: TransItemType, vars?: any) => {
@@ -165,15 +168,17 @@ export default class RemotelySavePlugin extends Plugin {
} }
}; };
if (this.syncStatus !== "idle") { if (this.syncStatus !== "idle") {
// here the notice is shown regardless of triggerSource // really, users don't want to see this in auto mode
new Notice( // so we use getNotice to avoid unnecessary show up
getNotice(
t("syncrun_alreadyrunning", { t("syncrun_alreadyrunning", {
pluginName: this.manifest.name, pluginName: this.manifest.name,
syncStatus: this.syncStatus, syncStatus: this.syncStatus,
newTriggerSource: triggerSource,
}) })
); );
if (this.currSyncMsg !== undefined && this.currSyncMsg !== "") { if (this.currSyncMsg !== undefined && this.currSyncMsg !== "") {
new Notice(this.currSyncMsg); getNotice(this.currSyncMsg);
} }
return; return;
} }
@@ -376,7 +381,8 @@ export default class RemotelySavePlugin extends Plugin {
realCounter, realCounter,
realTotalCount, realTotalCount,
pathName, pathName,
decision decision,
triggerSource
), ),
this.db this.db
); );
@@ -416,6 +422,7 @@ export default class RemotelySavePlugin extends Plugin {
this.updateLastSuccessSyncMsg(lastSuccessSyncMillis); this.updateLastSuccessSyncMsg(lastSuccessSyncMillis);
} }
this.syncEvent?.trigger("SYNC_DONE");
console.info( console.info(
`${ `${
this.manifest.id this.manifest.id
@@ -465,6 +472,8 @@ export default class RemotelySavePlugin extends Plugin {
this.currSyncMsg = ""; this.currSyncMsg = "";
this.syncEvent = new Events();
await this.loadSettings(); await this.loadSettings();
// MUST after loadSettings and before prepareDB // MUST after loadSettings and before prepareDB
@@ -812,6 +821,10 @@ export default class RemotelySavePlugin extends Plugin {
async onunload() { async onunload() {
console.info(`unloading plugin ${this.manifest.id}`); console.info(`unloading plugin ${this.manifest.id}`);
this.syncRibbon = undefined; this.syncRibbon = undefined;
if (this.appContainerObserver !== undefined) {
this.appContainerObserver.disconnect();
this.appContainerObserver = undefined;
}
if (this.oauth2Info !== undefined) { if (this.oauth2Info !== undefined) {
this.oauth2Info.helperModal = undefined; this.oauth2Info.helperModal = undefined;
this.oauth2Info = { this.oauth2Info = {
@@ -1100,7 +1113,7 @@ export default class RemotelySavePlugin extends Plugin {
) { ) {
this.app.workspace.onLayoutReady(() => { this.app.workspace.onLayoutReady(() => {
window.setTimeout(() => { window.setTimeout(() => {
this.syncRun("autoOnceInit"); this.syncRun("auto_once_init");
}, this.settings.initRunAfterMilliseconds); }, this.settings.initRunAfterMilliseconds);
}); });
} }
@@ -1126,52 +1139,64 @@ export default class RemotelySavePlugin extends Plugin {
}, scheduleTimeFromNow); }, scheduleTimeFromNow);
}; };
this.app.workspace.onLayoutReady(() => { const checkCurrFileModified = async (caller: "SYNC" | "FILE_CHANGES") => {
const intervalID = window.setInterval(() => { const currentFile = this.app.workspace.getActiveFile();
const currentFile = this.app.workspace.getActiveFile();
if (currentFile) { if (currentFile) {
// get the last modified time of the current file // get the last modified time of the current file
// if it has been modified within the last syncOnSaveAfterMilliseconds // if it has modified after lastSuccessSync
// then schedule a run for syncOnSaveAfterMilliseconds after it was modified // then schedule a run for syncOnSaveAfterMilliseconds after it was modified
const lastModified = currentFile.stat.mtime; const lastModified = currentFile.stat.mtime;
const currentTime = Date.now(); const lastSuccessSyncMillis = await getLastSuccessSyncTimeByVault(
if ( this.db,
currentTime - lastModified < this.vaultRandomID
this.settings!.syncOnSaveAfterMilliseconds! );
) { if (
if ( this.syncStatus === "idle" &&
!needToRunAgain && lastModified > lastSuccessSyncMillis &&
!runScheduled && !runScheduled
this.syncStatus === "idle" ) {
) { scheduleSyncOnSave(this.settings!.syncOnSaveAfterMilliseconds!);
const scheduleTimeFromNow = } else if (
this.settings!.syncOnSaveAfterMilliseconds! - this.syncStatus === "idle" &&
(currentTime - lastModified); needToRunAgain &&
scheduleSyncOnSave(scheduleTimeFromNow); !runScheduled
} else if ( ) {
needToRunAgain && scheduleSyncOnSave(this.settings!.syncOnSaveAfterMilliseconds!);
!runScheduled && needToRunAgain = false;
this.syncStatus === "idle" } else {
) { if (caller === "FILE_CHANGES") {
scheduleSyncOnSave(this.settings!.syncOnSaveAfterMilliseconds!); needToRunAgain = true;
needToRunAgain = false;
} else {
needToRunAgain = true;
}
} }
} }
}, this.settings.syncOnSaveAfterMilliseconds); }
this.syncOnSaveIntervalID = intervalID; };
this.registerInterval(intervalID);
this.app.workspace.onLayoutReady(() => {
// listen to sync done
this.registerEvent(
this.syncEvent?.on("SYNC_DONE", () => {
checkCurrFileModified("SYNC");
})!
);
// listen to current file save changes
this.registerEvent(
this.app.vault.on("modify", (x) => {
// console.debug(`event=modify! file=${x}`);
checkCurrFileModified("FILE_CHANGES");
})
);
}); });
} }
} }
enableMobileStatusBarIfSet() { enableMobileStatusBarIfSet() {
if (Platform.isMobile && this.settings.enableMobileStatusBar) { this.app.workspace.onLayoutReady(() => {
changeMobileStatusBar("enable"); if (Platform.isMobile && this.settings.enableMobileStatusBar) {
} this.appContainerObserver = changeMobileStatusBar("enable");
}
});
} }
async saveAgreeToUseNewSyncAlgorithm() { async saveAgreeToUseNewSyncAlgorithm() {
@@ -1183,9 +1208,10 @@ export default class RemotelySavePlugin extends Plugin {
i: number, i: number,
totalCount: number, totalCount: number,
pathName: string, pathName: string,
decision: string decision: string,
triggerSource: SyncTriggerSourceType
) { ) {
const msg = `syncing progress=${i}/${totalCount},decision=${decision},path=${pathName}`; const msg = `syncing progress=${i}/${totalCount},decision=${decision},path=${pathName},source=${triggerSource}`;
this.currSyncMsg = msg; this.currSyncMsg = msg;
} }
+72 -12
View File
@@ -517,21 +517,81 @@ export const stringToFragment = (string: string) => {
* https://forum.obsidian.md/t/css-to-show-status-bar-on-mobile-devices/77185 * https://forum.obsidian.md/t/css-to-show-status-bar-on-mobile-devices/77185
* @param op * @param op
*/ */
export const changeMobileStatusBar = (op: "enable" | "disable") => { export const changeMobileStatusBar = (
const bar = document.querySelector( op: "enable" | "disable",
oldAppContainerObserver?: MutationObserver
) => {
const appContainer = document.getElementsByClassName("app-container")[0] as
| HTMLElement
| undefined;
const statusbar = document.querySelector(
".is-mobile .app-container .status-bar" ".is-mobile .app-container .status-bar"
) as HTMLElement; ) as HTMLElement | undefined;
if (appContainer === undefined || statusbar === undefined) {
// give up, exit
console.warn(`give up watching appContainer for statusbar`);
console.warn(`appContainer=${appContainer}, statusbar=${statusbar}`);
return undefined;
}
if (op === "enable") { if (op === "enable") {
bar.style.setProperty("display", "flex"); const callback = async (
const navBar = document.getElementsByClassName( mutationList: MutationRecord[],
"mobile-navbar" observer: MutationObserver
)[0] as HTMLElement; ) => {
// thanks to community's solution for (const mutation of mutationList) {
const height = window.getComputedStyle(navBar).getPropertyValue("height"); // console.debug(mutation);
bar.style.setProperty("margin-bottom", height); if (mutation.type === "childList" && mutation.addedNodes.length > 0) {
const k = mutation.addedNodes[0] as Element;
if (
k.className.contains("mobile-navbar") ||
k.className.contains("mobile-toolbar")
) {
// have to wait, otherwise the height is not correct??
await new Promise((resolve) => setTimeout(resolve, 300));
const height = window
.getComputedStyle(k as Element)
.getPropertyValue("height");
statusbar.style.setProperty("display", "flex");
statusbar.style.setProperty("margin-bottom", height);
}
}
}
};
const observer = new MutationObserver(callback);
observer.observe(appContainer, {
attributes: false,
childList: true,
characterData: false,
subtree: false,
});
try {
// init, manual call
const navBar = document.getElementsByClassName(
"mobile-navbar"
)[0] as HTMLElement;
// thanks to community's solution
const height = window.getComputedStyle(navBar).getPropertyValue("height");
statusbar.style.setProperty("display", "flex");
statusbar.style.setProperty("margin-bottom", height);
} catch (e) {
// skip
}
return observer;
} else { } else {
bar.style.removeProperty("display"); if (oldAppContainerObserver !== undefined) {
bar.style.removeProperty("margin-bottom"); console.debug(`disconnect oldAppContainerObserver`);
oldAppContainerObserver.disconnect();
oldAppContainerObserver = undefined;
}
statusbar.style.removeProperty("display");
statusbar.style.removeProperty("margin-bottom");
return undefined;
} }
}; };
+8 -2
View File
@@ -2098,10 +2098,16 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
.onChange(async (val) => { .onChange(async (val) => {
if (val === "enable") { if (val === "enable") {
this.plugin.settings.enableMobileStatusBar = true; this.plugin.settings.enableMobileStatusBar = true;
changeMobileStatusBar("enable"); this.plugin.appContainerObserver =
changeMobileStatusBar("enable");
} else { } else {
this.plugin.settings.enableMobileStatusBar = false; this.plugin.settings.enableMobileStatusBar = false;
changeMobileStatusBar("disable"); changeMobileStatusBar(
"disable",
this.plugin.appContainerObserver
);
this.plugin.appContainerObserver?.disconnect();
this.plugin.appContainerObserver = undefined;
} }
await this.plugin.saveSettings(); await this.plugin.saveSettings();
}); });