Commit 2f56b8f3 authored by yann300's avatar yann300

add commnet and llittle cleaning

parent e7120360
...@@ -45,10 +45,10 @@ class BasicReadOnlyExplorer { ...@@ -45,10 +45,10 @@ class BasicReadOnlyExplorer {
} }
addReadOnly (path, content, rawPath) { addReadOnly (path, content, rawPath) {
var unprefixedPath = this.removePrefix(path)
try { // lazy try to format JSON try { // lazy try to format JSON
content = JSON.stringify(JSON.parse(content), null, '\t') content = JSON.stringify(JSON.parse(content), null, '\t')
} catch (e) {} } catch (e) {}
// splitting off the path in a tree structure, the json tree is used in `resolveDirectory`
var split = path var split = path
var folder = false var folder = false
while (split.lastIndexOf('/') !== -1) { while (split.lastIndexOf('/') !== -1) {
...@@ -61,9 +61,9 @@ class BasicReadOnlyExplorer { ...@@ -61,9 +61,9 @@ class BasicReadOnlyExplorer {
folder = true folder = true
} }
this.paths[this.type][split] = { isDirectory: folder } this.paths[this.type][split] = { isDirectory: folder }
this.files[this.type + '/' + unprefixedPath] = content this.files[path] = content
this.normalizedNames[rawPath] = path this.normalizedNames[rawPath] = path
this.event.trigger('fileAdded', [this.type + '/' + unprefixedPath, true]) this.event.trigger('fileAdded', [path, true])
return true return true
} }
...@@ -87,6 +87,7 @@ class BasicReadOnlyExplorer { ...@@ -87,6 +87,7 @@ class BasicReadOnlyExplorer {
var self = this var self = this
if (path[0] === '/') path = path.substring(1) if (path[0] === '/') path = path.substring(1)
if (!path) return callback(null, { [self.type]: { } }) if (!path) return callback(null, { [self.type]: { } })
// we just return the json tree populated by `addReadOnly`
callback(null, this.paths[path]) callback(null, this.paths[path])
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment