mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-03 21:27:35 +03:00
- Use new notification request/opt-in flow for push - Implement unsubscribing - Implement muting - Implement emojis in title - Add iOS specific PWA warning - Don’t use websockets when web push is enabled - Fix duplicate notifications - Implement default web push setting - Implement changing subscription type - Implement web push subscription refresh - Implement web push notification click
34 lines
917 B
JavaScript
34 lines
917 B
JavaScript
import Dexie from "dexie";
|
|
import session from "./Session";
|
|
import sessionReplica from "./SessionReplica";
|
|
|
|
// Uses Dexie.js
|
|
// https://dexie.org/docs/API-Reference#quick-reference
|
|
//
|
|
// Notes:
|
|
// - As per docs, we only declare the indexable columns, not all columns
|
|
|
|
const getDbBase = (username) => {
|
|
// The IndexedDB database name is based on the logged-in user
|
|
const dbName = username ? `ntfy-${username}` : "ntfy";
|
|
const db = new Dexie(dbName);
|
|
|
|
db.version(2).stores({
|
|
subscriptions: "&id,baseUrl,notificationType",
|
|
notifications: "&id,subscriptionId,time,new,[subscriptionId+new]", // compound key for query performance
|
|
users: "&baseUrl,username",
|
|
prefs: "&key",
|
|
});
|
|
|
|
return db;
|
|
};
|
|
|
|
export const getDbAsync = async () => {
|
|
const username = await sessionReplica.username();
|
|
|
|
return getDbBase(username);
|
|
};
|
|
|
|
const getDb = () => getDbBase(session.username());
|
|
|
|
export default getDb;
|