feat: update migration test page (#2871)

This commit is contained in:
Alex Yang
2023-06-28 16:46:08 +08:00
committed by GitHub
parent fa45d8a718
commit 7960b6a22e
3 changed files with 60 additions and 1 deletions

View File

@@ -143,3 +143,24 @@ export async function downloadBinary(
return mergeUpdates(doc.updates.map(({ update }) => update));
}
}
export async function overwriteBinary(
guid: string,
update: UpdateMessage['update'],
dbName = DEFAULT_DB_NAME
) {
const dbPromise = openDB<BlockSuiteBinaryDB>(dbName, dbVersion, {
upgrade: upgradeDB,
});
const db = await dbPromise;
const t = db.transaction('workspace', 'readwrite').objectStore('workspace');
await t.put({
id: guid,
updates: [
{
timestamp: Date.now(),
update,
},
],
});
}