parent
4ec030e682
commit
9b3da6696e
@ -1,3 +1,4 @@
|
|||||||
target
|
target
|
||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
|
dist-js
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1,108 +0,0 @@
|
|||||||
import { UnlistenFn } from "@tauri-apps/api/event";
|
|
||||||
/**
|
|
||||||
* A key-value store persisted by the backend layer.
|
|
||||||
*/
|
|
||||||
export declare class Store {
|
|
||||||
path: string;
|
|
||||||
constructor(path: string);
|
|
||||||
/**
|
|
||||||
* Inserts a key-value pair into the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @param value
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
set(key: string, value: unknown): Promise<void>;
|
|
||||||
/**
|
|
||||||
* Returns the value for the given `key` or `null` the key does not exist.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
get<T>(key: string): Promise<T | null>;
|
|
||||||
/**
|
|
||||||
* Returns `true` if the given `key` exists in the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
has(key: string): Promise<boolean>;
|
|
||||||
/**
|
|
||||||
* Removes a key-value pair from the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
delete(key: string): Promise<boolean>;
|
|
||||||
/**
|
|
||||||
* Clears the store, removing all key-value pairs.
|
|
||||||
*
|
|
||||||
* Note: To clear the storage and reset it to it's `default` value, use `reset` instead.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
clear(): Promise<void>;
|
|
||||||
/**
|
|
||||||
* Resets the store to it's `default` value.
|
|
||||||
*
|
|
||||||
* If no default value has been set, this method behaves identical to `clear`.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
reset(): Promise<void>;
|
|
||||||
/**
|
|
||||||
* Returns a list of all key in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
keys(): Promise<string[]>;
|
|
||||||
/**
|
|
||||||
* Returns a list of all values in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
values<T>(): Promise<T[]>;
|
|
||||||
/**
|
|
||||||
* Returns a list of all entries in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
entries<T>(): Promise<Array<[key: string, value: T]>>;
|
|
||||||
/**
|
|
||||||
* Returns the number of key-value pairs in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
length(): Promise<number>;
|
|
||||||
/**
|
|
||||||
* Attempts to load the on-disk state at the stores `path` into memory.
|
|
||||||
*
|
|
||||||
* This method is useful if the on-disk state was edited by the user and you want to synchronize the changes.
|
|
||||||
*
|
|
||||||
* Note: This method does not emit change events.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
load(): Promise<void>;
|
|
||||||
/**
|
|
||||||
* Saves the store to disk at the stores `path`.
|
|
||||||
*
|
|
||||||
* As the store is only persisted to disk before the apps exit, changes might be lost in a crash.
|
|
||||||
* This method lets you persist the store to disk whenever you deem necessary.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
save(): Promise<void>;
|
|
||||||
/**
|
|
||||||
* Listen to changes on a store key.
|
|
||||||
* @param key
|
|
||||||
* @param cb
|
|
||||||
* @returns A promise resolving to a function to unlisten to the event.
|
|
||||||
*/
|
|
||||||
onKeyChange<T>(
|
|
||||||
key: string,
|
|
||||||
cb: (value: T | null) => void
|
|
||||||
): Promise<UnlistenFn>;
|
|
||||||
/**
|
|
||||||
* Listen to changes on the store.
|
|
||||||
* @param cb
|
|
||||||
* @returns A promise resolving to a function to unlisten to the event.
|
|
||||||
*/
|
|
||||||
onChange<T>(cb: (key: string, value: T | null) => void): Promise<UnlistenFn>;
|
|
||||||
}
|
|
@ -1,952 +0,0 @@
|
|||||||
var d = Object.defineProperty;
|
|
||||||
var e = (c, a) => {
|
|
||||||
for (var b in a) d(c, b, { get: a[b], enumerable: !0 });
|
|
||||||
};
|
|
||||||
|
|
||||||
var f$1 = {};
|
|
||||||
e(f$1, {
|
|
||||||
convertFileSrc: () => w,
|
|
||||||
invoke: () => c$2,
|
|
||||||
transformCallback: () => s$2,
|
|
||||||
});
|
|
||||||
function u$2() {
|
|
||||||
return window.crypto.getRandomValues(new Uint32Array(1))[0];
|
|
||||||
}
|
|
||||||
function s$2(e, r = !1) {
|
|
||||||
let n = u$2(),
|
|
||||||
t = `_${n}`;
|
|
||||||
return (
|
|
||||||
Object.defineProperty(window, t, {
|
|
||||||
value: (o) => (
|
|
||||||
r && Reflect.deleteProperty(window, t), e == null ? void 0 : e(o)
|
|
||||||
),
|
|
||||||
writable: !1,
|
|
||||||
configurable: !0,
|
|
||||||
}),
|
|
||||||
n
|
|
||||||
);
|
|
||||||
}
|
|
||||||
async function c$2(e, r = {}) {
|
|
||||||
return new Promise((n, t) => {
|
|
||||||
let o = s$2((i) => {
|
|
||||||
n(i), Reflect.deleteProperty(window, `_${a}`);
|
|
||||||
}, !0),
|
|
||||||
a = s$2((i) => {
|
|
||||||
t(i), Reflect.deleteProperty(window, `_${o}`);
|
|
||||||
}, !0);
|
|
||||||
window.__TAURI_IPC__({ cmd: e, callback: o, error: a, ...r });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function w(e, r = "asset") {
|
|
||||||
let n = encodeURIComponent(e);
|
|
||||||
return navigator.userAgent.includes("Windows")
|
|
||||||
? `https://${r}.localhost/${n}`
|
|
||||||
: `${r}://localhost/${n}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function a(i) {
|
|
||||||
return c$2("tauri", i);
|
|
||||||
}
|
|
||||||
|
|
||||||
var W$1 = {};
|
|
||||||
e(W$1, {
|
|
||||||
TauriEvent: () => c$1,
|
|
||||||
emit: () => D,
|
|
||||||
listen: () => E$1,
|
|
||||||
once: () => _,
|
|
||||||
});
|
|
||||||
async function s$1(n, t) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Event",
|
|
||||||
message: { cmd: "unlisten", event: n, eventId: t },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async function m$1(n, t, i) {
|
|
||||||
await a({
|
|
||||||
__tauriModule: "Event",
|
|
||||||
message: { cmd: "emit", event: n, windowLabel: t, payload: i },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async function o$1(n, t, i) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Event",
|
|
||||||
message: { cmd: "listen", event: n, windowLabel: t, handler: s$2(i) },
|
|
||||||
}).then((r) => async () => s$1(n, r));
|
|
||||||
}
|
|
||||||
async function u$1(n, t, i) {
|
|
||||||
return o$1(n, t, (r) => {
|
|
||||||
i(r), s$1(n, r.id).catch(() => {});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
var c$1 = ((e) => (
|
|
||||||
(e.WINDOW_RESIZED = "tauri://resize"),
|
|
||||||
(e.WINDOW_MOVED = "tauri://move"),
|
|
||||||
(e.WINDOW_CLOSE_REQUESTED = "tauri://close-requested"),
|
|
||||||
(e.WINDOW_CREATED = "tauri://window-created"),
|
|
||||||
(e.WINDOW_DESTROYED = "tauri://destroyed"),
|
|
||||||
(e.WINDOW_FOCUS = "tauri://focus"),
|
|
||||||
(e.WINDOW_BLUR = "tauri://blur"),
|
|
||||||
(e.WINDOW_SCALE_FACTOR_CHANGED = "tauri://scale-change"),
|
|
||||||
(e.WINDOW_THEME_CHANGED = "tauri://theme-changed"),
|
|
||||||
(e.WINDOW_FILE_DROP = "tauri://file-drop"),
|
|
||||||
(e.WINDOW_FILE_DROP_HOVER = "tauri://file-drop-hover"),
|
|
||||||
(e.WINDOW_FILE_DROP_CANCELLED = "tauri://file-drop-cancelled"),
|
|
||||||
(e.MENU = "tauri://menu"),
|
|
||||||
(e.CHECK_UPDATE = "tauri://update"),
|
|
||||||
(e.UPDATE_AVAILABLE = "tauri://update-available"),
|
|
||||||
(e.INSTALL_UPDATE = "tauri://update-install"),
|
|
||||||
(e.STATUS_UPDATE = "tauri://update-status"),
|
|
||||||
(e.DOWNLOAD_PROGRESS = "tauri://update-download-progress"),
|
|
||||||
e
|
|
||||||
))(c$1 || {});
|
|
||||||
async function E$1(n, t) {
|
|
||||||
return o$1(n, null, t);
|
|
||||||
}
|
|
||||||
async function _(n, t) {
|
|
||||||
return u$1(n, null, t);
|
|
||||||
}
|
|
||||||
async function D(n, t) {
|
|
||||||
return m$1(n, void 0, t);
|
|
||||||
}
|
|
||||||
|
|
||||||
var C = {};
|
|
||||||
e(C, {
|
|
||||||
CloseRequestedEvent: () => y,
|
|
||||||
LogicalPosition: () => c,
|
|
||||||
LogicalSize: () => m,
|
|
||||||
PhysicalPosition: () => o,
|
|
||||||
PhysicalSize: () => l,
|
|
||||||
UserAttentionType: () => W,
|
|
||||||
WebviewWindow: () => s,
|
|
||||||
WebviewWindowHandle: () => u,
|
|
||||||
WindowManager: () => h,
|
|
||||||
appWindow: () => b,
|
|
||||||
availableMonitors: () => T,
|
|
||||||
currentMonitor: () => E,
|
|
||||||
getAll: () => M,
|
|
||||||
getCurrent: () => f,
|
|
||||||
primaryMonitor: () => z,
|
|
||||||
});
|
|
||||||
var m = class {
|
|
||||||
constructor(e, a) {
|
|
||||||
this.type = "Logical";
|
|
||||||
(this.width = e), (this.height = a);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
l = class {
|
|
||||||
constructor(e, a) {
|
|
||||||
this.type = "Physical";
|
|
||||||
(this.width = e), (this.height = a);
|
|
||||||
}
|
|
||||||
toLogical(e) {
|
|
||||||
return new m(this.width / e, this.height / e);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
c = class {
|
|
||||||
constructor(e, a) {
|
|
||||||
this.type = "Logical";
|
|
||||||
(this.x = e), (this.y = a);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
o = class {
|
|
||||||
constructor(e, a) {
|
|
||||||
this.type = "Physical";
|
|
||||||
(this.x = e), (this.y = a);
|
|
||||||
}
|
|
||||||
toLogical(e) {
|
|
||||||
return new c(this.x / e, this.y / e);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
W = ((a) => (
|
|
||||||
(a[(a.Critical = 1)] = "Critical"),
|
|
||||||
(a[(a.Informational = 2)] = "Informational"),
|
|
||||||
a
|
|
||||||
))(W || {});
|
|
||||||
function f() {
|
|
||||||
return new s(window.__TAURI_METADATA__.__currentWindow.label, { skip: !0 });
|
|
||||||
}
|
|
||||||
function M() {
|
|
||||||
return window.__TAURI_METADATA__.__windows.map(
|
|
||||||
(i) => new s(i.label, { skip: !0 })
|
|
||||||
);
|
|
||||||
}
|
|
||||||
var P = ["tauri://created", "tauri://error"],
|
|
||||||
u = class {
|
|
||||||
constructor(e) {
|
|
||||||
(this.label = e), (this.listeners = Object.create(null));
|
|
||||||
}
|
|
||||||
async listen(e, a) {
|
|
||||||
return this._handleTauriEvent(e, a)
|
|
||||||
? Promise.resolve(() => {
|
|
||||||
let n = this.listeners[e];
|
|
||||||
n.splice(n.indexOf(a), 1);
|
|
||||||
})
|
|
||||||
: o$1(e, this.label, a);
|
|
||||||
}
|
|
||||||
async once(e, a) {
|
|
||||||
return this._handleTauriEvent(e, a)
|
|
||||||
? Promise.resolve(() => {
|
|
||||||
let n = this.listeners[e];
|
|
||||||
n.splice(n.indexOf(a), 1);
|
|
||||||
})
|
|
||||||
: u$1(e, this.label, a);
|
|
||||||
}
|
|
||||||
async emit(e, a) {
|
|
||||||
if (P.includes(e)) {
|
|
||||||
for (let n of this.listeners[e] || [])
|
|
||||||
n({ event: e, id: -1, windowLabel: this.label, payload: a });
|
|
||||||
return Promise.resolve();
|
|
||||||
}
|
|
||||||
return m$1(e, this.label, a);
|
|
||||||
}
|
|
||||||
_handleTauriEvent(e, a) {
|
|
||||||
return P.includes(e)
|
|
||||||
? (e in this.listeners
|
|
||||||
? this.listeners[e].push(a)
|
|
||||||
: (this.listeners[e] = [a]),
|
|
||||||
!0)
|
|
||||||
: !1;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
h = class extends u {
|
|
||||||
async scaleFactor() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "scaleFactor" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async innerPosition() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "innerPosition" } },
|
|
||||||
},
|
|
||||||
}).then(({ x: e, y: a }) => new o(e, a));
|
|
||||||
}
|
|
||||||
async outerPosition() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "outerPosition" } },
|
|
||||||
},
|
|
||||||
}).then(({ x: e, y: a }) => new o(e, a));
|
|
||||||
}
|
|
||||||
async innerSize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "innerSize" } },
|
|
||||||
},
|
|
||||||
}).then(({ width: e, height: a }) => new l(e, a));
|
|
||||||
}
|
|
||||||
async outerSize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "outerSize" } },
|
|
||||||
},
|
|
||||||
}).then(({ width: e, height: a }) => new l(e, a));
|
|
||||||
}
|
|
||||||
async isFullscreen() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "isFullscreen" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async isMaximized() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "isMaximized" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async isDecorated() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "isDecorated" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async isResizable() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "isResizable" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async isVisible() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "isVisible" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async theme() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "theme" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async center() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "center" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async requestUserAttention(e) {
|
|
||||||
let a$1 = null;
|
|
||||||
return (
|
|
||||||
e &&
|
|
||||||
(e === 1
|
|
||||||
? (a$1 = { type: "Critical" })
|
|
||||||
: (a$1 = { type: "Informational" })),
|
|
||||||
a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "requestUserAttention", payload: a$1 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
async setResizable(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setResizable", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setTitle(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "setTitle", payload: e } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async maximize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "maximize" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async unmaximize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "unmaximize" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async toggleMaximize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "toggleMaximize" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async minimize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "minimize" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async unminimize() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "unminimize" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async show() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "show" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async hide() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "hide" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async close() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "close" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setDecorations(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setDecorations", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setAlwaysOnTop(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setAlwaysOnTop", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setSize(e) {
|
|
||||||
if (!e || (e.type !== "Logical" && e.type !== "Physical"))
|
|
||||||
throw new Error(
|
|
||||||
"the `size` argument must be either a LogicalSize or a PhysicalSize instance"
|
|
||||||
);
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: {
|
|
||||||
type: "setSize",
|
|
||||||
payload: {
|
|
||||||
type: e.type,
|
|
||||||
data: { width: e.width, height: e.height },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setMinSize(e) {
|
|
||||||
if (e && e.type !== "Logical" && e.type !== "Physical")
|
|
||||||
throw new Error(
|
|
||||||
"the `size` argument must be either a LogicalSize or a PhysicalSize instance"
|
|
||||||
);
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: {
|
|
||||||
type: "setMinSize",
|
|
||||||
payload: e
|
|
||||||
? { type: e.type, data: { width: e.width, height: e.height } }
|
|
||||||
: null,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setMaxSize(e) {
|
|
||||||
if (e && e.type !== "Logical" && e.type !== "Physical")
|
|
||||||
throw new Error(
|
|
||||||
"the `size` argument must be either a LogicalSize or a PhysicalSize instance"
|
|
||||||
);
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: {
|
|
||||||
type: "setMaxSize",
|
|
||||||
payload: e
|
|
||||||
? { type: e.type, data: { width: e.width, height: e.height } }
|
|
||||||
: null,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setPosition(e) {
|
|
||||||
if (!e || (e.type !== "Logical" && e.type !== "Physical"))
|
|
||||||
throw new Error(
|
|
||||||
"the `position` argument must be either a LogicalPosition or a PhysicalPosition instance"
|
|
||||||
);
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: {
|
|
||||||
type: "setPosition",
|
|
||||||
payload: { type: e.type, data: { x: e.x, y: e.y } },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setFullscreen(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setFullscreen", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setFocus() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "setFocus" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setIcon(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: {
|
|
||||||
type: "setIcon",
|
|
||||||
payload: { icon: typeof e == "string" ? e : Array.from(e) },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setSkipTaskbar(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setSkipTaskbar", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setCursorGrab(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setCursorGrab", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setCursorVisible(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setCursorVisible", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setCursorIcon(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setCursorIcon", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setCursorPosition(e) {
|
|
||||||
if (!e || (e.type !== "Logical" && e.type !== "Physical"))
|
|
||||||
throw new Error(
|
|
||||||
"the `position` argument must be either a LogicalPosition or a PhysicalPosition instance"
|
|
||||||
);
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: {
|
|
||||||
type: "setCursorPosition",
|
|
||||||
payload: { type: e.type, data: { x: e.x, y: e.y } },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async setIgnoreCursorEvents(e) {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: {
|
|
||||||
label: this.label,
|
|
||||||
cmd: { type: "setIgnoreCursorEvents", payload: e },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async startDragging() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "manage",
|
|
||||||
data: { label: this.label, cmd: { type: "startDragging" } },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async onResized(e) {
|
|
||||||
return this.listen("tauri://resize", e);
|
|
||||||
}
|
|
||||||
async onMoved(e) {
|
|
||||||
return this.listen("tauri://move", e);
|
|
||||||
}
|
|
||||||
async onCloseRequested(e) {
|
|
||||||
return this.listen("tauri://close-requested", (a) => {
|
|
||||||
let n = new y(a);
|
|
||||||
Promise.resolve(e(n)).then(() => {
|
|
||||||
if (!n.isPreventDefault()) return this.close();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
async onFocusChanged(e) {
|
|
||||||
let a = await this.listen("tauri://focus", (d) => {
|
|
||||||
e({ ...d, payload: !0 });
|
|
||||||
}),
|
|
||||||
n = await this.listen("tauri://blur", (d) => {
|
|
||||||
e({ ...d, payload: !1 });
|
|
||||||
});
|
|
||||||
return () => {
|
|
||||||
a(), n();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
async onScaleChanged(e) {
|
|
||||||
return this.listen("tauri://scale-change", e);
|
|
||||||
}
|
|
||||||
async onMenuClicked(e) {
|
|
||||||
return this.listen("tauri://menu", e);
|
|
||||||
}
|
|
||||||
async onFileDropEvent(e) {
|
|
||||||
let a = await this.listen("tauri://file-drop", (r) => {
|
|
||||||
e({ ...r, payload: { type: "drop", paths: r.payload } });
|
|
||||||
}),
|
|
||||||
n = await this.listen("tauri://file-drop-hover", (r) => {
|
|
||||||
e({ ...r, payload: { type: "hover", paths: r.payload } });
|
|
||||||
}),
|
|
||||||
d = await this.listen("tauri://file-drop-cancelled", (r) => {
|
|
||||||
e({ ...r, payload: { type: "cancel" } });
|
|
||||||
});
|
|
||||||
return () => {
|
|
||||||
a(), n(), d();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
async onThemeChanged(e) {
|
|
||||||
return this.listen("tauri://theme-changed", e);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
y = class {
|
|
||||||
constructor(e) {
|
|
||||||
this._preventDefault = !1;
|
|
||||||
(this.event = e.event),
|
|
||||||
(this.windowLabel = e.windowLabel),
|
|
||||||
(this.id = e.id);
|
|
||||||
}
|
|
||||||
preventDefault() {
|
|
||||||
this._preventDefault = !0;
|
|
||||||
}
|
|
||||||
isPreventDefault() {
|
|
||||||
return this._preventDefault;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
s = class extends h {
|
|
||||||
constructor(e, a$1 = {}) {
|
|
||||||
super(e),
|
|
||||||
(a$1 != null && a$1.skip) ||
|
|
||||||
a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: {
|
|
||||||
cmd: "createWebview",
|
|
||||||
data: { options: { label: e, ...a$1 } },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.then(async () => this.emit("tauri://created"))
|
|
||||||
.catch(async (n) => this.emit("tauri://error", n));
|
|
||||||
}
|
|
||||||
static getByLabel(e) {
|
|
||||||
return M().some((a) => a.label === e) ? new s(e, { skip: !0 }) : null;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
b;
|
|
||||||
"__TAURI_METADATA__" in window
|
|
||||||
? (b = new s(window.__TAURI_METADATA__.__currentWindow.label, { skip: !0 }))
|
|
||||||
: (console.warn(`Could not find "window.__TAURI_METADATA__". The "appWindow" value will reference the "main" window label.
|
|
||||||
Note that this is not an issue if running this frontend on a browser instead of a Tauri window.`),
|
|
||||||
(b = new s("main", { skip: !0 })));
|
|
||||||
function g(i) {
|
|
||||||
return i === null
|
|
||||||
? null
|
|
||||||
: {
|
|
||||||
name: i.name,
|
|
||||||
scaleFactor: i.scaleFactor,
|
|
||||||
position: new o(i.position.x, i.position.y),
|
|
||||||
size: new l(i.size.width, i.size.height),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
async function E() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: { cmd: "manage", data: { cmd: { type: "currentMonitor" } } },
|
|
||||||
}).then(g);
|
|
||||||
}
|
|
||||||
async function z() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: { cmd: "manage", data: { cmd: { type: "primaryMonitor" } } },
|
|
||||||
}).then(g);
|
|
||||||
}
|
|
||||||
async function T() {
|
|
||||||
return a({
|
|
||||||
__tauriModule: "Window",
|
|
||||||
message: { cmd: "manage", data: { cmd: { type: "availableMonitors" } } },
|
|
||||||
}).then((i) => i.map(g));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Copyright 2021 Tauri Programme within The Commons Conservancy
|
|
||||||
/**
|
|
||||||
* A key-value store persisted by the backend layer.
|
|
||||||
*/
|
|
||||||
class Store {
|
|
||||||
constructor(path) {
|
|
||||||
this.path = path;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Inserts a key-value pair into the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @param value
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async set(key, value) {
|
|
||||||
return await c$2("plugin:store|set", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
value,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns the value for the given `key` or `null` the key does not exist.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async get(key) {
|
|
||||||
return await c$2("plugin:store|get", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns `true` if the given `key` exists in the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async has(key) {
|
|
||||||
return await c$2("plugin:store|has", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Removes a key-value pair from the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async delete(key) {
|
|
||||||
return await c$2("plugin:store|delete", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Clears the store, removing all key-value pairs.
|
|
||||||
*
|
|
||||||
* Note: To clear the storage and reset it to it's `default` value, use `reset` instead.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async clear() {
|
|
||||||
return await c$2("plugin:store|clear", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Resets the store to it's `default` value.
|
|
||||||
*
|
|
||||||
* If no default value has been set, this method behaves identical to `clear`.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async reset() {
|
|
||||||
return await c$2("plugin:store|reset", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns a list of all key in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async keys() {
|
|
||||||
return await c$2("plugin:store|keys", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns a list of all values in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async values() {
|
|
||||||
return await c$2("plugin:store|values", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns a list of all entries in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async entries() {
|
|
||||||
return await c$2("plugin:store|entries", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns the number of key-value pairs in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async length() {
|
|
||||||
return await c$2("plugin:store|length", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Attempts to load the on-disk state at the stores `path` into memory.
|
|
||||||
*
|
|
||||||
* This method is useful if the on-disk state was edited by the user and you want to synchronize the changes.
|
|
||||||
*
|
|
||||||
* Note: This method does not emit change events.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async load() {
|
|
||||||
return await c$2("plugin:store|load", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Saves the store to disk at the stores `path`.
|
|
||||||
*
|
|
||||||
* As the store is only persisted to disk before the apps exit, changes might be lost in a crash.
|
|
||||||
* This method lets you persist the store to disk whenever you deem necessary.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async save() {
|
|
||||||
return await c$2("plugin:store|save", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Listen to changes on a store key.
|
|
||||||
* @param key
|
|
||||||
* @param cb
|
|
||||||
* @returns A promise resolving to a function to unlisten to the event.
|
|
||||||
*/
|
|
||||||
async onKeyChange(key, cb) {
|
|
||||||
return await b.listen("store://change", (event) => {
|
|
||||||
if (event.payload.path === this.path && event.payload.key === key) {
|
|
||||||
cb(event.payload.value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Listen to changes on the store.
|
|
||||||
* @param cb
|
|
||||||
* @returns A promise resolving to a function to unlisten to the event.
|
|
||||||
*/
|
|
||||||
async onChange(cb) {
|
|
||||||
return await b.listen("store://change", (event) => {
|
|
||||||
if (event.payload.path === this.path) {
|
|
||||||
cb(event.payload.key, event.payload.value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { Store };
|
|
||||||
//# sourceMappingURL=index.min.js.map
|
|
File diff suppressed because one or more lines are too long
@ -1,177 +0,0 @@
|
|||||||
import { invoke } from "@tauri-apps/api/tauri";
|
|
||||||
import { appWindow } from "@tauri-apps/api/window";
|
|
||||||
|
|
||||||
// Copyright 2021 Tauri Programme within The Commons Conservancy
|
|
||||||
/**
|
|
||||||
* A key-value store persisted by the backend layer.
|
|
||||||
*/
|
|
||||||
class Store {
|
|
||||||
constructor(path) {
|
|
||||||
this.path = path;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Inserts a key-value pair into the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @param value
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async set(key, value) {
|
|
||||||
return await invoke("plugin:store|set", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
value,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns the value for the given `key` or `null` the key does not exist.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async get(key) {
|
|
||||||
return await invoke("plugin:store|get", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns `true` if the given `key` exists in the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async has(key) {
|
|
||||||
return await invoke("plugin:store|has", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Removes a key-value pair from the store.
|
|
||||||
*
|
|
||||||
* @param key
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async delete(key) {
|
|
||||||
return await invoke("plugin:store|delete", {
|
|
||||||
path: this.path,
|
|
||||||
key,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Clears the store, removing all key-value pairs.
|
|
||||||
*
|
|
||||||
* Note: To clear the storage and reset it to it's `default` value, use `reset` instead.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async clear() {
|
|
||||||
return await invoke("plugin:store|clear", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Resets the store to it's `default` value.
|
|
||||||
*
|
|
||||||
* If no default value has been set, this method behaves identical to `clear`.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async reset() {
|
|
||||||
return await invoke("plugin:store|reset", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns a list of all key in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async keys() {
|
|
||||||
return await invoke("plugin:store|keys", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns a list of all values in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async values() {
|
|
||||||
return await invoke("plugin:store|values", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns a list of all entries in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async entries() {
|
|
||||||
return await invoke("plugin:store|entries", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Returns the number of key-value pairs in the store.
|
|
||||||
*
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async length() {
|
|
||||||
return await invoke("plugin:store|length", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Attempts to load the on-disk state at the stores `path` into memory.
|
|
||||||
*
|
|
||||||
* This method is useful if the on-disk state was edited by the user and you want to synchronize the changes.
|
|
||||||
*
|
|
||||||
* Note: This method does not emit change events.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async load() {
|
|
||||||
return await invoke("plugin:store|load", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Saves the store to disk at the stores `path`.
|
|
||||||
*
|
|
||||||
* As the store is only persisted to disk before the apps exit, changes might be lost in a crash.
|
|
||||||
* This method lets you persist the store to disk whenever you deem necessary.
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
async save() {
|
|
||||||
return await invoke("plugin:store|save", {
|
|
||||||
path: this.path,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Listen to changes on a store key.
|
|
||||||
* @param key
|
|
||||||
* @param cb
|
|
||||||
* @returns A promise resolving to a function to unlisten to the event.
|
|
||||||
*/
|
|
||||||
async onKeyChange(key, cb) {
|
|
||||||
return await appWindow.listen("store://change", (event) => {
|
|
||||||
if (event.payload.path === this.path && event.payload.key === key) {
|
|
||||||
cb(event.payload.value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Listen to changes on the store.
|
|
||||||
* @param cb
|
|
||||||
* @returns A promise resolving to a function to unlisten to the event.
|
|
||||||
*/
|
|
||||||
async onChange(cb) {
|
|
||||||
return await appWindow.listen("store://change", (event) => {
|
|
||||||
if (event.payload.path === this.path) {
|
|
||||||
cb(event.payload.key, event.payload.value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { Store };
|
|
||||||
//# sourceMappingURL=index.mjs.map
|
|
@ -1 +0,0 @@
|
|||||||
{"version":3,"file":"index.mjs","sources":["../guest-js/index.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../../shared/tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../../shared/tsconfig.json
|
@ -1 +0,0 @@
|
|||||||
../tsconfig.json
|
|
@ -0,0 +1 @@
|
|||||||
|
../tsconfig.json
|
Loading…
Reference in new issue