pull/5370/head
LianaHus 4 years ago committed by ioedeveloper
parent d23d15cfb8
commit 57a31cbf14
  1. 36
      apps/remix-ide/src/app/files/fileManager.js

@ -499,7 +499,6 @@ class FileManager extends Plugin {
const dirPaths = [] const dirPaths = []
const collectList = (path) => { const collectList = (path) => {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
if (this.isDirectory(path)) {
this.readdir(path).then((ls) => { this.readdir(path).then((ls) => {
const promises = Object.keys(ls).map((item, index) => { const promises = Object.keys(ls).map((item, index) => {
const root = (path.indexOf('/') === -1) ? path : path.substr(0, path.indexOf('/')) const root = (path.indexOf('/') === -1) ? path : path.substr(0, path.indexOf('/'))
@ -512,9 +511,6 @@ class FileManager extends Plugin {
}) })
Promise.all(promises).then(() => { resolve(dirPaths) }) Promise.all(promises).then(() => { resolve(dirPaths) })
}) })
} else {
resolve(dirPaths)
}
}) })
} }
return collectList(path) return collectList(path)
@ -524,39 +520,7 @@ class FileManager extends Plugin {
return this.appManager.isActive('remixd') return this.appManager.isActive('remixd')
} }
allPaths () {
const dirPaths = []
const findPaths = (path) => {
return new Promise((resolve, reject) => {
if (this.isDirectory(path)) {
if (!dirPaths.includes(path)) {
dirPaths.push(path)
}
this.readdir(path).then((ls) => {
const promises = Object.keys(ls).map((item, index) => {
const root = (path.indexOf('/') === -1) ? path : path.substr(0, path.indexOf('/'))
const curPath = `${root}/${item}` // adding 'browser' or 'localhost'
if (ls[item].isDirectory) {
return findPaths(curPath)
} else {
return new Promise((resolve, reject) => { resolve() })
}
})
Promise.all(promises).then(() => { resolve(dirPaths) })
})
} else {
resolve(dirPaths)
}
})
}
const roots = []
roots.push(findPaths('browser'))
if (this.appManager.isActive('remixd')) roots.push(findPaths('localhost'))
return Promise.all(roots)
}
saveCurrentFile () { saveCurrentFile () {
var currentFile = this._deps.config.get('currentFile') var currentFile = this._deps.config.get('currentFile')

Loading…
Cancel
Save