Implemented studio.createContentOfSaveFile()

This commit is contained in:
Aria Minaei 2021-09-30 10:14:32 +02:00
parent 995dcd97aa
commit 0e0bb1f3fc
4 changed files with 43 additions and 5 deletions

View file

@ -57,6 +57,13 @@ export class Studio {
this._attachToIncomingProjects() this._attachToIncomingProjects()
this.paneManager = new PaneManager(this) this.paneManager = new PaneManager(this)
/**
* @todo If studio.initialize() is not called within a few milliseconds,
* we should console.warn() the user that `@theatre/studio` is still in
* their bundle. This way we can avoid issues like
* [this](https://discord.com/channels/870988717190426644/892469755225710642/892479678797971486).
*/
} }
async initialize(opts?: Parameters<IStudio['initialize']>[0]) { async initialize(opts?: Parameters<IStudio['initialize']>[0]) {
@ -209,7 +216,7 @@ export class Studio {
this._store.redo() this._store.redo()
} }
createExportedStateOfProject(projectId: string): OnDiskState { createContentOfSaveFile(projectId: string): OnDiskState {
return this._store.createExportedStateOfProject(projectId) return this._store.createContentOfSaveFile(projectId)
} }
} }

View file

@ -280,9 +280,17 @@ export default class StudioStore {
this._reduxStore.dispatch(studioActions.historic.redo()) this._reduxStore.dispatch(studioActions.historic.redo())
} }
createExportedStateOfProject(projectId: string): OnDiskState { createContentOfSaveFile(projectId: string): OnDiskState {
const projectState =
this._reduxStore.getState().$persistent.historic.innerState.coreByProject[
projectId
]
if (!projectState) {
throw new Error(`Project ${projectId} has not been initialized.`)
}
const revision = generateDiskStateRevision() const revision = generateDiskStateRevision()
// let's assume projectId is already loaded
this.tempTransaction(({stateEditors}) => { this.tempTransaction(({stateEditors}) => {
stateEditors.coreByProject.historic.revisionHistory.add({ stateEditors.coreByProject.historic.revisionHistory.add({

View file

@ -301,6 +301,25 @@ export interface IStudio {
* studio is present. * studio is present.
*/ */
getStudioProject(): IProject getStudioProject(): IProject
/**
* Creates a JSON object that contains the state of the project. You can use this
* to programmatically save the state of your projects to the storage system of your
* choice, rather than manually clicking on the "Export" button in the UI.
*
* @param projectId same projectId as in `core.getProject(projectId)`
*
* Usage:
* ```ts
* const projectId = "project"
* const json = studio.createContentOfSaveFile(projectId)
* const string = JSON.stringify(json)
* fetch(`/projects/${projectId}/state`, {method: 'POST', body: string}).then(() => {
* console.log("Saved")
* })
* ```
*/
createContentOfSaveFile(projectId: string): Record<string, unknown>
} }
export default class TheatreStudio implements IStudio { export default class TheatreStudio implements IStudio {
@ -431,4 +450,8 @@ export default class TheatreStudio implements IStudio {
destroyPane(paneId: string): void { destroyPane(paneId: string): void {
return getStudio().paneManager.destroyPane(paneId) return getStudio().paneManager.destroyPane(paneId)
} }
createContentOfSaveFile(projectId: string): Record<string, unknown> {
return getStudio().createContentOfSaveFile(projectId) as $IntentionalAny
}
} }

View file

@ -35,7 +35,7 @@ const ProjectDetails: React.FC<{
const exportProject = useCallback(() => { const exportProject = useCallback(() => {
const str = JSON.stringify( const str = JSON.stringify(
getStudio().createExportedStateOfProject(project.address.projectId), getStudio().createContentOfSaveFile(project.address.projectId),
null, null,
2, 2,
) )