mirror of
https://github.com/remotely-save/remotely-save.git
synced 2024-06-07 21:10:45 +00:00
Added option to settings to toggle status bar item
This commit is contained in:
parent
30d94986c6
commit
229f74b5e8
@ -86,6 +86,7 @@ export interface RemotelySavePluginSettings {
|
||||
lang?: LangTypeAndAuto;
|
||||
logToDB?: boolean;
|
||||
skipSizeLargerThan?: number;
|
||||
enableStatusBarInfo: boolean;
|
||||
lastSuccessSync?: number;
|
||||
|
||||
/**
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 58c0bc5057aee3825bc21b50f2d4b1c95da17b9b
|
||||
Subproject commit a0c4a6ca6c7e5d5f3b7f1cd28ec13518a5a01c02
|
22
src/main.ts
22
src/main.ts
@ -6,6 +6,7 @@ import {
|
||||
addIcon,
|
||||
setIcon,
|
||||
FileSystemAdapter,
|
||||
Platform,
|
||||
} from "obsidian";
|
||||
import cloneDeep from "lodash/cloneDeep";
|
||||
import { createElement, RotateCcw, RefreshCcw, FileText } from "lucide";
|
||||
@ -85,6 +86,7 @@ const DEFAULT_SETTINGS: RemotelySavePluginSettings = {
|
||||
lang: "auto",
|
||||
logToDB: false,
|
||||
skipSizeLargerThan: -1,
|
||||
enableStatusBarInfo: true,
|
||||
lastSuccessSync: -1
|
||||
};
|
||||
|
||||
@ -679,14 +681,18 @@ export default class RemotelySavePlugin extends Plugin {
|
||||
async () => this.syncRun("manual")
|
||||
);
|
||||
|
||||
const statusBarItem = this.addStatusBarItem();
|
||||
this.statusBarElement = statusBarItem.createEl("span");
|
||||
this.statusBarElement.setAttribute("aria-label-position", "top");
|
||||
this.updateLastSuccessSyncMsg(this.settings.lastSuccessSync);
|
||||
// update statusbar text every 30 seconds
|
||||
this.registerInterval(window.setInterval(() => {
|
||||
// Create Status Bar Item (not supported on mobile)
|
||||
if (!Platform.isMobileApp && this.settings.enableStatusBarInfo === true) {
|
||||
const statusBarItem = this.addStatusBarItem();
|
||||
this.statusBarElement = statusBarItem.createEl("span");
|
||||
this.statusBarElement.setAttribute("aria-label-position", "top");
|
||||
|
||||
this.updateLastSuccessSyncMsg(this.settings.lastSuccessSync);
|
||||
}, 1000*30));
|
||||
// update statusbar text every 30 seconds
|
||||
this.registerInterval(window.setInterval(() => {
|
||||
this.updateLastSuccessSyncMsg(this.settings.lastSuccessSync);
|
||||
}, 1000 * 30));
|
||||
}
|
||||
|
||||
this.addCommand({
|
||||
id: "start-sync",
|
||||
@ -983,6 +989,8 @@ export default class RemotelySavePlugin extends Plugin {
|
||||
}
|
||||
|
||||
updateLastSuccessSyncMsg(lastSuccessSyncMillis?: number) {
|
||||
if (this.statusBarElement === undefined) return;
|
||||
|
||||
const t = (x: TransItemType, vars?: any) => {
|
||||
return this.i18n.t(x, vars);
|
||||
};
|
||||
|
@ -1597,6 +1597,22 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
||||
await this.plugin.saveSettings();
|
||||
});
|
||||
});
|
||||
|
||||
// custom status bar items is not supported on mobile
|
||||
if (!Platform.isMobileApp) {
|
||||
new Setting(basicDiv)
|
||||
.setName(t("settings_enablestatusbar_info"))
|
||||
.setDesc(t("settings_enablestatusbar_info_desc"))
|
||||
.addToggle((toggle) => {
|
||||
toggle
|
||||
.setValue(this.plugin.settings.enableStatusBarInfo)
|
||||
.onChange(async (val) => {
|
||||
this.plugin.settings.enableStatusBarInfo = val;
|
||||
await this.plugin.saveSettings();
|
||||
new Notice(t("settings_enablestatusbar_reloadrequired_notice"));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// below for advanced settings
|
||||
|
@ -23,6 +23,7 @@ const DEFAULT_SETTINGS: RemotelySavePluginSettings = {
|
||||
password: "password",
|
||||
serviceType: "s3",
|
||||
currLogLevel: "info",
|
||||
enableStatusBarInfo: true,
|
||||
};
|
||||
|
||||
describe("Config Persist tests", () => {
|
||||
|
Loading…
Reference in New Issue
Block a user