Tldraw/packages/editor/src/lib/utils/sync/alerts.ts

21 wiersze
825 B
TypeScript
Czysty Zwykły widok Historia

/** @internal */
2023-04-25 11:01:25 +00:00
export function showCantWriteToIndexDbAlert() {
window.alert(
`Oops! We could not save changes to your browser's storage. We now need to reload the page and try again.
Keep seeing this message?
If you're using tldraw in a private or "incognito" window, try loading tldraw in a regular window or in a different browser.
If your hard disk is full, try clearing up some space and then reload the page.`
)
}
/** @internal */
2023-04-25 11:01:25 +00:00
export function showCantReadFromIndexDbAlert() {
window.alert(
Independent instance state persistence (#1493) This PR - Removes UserDocumentRecordType - moving isSnapMode to user preferences - moving isGridMode and isPenMode to InstanceRecordType - deleting the other properties which are no longer needed. - Creates a separate pipeline for persisting instance state. Previously the instance state records were stored alongside the document state records, and in order to load the state for a particular instance (in our case, a particular tab) you needed to pass the 'instanceId' prop. This prop ended up totally pervading the public API and people ran into all kinds of issues with it, e.g. using the same instance id in multiple editor instances. There was also an issue whereby it was hard for us to clean up old instance state so the idb table ended up bloating over time. This PR makes it so that rather than passing an instanceId, you load the instance state yourself while creating the store. It provides tools to make that easy. - Undoes the assumption that we might have more than one instance's state in the store. - Like `document`, `instance` now has a singleton id `instance:instance`. - Page state ids and camera ids are no longer random, but rather derive from the page they belong to. This is like having a foreign primary key in SQL databases. It's something i'd love to support fully as part of the RecordType/Store api. Tests to do - [x] Test Migrations - [x] Test Store.listen filtering - [x] Make type sets in Store public and readonly - [x] Test RecordType.createId - [x] Test Instance state snapshot loading/exporting - [x] Manual test File I/O - [x] Manual test Vscode extension with multiple tabs - [x] Audit usages of store.query - [x] Audit usages of changed types: InstanceRecordType, 'instance', InstancePageStateRecordType, 'instance_page_state', 'user_document', 'camera', CameraRecordType, InstancePresenceRecordType, 'instance_presence' - [x] Test user preferences - [x] Manual test isSnapMode and isGridMode and isPenMode - [ ] Test indexedDb functions - [x] Add instanceId stuff back ### Change Type - [x] `major` — Breaking Change ### Test Plan 1. Add a step-by-step description of how to test your PR here. 2. - [ ] Unit Tests - [ ] Webdriver tests ### Release Notes - Add a brief release note for your PR here.
2023-06-05 14:11:07 +00:00
`Oops! We could not access your browser's storage—and the app won't work correctly without that. We now need to reload the page and try again.
2023-04-25 11:01:25 +00:00
Keep seeing this message?
If you're using tldraw in a private or "incognito" window, try loading tldraw in a regular window or in a different browser.`
)
}