This commit is contained in:
Steve Ruiz 2021-12-27 18:50:33 +00:00
commit 7c02a6d514
5 changed files with 29 additions and 28 deletions

View file

@ -120,6 +120,8 @@ export class StateManager<T extends Record<string, any>> {
* Save the current state to indexdb.
*/
protected persist = (id?: string): void | Promise<void> => {
if (this._status !== 'ready') return
if (this.onPersist) {
this.onPersist(this._state, id)
}

View file

@ -634,40 +634,25 @@ describe('TldrawTestApp', () => {
jest.setTimeout(10000)
describe('When changing versions', () => {
it('migrates correctly', (done) => {
it('migrates correctly', async () => {
const defaultState = TldrawTestApp.defaultState
const withoutRoom = {
...defaultState,
}
delete withoutRoom.room
TldrawTestApp.defaultState = withoutRoom
const app = new TldrawTestApp('migrate_1')
await app.ready
app.createShapes({
id: 'rect1',
type: TDShapeType.Rectangle,
})
setTimeout(() => {
// TODO: Force the version to change and restore room.
TldrawTestApp.version = 100
TldrawTestApp.defaultState.room = defaultState.room
const app2 = new TldrawTestApp('migrate_1')
setTimeout(() => {
try {
expect(app2.getShape('rect1')).toBeTruthy()
done()
} catch (e) {
done(e)
}
}, 100)
}, 100)
TldrawTestApp.version = 100
TldrawTestApp.defaultState.room = defaultState.room
const app2 = new TldrawTestApp('migrate_1')
await app2.ready
expect(app2.getShape('rect1')).toBeTruthy()
return
})
})

View file

@ -360,8 +360,12 @@ export class TldrawApp extends StateManager<TDSnapshot> {
const toShape = page.shapes[binding.toId]
const fromShape = page.shapes[binding.fromId]
const toUtils = TLDR.getShapeUtil(toShape)
if (!(toShape && fromShape)) {
delete next.document.pages[pageId].bindings[binding.id]
return
}
const toUtils = TLDR.getShapeUtil(toShape)
const fromUtils = TLDR.getShapeUtil(fromShape)
// We only need to update the binding's "from" shape
@ -1011,7 +1015,6 @@ export class TldrawApp extends StateManager<TDSnapshot> {
setDisableAssets = (disableAssets: boolean): this => {
this.patchState({ appState: { disableAssets } }, 'ui:toggled_disable_images')
this.persist()
return this
}
@ -3361,12 +3364,12 @@ export class TldrawApp extends StateManager<TDSnapshot> {
getShapeUtil = TLDR.getShapeUtil
static version = 15.3
static version = 15.2
static defaultDocument: TDDocument = {
id: 'doc',
name: 'New Document',
version: 15,
version: TldrawApp.version,
pages: {
page: {
id: 'page',

View file

@ -142,6 +142,7 @@ const Wrapper = styled('div', {
width: '100%',
borderRadius: '3px',
perspective: '800px',
overflow: 'hidden',
p: {
userSelect: 'none',
},
@ -183,6 +184,9 @@ const Wrapper = styled('div', {
})
const ImageElement = styled('img', {
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
maxWidth: '100%',

View file

@ -186,6 +186,7 @@ const Wrapper = styled('div', {
width: '100%',
borderRadius: '3px',
perspective: '800px',
overflow: 'hidden',
p: {
userSelect: 'none',
},
@ -227,8 +228,14 @@ const Wrapper = styled('div', {
})
const VideoElement = styled('video', {
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
maxWidth: '100%',
minWidth: '100%',
pointerEvents: 'all',
pointerEvents: 'none',
objectFit: 'cover',
borderRadius: 2,
})