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
0fb2d299
Commit
0fb2d299
authored
Apr 12, 2019
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add import from gist, github, swarm, ipfs
parent
8f340fd2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
landing-page.js
src/app/ui/landing-page/landing-page.js
+10
-2
modal-dialog-custom.js
src/app/ui/modal-dialog-custom.js
+1
-1
gist-handler.js
src/lib/gist-handler.js
+1
-1
No files found.
src/app/ui/landing-page/landing-page.js
View file @
0fb2d299
...
...
@@ -179,6 +179,10 @@ export class LandingPage extends ApiFactory {
this
.
appManager
.
ensureActivated
(
'remixd'
)
}
let
importFromExternal
=
()
=>
{
load
(
'URL'
)
}
let
importFromGist
=
()
=>
{
let
app
=
globalRegistry
.
get
(
'app'
).
api
app
.
loadFromGist
({
gist
:
''
})
}
let
container
=
yo
`<div>
<div class="
${
css
.
hpLogoContainer
}
"><img src="
${
logo
}
" style="height:45px;" alt="Remix logo" /></div>
...
...
@@ -217,8 +221,12 @@ export class LandingPage extends ApiFactory {
<
/label
>
<
/p
>
<
p
class
=
"mb-1 ${css.text}"
onclick
=
$
{()
=>
{
connectToLocalhost
()
}}
>
Connect
to
Localhost
<
/p
>
<
p
class
=
"mb-1 ${css.text} onclick=${() => { importFromExternal() }}"
>
Import
From
external
source
<
/p
>
<
/div><!-- end of div.file --
>
<
p
class
=
"mb-1 ${css.text} onclick=${() => { importFromExternal() }}"
>
Import
From
:
<
/p
>
<
button
class
=
"btn btn-lg btn-secondary"
onclick
=
$
{()
=>
{
importFromGist
()
}}
>
Gist
<
/button
>
<
button
class
=
"btn btn-lg btn-secondary"
onclick
=
$
{()
=>
{
load
(
'Github URL'
)
}}
>
Github
<
/button
>
<
button
class
=
"btn btn-lg btn-secondary"
onclick
=
$
{()
=>
{
load
(
'bzz-raw URL'
)
}}
>
Swarm
<
/button
>
<
button
class
=
"btn btn-lg btn-secondary"
onclick
=
$
{()
=>
{
load
(
'ipfs URL'
)
}}
>
Ipfs
<
/button
>
<
/div><!-- end of div.file --
>
<
/div><!-- end of #col1 --
>
<
div
id
=
"col2"
class
=
"col-sm-6"
>
<
div
class
=
"plugins mb-5"
>
...
...
src/app/ui/modal-dialog-custom.js
View file @
0fb2d299
...
...
@@ -66,7 +66,7 @@ module.exports = {
function
prompt
(
title
,
text
,
hidden
,
inputValue
,
ok
,
cancel
,
focus
)
{
if
(
!
inputValue
)
inputValue
=
''
var
type
=
hidden
?
'password'
:
'text'
var
input
=
yo
`<input type=
${
type
}
name='prompt_text' id='prompt_text' class="
${
css
[
'prompt_text'
]}
" value='
${
inputValue
}
' >`
var
input
=
yo
`<input type=
${
type
}
name='prompt_text' id='prompt_text' class="
${
css
[
'prompt_text'
]}
form-control
" value='
${
inputValue
}
' >`
modal
(
title
,
yo
`<div>
${
text
}
<div>
${
input
}
</div></div>`
,
{
fn
:
()
=>
{
if
(
typeof
ok
===
'function'
)
ok
(
document
.
getElementById
(
'prompt_text'
).
value
)
}
...
...
src/lib/gist-handler.js
View file @
0fb2d299
...
...
@@ -12,7 +12,7 @@ function GistHandler (_window) {
var
gistId
if
(
params
[
'gist'
]
===
''
)
{
loadingFromGist
=
true
modalDialogCustom
.
prompt
(
null
,
'Enter the
URL or
ID of the Gist you would like to load.'
,
null
,
(
target
)
=>
{
modalDialogCustom
.
prompt
(
null
,
'Enter the ID of the Gist you would like to load.'
,
null
,
(
target
)
=>
{
if
(
target
!==
''
)
{
gistId
=
getGistId
(
target
)
if
(
gistId
)
{
...
...
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