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
6e3d50e1
Commit
6e3d50e1
authored
Jan 26, 2021
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
load npm module from unpkg
parent
c967ba97
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
38 deletions
+45
-38
solidityImport.test.ts
apps/remix-ide-e2e/src/tests/solidityImport.test.ts
+13
-0
compiler-imports.js
apps/remix-ide/src/app/compiler/compiler-imports.js
+12
-38
resolve.ts
libs/remix-url-resolver/src/resolve.ts
+20
-0
No files found.
apps/remix-ide-e2e/src/tests/solidityImport.test.ts
View file @
6e3d50e1
...
@@ -79,6 +79,16 @@ module.exports = {
...
@@ -79,6 +79,16 @@ module.exports = {
browser
.
assert
.
ok
(
content
.
indexOf
(
'contract ERC20 is Context, IERC20'
)
!==
-
1
,
browser
.
assert
.
ok
(
content
.
indexOf
(
'contract ERC20 is Context, IERC20'
)
!==
-
1
,
'current displayed content should be from the ERC20 source code'
)
'current displayed content should be from the ERC20 source code'
)
})
})
},
'Test NPM Import (with unpkg.com)'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
// .setSolidityCompilerVersion('soljson-v0.8.0+commit.c7dfd78e.js')
.
clickLaunchIcon
(
'fileExplorers'
)
.
click
(
'li[data-id="treeViewLitreeViewItembrowser/README.txt"'
)
.
addFile
(
'Untitled9.sol'
,
sources
[
8
][
'browser/Untitled9.sol'
])
.
clickLaunchIcon
(
'fileExplorers'
)
.
verifyContracts
([
'test13'
,
'ERC20'
,
'SafeMath'
],
{
wait
:
30000
})
.
end
()
.
end
()
},
},
tearDown
:
sauce
tearDown
:
sauce
...
@@ -109,5 +119,8 @@ const sources = [
...
@@ -109,5 +119,8 @@ const sources = [
},
},
{
{
'browser/Untitled8.sol'
:
{
content
:
'import "https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC20/ERC20.sol"; contract test12 {}'
}
'browser/Untitled8.sol'
:
{
content
:
'import "https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC20/ERC20.sol"; contract test12 {}'
}
},
{
'browser/Untitled9.sol'
:
{
content
:
'pragma solidity >=0.6.0 <0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract test13 {}'
}
}
}
]
]
apps/remix-ide/src/app/compiler/compiler-imports.js
View file @
6e3d50e1
...
@@ -6,7 +6,6 @@ const remixTests = require('@remix-project/remix-tests')
...
@@ -6,7 +6,6 @@ const remixTests = require('@remix-project/remix-tests')
const
globalRegistry
=
require
(
'../../global/registry'
)
const
globalRegistry
=
require
(
'../../global/registry'
)
const
addTooltip
=
require
(
'../ui/tooltip'
)
const
addTooltip
=
require
(
'../ui/tooltip'
)
const
async
=
require
(
'async'
)
const
async
=
require
(
'async'
)
var
resolver
=
require
(
'@resolver-engine/imports'
).
ImportsEngine
()
const
profile
=
{
const
profile
=
{
name
:
'contentImport'
,
name
:
'contentImport'
,
...
@@ -50,7 +49,7 @@ module.exports = class CompilerImports extends Plugin {
...
@@ -50,7 +49,7 @@ module.exports = class CompilerImports extends Plugin {
})
})
}
}
import
(
url
,
force
,
loadingCb
,
cb
)
{
async
import
(
url
,
force
,
loadingCb
,
cb
)
{
if
(
typeof
force
!==
'boolean'
)
{
if
(
typeof
force
!==
'boolean'
)
{
const
temp
=
loadingCb
const
temp
=
loadingCb
loadingCb
=
force
loadingCb
=
force
...
@@ -66,44 +65,20 @@ module.exports = class CompilerImports extends Plugin {
...
@@ -66,44 +65,20 @@ module.exports = class CompilerImports extends Plugin {
if
(
imported
)
{
if
(
imported
)
{
return
cb
(
null
,
imported
.
content
,
imported
.
cleanUrl
,
imported
.
type
,
url
)
return
cb
(
null
,
imported
.
content
,
imported
.
cleanUrl
,
imported
.
type
,
url
)
}
}
var
handlers
=
this
.
urlResolver
.
getHandlers
()
var
found
=
false
let
resolved
handlers
.
forEach
(
function
(
handler
)
{
try
{
if
(
found
)
return
resolved
=
await
this
.
urlResolver
.
resolve
(
url
)
var
match
=
handler
.
match
(
url
)
const
{
content
,
cleanUrl
,
type
}
=
resolved
if
(
match
)
{
found
=
true
loadingCb
(
'Loading '
+
url
+
' ...'
)
handler
.
handle
(
match
).
then
(
function
(
result
)
{
const
{
content
,
cleanUrl
}
=
result
self
.
previouslyHandled
[
url
]
=
{
self
.
previouslyHandled
[
url
]
=
{
content
,
content
,
cleanUrl
,
cleanUrl
,
type
:
handler
.
type
type
}
}
cb
(
null
,
content
,
cleanUrl
,
handler
.
type
,
url
)
cb
(
null
,
content
,
cleanUrl
,
type
,
url
)
}).
catch
(
function
(
error
)
{
}
catch
(
e
)
{
cb
(
'Unable to import url : '
+
error
)
return
cb
(
'Unable to import url : '
+
e
.
message
)
})
}
}
})
if
(
found
)
return
resolver
.
resolve
(
url
)
.
then
(
result
=>
{
return
resolver
.
require
(
url
)
})
.
then
(
result
=>
{
if
(
url
.
indexOf
(
result
.
provider
+
':'
)
===
0
)
{
url
=
url
.
substring
(
result
.
provider
.
length
+
1
)
// remove the github prefix
}
cb
(
null
,
result
.
source
,
url
,
result
.
provider
,
result
.
url
)
})
.
catch
(
err
=>
{
console
.
error
(
err
)
cb
(
'Unable to import "'
+
url
+
'": File not found'
)
})
}
}
importExternal
(
url
,
targetPath
,
cb
)
{
importExternal
(
url
,
targetPath
,
cb
)
{
...
@@ -182,13 +157,12 @@ module.exports = class CompilerImports extends Plugin {
...
@@ -182,13 +157,12 @@ module.exports = class CompilerImports extends Plugin {
}
}
resolve
(
result
)
resolve
(
result
)
})
})
}
else
{
}
// try to resolve external content
this
.
importExternal
(
url
,
targetPath
,
(
error
,
content
)
=>
{
this
.
importExternal
(
url
,
targetPath
,
(
error
,
content
)
=>
{
if
(
error
)
return
reject
(
error
)
if
(
error
)
return
reject
(
error
)
resolve
(
content
)
resolve
(
content
)
})
})
}
})
})
}
}
})
})
...
...
libs/remix-url-resolver/src/resolve.ts
View file @
6e3d50e1
...
@@ -121,6 +121,21 @@ export class RemixURLResolver {
...
@@ -121,6 +121,21 @@ export class RemixURLResolver {
}
}
}
}
/**
* Handle an import statement based on NPM
* @param url The url of the NPM import statement
*/
async
handleNpmImport
(
url
:
string
):
Promise
<
HandlerResponse
>
{
// eslint-disable-next-line no-useless-catch
try
{
const
req
=
'https://unpkg.com/'
+
url
const
response
:
AxiosResponse
=
await
axios
.
get
(
req
)
return
{
content
:
response
.
data
,
cleanUrl
:
url
}
}
catch
(
e
)
{
throw
e
}
}
getHandlers
():
Handler
[]
{
getHandlers
():
Handler
[]
{
return
[
return
[
{
{
...
@@ -147,6 +162,11 @@ export class RemixURLResolver {
...
@@ -147,6 +162,11 @@ export class RemixURLResolver {
type
:
'ipfs'
,
type
:
'ipfs'
,
match
:
(
url
)
=>
{
return
/^
(
ipfs:
\/\/?
.+
)
/
.
exec
(
url
)
},
match
:
(
url
)
=>
{
return
/^
(
ipfs:
\/\/?
.+
)
/
.
exec
(
url
)
},
handle
:
(
match
)
=>
this
.
handleIPFS
(
match
[
1
])
handle
:
(
match
)
=>
this
.
handleIPFS
(
match
[
1
])
},
{
type
:
'npm'
,
match
:
(
url
)
=>
{
return
/^
[^/][^\n
"?:*<>|
]
*$/g
.
exec
(
url
)
},
// match a typical relative path
handle
:
(
match
)
=>
this
.
handleNpmImport
(
match
[
0
])
}
}
]
]
}
}
...
...
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