improve file migration

pull/933/head
yann300 4 years ago
parent 401ebef513
commit 50f9286e1b
  1. 12
      apps/remix-ide/src/migrateFileSystem.js

@ -29,11 +29,13 @@ export async function migrateToWorkspace (fileManager, filePanel) {
if (fileStorageBrowserWorkspace.get(flag) === 'done') return
const files = await browserProvider.copyFolderToJson('/')
console.log(files)
const workspaceName = 'default_workspace'
const workspacePath = joinPath('browser', workspaceProvider.workspacesPath, workspaceName)
await filePanel.createWorkspace(workspaceName)
filePanel.getWorkspaces() // refresh list
await populateWorkspace(workspacePath, files, browserProvider)
if (Object.keys(files).length > 0) {
const workspaceName = 'default_workspace'
const workspacePath = joinPath('browser', workspaceProvider.workspacesPath, workspaceName)
await filePanel.createWorkspace(workspaceName)
filePanel.getWorkspaces() // refresh list
await populateWorkspace(workspacePath, files, browserProvider)
}
fileStorageBrowserWorkspace.set(flag, 'done')
}

Loading…
Cancel
Save