2021-07-14 18:37:32 +02:00
|
|
|
import SnapshotEditor from './components/SnapshotEditor'
|
2021-06-18 13:05:06 +02:00
|
|
|
|
|
|
|
export {default as EditorHelper} from './components/EditorHelper'
|
|
|
|
export type {EditorHelperProps} from './components/EditorHelper'
|
|
|
|
|
|
|
|
export {default as editable} from './components/editable'
|
|
|
|
export type {EditableState, BindFunction} from './store'
|
2021-07-13 16:13:15 +02:00
|
|
|
import studio from '@theatre/studio'
|
|
|
|
import Toolbar from './components/Toolbar/Toolbar'
|
2021-07-14 18:37:32 +02:00
|
|
|
import {types} from '@theatre/core'
|
2021-07-30 16:31:18 +02:00
|
|
|
import React, {useLayoutEffect} from 'react'
|
|
|
|
import {useThree} from '@react-three/fiber'
|
|
|
|
import type {ISheet} from '@theatre/core'
|
|
|
|
import {bindToCanvas} from './store'
|
|
|
|
|
|
|
|
export const Wrapper: React.FC<{
|
|
|
|
getSheet: () => ISheet
|
|
|
|
}> = (props) => {
|
|
|
|
const {scene, gl} = useThree((s) => ({scene: s.scene, gl: s.gl}))
|
|
|
|
|
|
|
|
useLayoutEffect(() => {
|
|
|
|
const sheet = props.getSheet()
|
|
|
|
if (!sheet || sheet.type !== 'Theatre_Sheet_PublicAPI') {
|
|
|
|
throw new Error(
|
|
|
|
`getSheet() in <Wrapper getSheet={getSheet}> has returned an invalid value`,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
bindToCanvas({sheet})({gl, scene})
|
|
|
|
}, [scene, gl])
|
|
|
|
|
|
|
|
return <>{props.children}</>
|
|
|
|
}
|
2021-06-18 13:05:06 +02:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
2021-07-13 16:13:15 +02:00
|
|
|
studio.extend({
|
|
|
|
id: '@theatre/plugin-r3f',
|
|
|
|
globalToolbar: {
|
|
|
|
component: Toolbar,
|
|
|
|
},
|
2021-07-14 18:37:32 +02:00
|
|
|
panes: [
|
|
|
|
{
|
|
|
|
class: 'snapshotEditor',
|
|
|
|
dataType: types.compound({
|
|
|
|
grosse: types.number(20),
|
|
|
|
}),
|
|
|
|
component: SnapshotEditor,
|
|
|
|
},
|
|
|
|
],
|
2021-07-13 16:13:15 +02:00
|
|
|
})
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|