2023-04-25 11:01:25 +00:00
|
|
|
## API Report File for "@tldraw/file-format"
|
|
|
|
|
|
|
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
|
|
|
|
|
|
```ts
|
|
|
|
|
2023-06-02 15:21:45 +00:00
|
|
|
import { Editor } from '@tldraw/editor';
|
2023-06-03 08:59:04 +00:00
|
|
|
import { MigrationFailureReason } from '@tldraw/store';
|
2023-04-25 11:01:25 +00:00
|
|
|
import { Result } from '@tldraw/utils';
|
2023-06-03 08:59:04 +00:00
|
|
|
import { SerializedSchema } from '@tldraw/store';
|
2023-04-25 11:01:25 +00:00
|
|
|
import { TLStore } from '@tldraw/editor';
|
2023-06-02 21:16:09 +00:00
|
|
|
import { TLUiToastsContextType } from '@tldraw/ui';
|
|
|
|
import { TLUiTranslationKey } from '@tldraw/ui';
|
2023-06-03 08:59:04 +00:00
|
|
|
import { UnknownRecord } from '@tldraw/store';
|
2023-04-25 11:01:25 +00:00
|
|
|
|
2023-06-02 09:38:13 +00:00
|
|
|
// @internal (undocumented)
|
2023-06-02 15:21:45 +00:00
|
|
|
export function buildFromV1Document(editor: Editor, document: LegacyTldrawDocument): void;
|
2023-06-02 09:38:13 +00:00
|
|
|
|
2023-04-25 11:01:25 +00:00
|
|
|
// @public (undocumented)
|
|
|
|
export function isV1File(data: any): boolean;
|
|
|
|
|
2023-06-02 09:38:13 +00:00
|
|
|
// @internal (undocumented)
|
|
|
|
export interface LegacyTldrawDocument {
|
|
|
|
// (undocumented)
|
|
|
|
assets: TDAssets;
|
|
|
|
// (undocumented)
|
|
|
|
id: string;
|
|
|
|
// (undocumented)
|
|
|
|
name: string;
|
|
|
|
// (undocumented)
|
|
|
|
pages: Record<string, TDPage>;
|
|
|
|
// (undocumented)
|
|
|
|
pageStates: Record<string, TLV1PageState>;
|
|
|
|
// (undocumented)
|
|
|
|
version: number;
|
|
|
|
}
|
|
|
|
|
2023-04-25 11:01:25 +00:00
|
|
|
// @internal (undocumented)
|
2023-06-02 21:16:09 +00:00
|
|
|
export function parseAndLoadDocument(editor: Editor, document: string, msg: (id: TLUiTranslationKey) => string, addToast: TLUiToastsContextType['addToast'], onV1FileLoad?: () => void, forceDarkMode?: boolean): Promise<void>;
|
2023-04-25 11:01:25 +00:00
|
|
|
|
|
|
|
// @public (undocumented)
|
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
|
|
|
export function parseTldrawJsonFile({ json, store, }: {
|
[refactor] User-facing APIs (#1478)
This PR updates our user-facing APIs for the Tldraw and TldrawEditor
components, as well as the Editor (App). It mainly incorporates surface
changes from #1450 without any changes to validators or migrators,
incorporating feedback / discussion with @SomeHats and @ds300.
Here we:
- remove the TldrawEditorConfig
- bring back a loose version of shape definitions
- make a separation between "core" shapes and "default" shapes
- do not allow custom shapes, migrators or validators to overwrite core
shapes
- but _do_ allow new shapes
## `<Tldraw>` component
In this PR, the `Tldraw` component wraps both the `TldrawEditor`
component and our `TldrawUi` component. It accepts a union of props for
both components. Previously, this component also added local syncing via
a `useLocalSyncClient` hook call, however that has been pushed down to
the `TldrawEditor` component.
## `<TldrawEditor>` component
The `TldrawEditor` component now more neatly wraps up the different ways
that the editor can be configured.
## The store prop (`TldrawEditorProps.store`)
There are three main ways for the `TldrawEditor` component to be run:
1. with an externally defined store
2. with an externally defined syncing store (local or remote)
3. with an internally defined store
4. with an internally defined locally syncing store
The `store` prop allows for these configurations.
If the `store` prop is defined, it may be defined either as a `TLStore`
or as a `SyncedStore`. If the store is a `TLStore`, then the Editor will
assume that the store is ready to go; if it is defined as a SyncedStore,
then the component will display the loading / error screens as needed,
or the final editor once the store's status is "synced".
When the store is left undefined, then the `TldrawEditor` will create
its own internal store using the optional `instanceId`, `initialData`,
or `shapes` props to define the store / store schema.
If the `persistenceKey` prop is left undefined, then the store will not
be synced. If the `persistenceKey` is defined, then the store will be
synced locally. In the future, we may also here accept the API key /
roomId / etc for creating a remotely synced store.
The `SyncedStore` type has been expanded to also include types used for
remote syncing, e.g. with `ConnectionStatus`.
## Tools
By default, the App has two "baked-in" tools: the select tool and the
zoom tool. These cannot (for now) be replaced or removed. The default
tools are used by default, but may be replaced by other tools if
provided.
## Shapes
By default, the App has a set of "core" shapes:
- group
- embed
- bookmark
- image
- video
- text
That cannot by overwritten because they're created by the app at
different moments, such as when double clicking on the canvas or via a
copy and paste event. In follow up PRs, we'll split these out so that
users can replace parts of the code where these shapes are created.
### Change Type
- [x] `major` — Breaking Change
### Test Plan
- [x] Unit Tests
2023-06-01 15:47:34 +00:00
|
|
|
store: TLStore;
|
2023-04-25 11:01:25 +00:00
|
|
|
json: string;
|
|
|
|
}): Result<TLStore, TldrawFileParseError>;
|
|
|
|
|
|
|
|
// @public (undocumented)
|
|
|
|
export function serializeTldrawJson(store: TLStore): Promise<string>;
|
|
|
|
|
|
|
|
// @public (undocumented)
|
|
|
|
export function serializeTldrawJsonBlob(store: TLStore): Promise<Blob>;
|
|
|
|
|
|
|
|
// @public (undocumented)
|
|
|
|
export const TLDRAW_FILE_EXTENSION: ".tldr";
|
|
|
|
|
|
|
|
// @public (undocumented)
|
|
|
|
export const TLDRAW_FILE_MIMETYPE: "application/vnd.tldraw+json";
|
|
|
|
|
|
|
|
// @public (undocumented)
|
|
|
|
export interface TldrawFile {
|
|
|
|
// (undocumented)
|
2023-05-24 11:25:41 +00:00
|
|
|
records: UnknownRecord[];
|
2023-04-25 11:01:25 +00:00
|
|
|
// (undocumented)
|
|
|
|
schema: SerializedSchema;
|
|
|
|
// (undocumented)
|
|
|
|
tldrawFileFormatVersion: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @public (undocumented)
|
|
|
|
export type TldrawFileParseError = {
|
|
|
|
type: 'fileFormatVersionTooNew';
|
|
|
|
version: number;
|
|
|
|
} | {
|
|
|
|
type: 'invalidRecords';
|
|
|
|
cause: unknown;
|
|
|
|
} | {
|
|
|
|
type: 'migrationFailed';
|
|
|
|
reason: MigrationFailureReason;
|
|
|
|
} | {
|
|
|
|
type: 'notATldrawFile';
|
|
|
|
cause: unknown;
|
|
|
|
} | {
|
|
|
|
type: 'v1File';
|
|
|
|
data: any;
|
|
|
|
};
|
|
|
|
|
|
|
|
// (No @packageDocumentation comment for this package)
|
|
|
|
|
|
|
|
```
|