Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
bef86aba
Commit
bef86aba
authored
Sep 30, 2019
by
LianaHus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gist edit
parent
f92f5bb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
file-explorer.js
src/app/files/file-explorer.js
+11
-11
No files found.
src/app/files/file-explorer.js
View file @
bef86aba
...
...
@@ -442,7 +442,7 @@ fileExplorer.prototype.toGist = function (id) {
}
}
this
.
packageFiles
(
this
.
files
,
(
error
,
packaged
)
=>
{
this
.
packageFiles
(
this
.
files
,
'browser/gists/'
+
id
,
(
error
,
packaged
)
=>
{
if
(
error
)
{
console
.
log
(
error
)
modalDialogCustom
.
alert
(
'Failed to create gist: '
+
error
)
...
...
@@ -473,7 +473,9 @@ fileExplorer.prototype.toGist = function (id) {
}),
this
.
files
.
origGistFiles
)
// adding new files
updatedFileList
.
forEach
((
file
)
=>
{
allItems
[
file
]
=
packaged
[
file
]
const
_items
=
file
.
split
(
'/'
)
const
_fileName
=
_items
[
_items
.
length
-
1
]
allItems
[
_fileName
]
=
packaged
[
file
]
})
tooltip
(
'Saving gist ('
+
id
+
') ...'
)
...
...
@@ -507,21 +509,19 @@ fileExplorer.prototype.toGist = function (id) {
}
// return all the files, except the temporary/readonly ones..
fileExplorer
.
prototype
.
packageFiles
=
function
(
filesProvider
,
callback
)
{
fileExplorer
.
prototype
.
packageFiles
=
function
(
filesProvider
,
directory
,
callback
)
{
var
ret
=
{}
filesProvider
.
resolveDirectory
(
'/'
,
(
error
,
files
)
=>
{
filesProvider
.
resolveDirectory
(
directory
,
(
error
,
files
)
=>
{
if
(
error
)
callback
(
error
)
else
{
async
.
eachSeries
(
Object
.
keys
(
files
),
(
path
,
cb
)
=>
{
filesProvider
.
get
(
path
,
(
error
,
content
)
=>
{
if
(
error
)
cb
(
error
)
else
if
(
/^
\s
+$/
.
test
(
content
)
||
!
content
.
length
)
{
if
(
error
)
return
cb
(
error
)
if
(
/^
\s
+$/
.
test
(
content
)
||
!
content
.
length
)
{
content
=
'// this line is added to create a gist. Empty file is not allowed.'
if
(
!
error
)
{
ret
[
path
]
=
{
content
}
cb
()
}
}
ret
[
path
]
=
{
content
}
cb
()
})
},
(
error
)
=>
{
callback
(
error
,
ret
)
...
...
@@ -543,7 +543,7 @@ fileExplorer.prototype.copyFiles = function () {
)
function
doCopy
(
target
)
{
// package only files from the browser storage.
self
.
packageFiles
(
self
.
files
,
(
error
,
packaged
)
=>
{
self
.
packageFiles
(
self
.
files
,
'/'
,
(
error
,
packaged
)
=>
{
if
(
error
)
{
console
.
log
(
error
)
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment